Anda di halaman 1dari 59

The web should be fast.

Executive Summary

Performance Report for:


https://www.girlsaskguys.com/trending-news/q…
Report generated: Mon, May 14, 2018, 11:38 PM -0700
Test Server Region: Vancouver, Canada
Using: Chrome (Desktop) 62.0.3202.94, PageSpeed 1.15-
gt1, YSlow 3.1.8

PageSpeed Score YSlow Score Fully Loaded Time Total Page Size Requests

(25%) (44%) 31.3s 32.1MB 906


Top 5 Priority Issues
M inimize redirects F (0) AVG SCORE: 88% CONTENT HIGH

Serve resources from a consistent URL F (0) AVG SCORE: 88% CONTENT HIGH

Leverage browser caching F (0) AVG SCORE: 59% SERVER HIGH

M inimize request size F (0) AVG SCORE: 96% CONTENT HIGH

Serve scaled images F (0) AVG SCORE: 74% IMAGES HIGH

How does this affect me?


What do these grades mean?
Studies show that users leave a site if it hasn't loaded in 4 seconds; keep
your users happy and engaged by providing a fast performing website. This report is an analysis of your site with Google and
Yahoo!'s metrics for how to best develop a site for optimized
As if you didn't need more incentive, Google has announced that they speed. The grades you see represent how well the
are using page speed in their ranking algorithm. scanned URL adheres to those rules.

About GTmetrix Lower grades (C or lower) mean that the page can stand to
be faster using better practices and optimizing your settings.

We can help you develop a faster, more efficient, and all-around What's in this report?
improved website experience for your users. We use Google PageSpeed
and Yahoo! YSlow to grade your site's performance and provide This report covers basic to technical analyses on your page. It
actionable recommendations to fix these issues. is categorized under many headings:

About the Developer Executive: Overall score information and Priority Issues
History: Graphed history of past performance
Waterfall: Graph of your site's loading timeline
GTmetrix is developed by the good folks Technical: In-depth PageSpeed & YSlow information
at GT.net, a Vancouver-based
performance hosting company with over These will provide you with a snapshot of your performance.
22 years experience in web technology.

https://gt.net/

Analyze your site at https://gtmetrix.com Page 1 of 59


Waterfall Chart

Waterfall Chart
The waterfall chart displays the loading behaviour of your site in your selected browser. It can be used to discover simple issues such as 404's or
more complex issues such as external resources blocking page rendering.

Analyze your site at https://gtmetrix.com Page 2 of 59


Page Load Timings

Page Load Timings


RUM Speed Index: 564

Redirect 0ms
Connect 93ms
Backend 52ms
TTFB 145ms
First paint 447ms
Contentful paint 447ms
DOM int. 1.0s
DOM loaded 1.0s (127ms)
Onload 11.1s (55ms)

Redirect duration
This is the time spent redirecting URLs before the final HTML page is loaded. Common redirects
include:
Redirect from a non-www to www (eg. example.com to www.example.com)
Redirect to a secure URL (eg. http:// to https://)
Redirect to set cookies
Redirect to a mobile version of the site
Some sites may even perform a chain of multiple redirects (eg. non-www to www, then to a secure
URL). This timing is the total of all this time that's spent redirecting, or 0 if no redirects occurred.
In the Waterfall Chart, Redirect duration consists of the time from the beginning of the test until just before we start the request of the final HTML
page (when we receive the first 200 OK response).
During this time, the browser screen is blank! Ensure that this duration is kept to short by minimizing your redirects.

Connection duration
Once any redirects have completed, Connection duration is measured. This is the time spent
connecting to the server to make the request to the page.
Technically speaking, this duration is a combination of the blocked time, DNS time, connect time and
sending time of the request (rather than just connect time). We've combined those components into a
single Connection duration to simplify things (as most of these times are usually small).
In the Waterfall Chart, Connection duration consists of everything up to and including the "Sending"
time in the final HTML page request (the first 200 OK response).
During this time, the browser screen is still blank! Various causes could contribute to this, including a slow/problematic connection between the
test server and site or slow response times from the site.

Backend duration
Once the connection is complete and the request is made, the server needs to generate a response
for the page. The time it takes to generate the response is known as the Backend duration.

Analyze your site at https://gtmetrix.com Page 3 of 59


Page Load Timings

In the Waterfall Chart, Backend duration consists of purple waiting time in the page request.
There are a number of reasons why Backend duration could be slow. We cover this is our "Why is my
page slow" article.

Time to First Byte (TTFB)


Time to First Byte (TTFB) is the total amount of time spent to receive the first byte of the response
once it has been requested. It is the sum of "Redirect duration" + "Connection duration" + "Backend
duration". This metric is one of the key indicators of web performance.
In the Waterfall Chart, it is calculated at the start of the test until just before receiving on the page
request and represented by the orange line.
Some ways to improve the TTFB include: optimizing application code, implementing caching, fine-
tuning your web server configuration, or upgrading server hardware.

First paint time


First paint time is the first point at which the browser does any sort of rendering on the page.
Depending on the structure of the page, this first paint could just be displaying the background colour
(including white), or it could be a majority of the page being rendered.
In the Waterfall Chart, it is represented by the green line.
This timing is of significance because until this point, the browser will have only shown a blank page
and this change gives the user an indication that the page is loading. However, we don't know how
much of the page was rendered with this paint, so having a early first paint doesn't necessarily
indicate a fast loading page.
If the browser does not perform a paint (ie. the html results in an blank page), then the paint timings may be missing.

First contentful paint time


First Contentful Paint is triggered when any content is painted - i.e. something defined in the DOM
(Document Object Model). This could be text, an image or canvas render.
This timing aims to be more representative of your user's experience, as it flags when actual content
has been loaded in the page, and not just any change - but it may often be the same time as First
Paint.
Because the focus is on content, the idea is that this metric gives you an idea of when your user
receives consumable information (text, visuals, etc) - much more useful for performance assessment
than when a background has changed or a style has been applied.
If the browser does not perform a paint (ie. the html results in an blank page), then the paint timings may be missing.

DOM interactive time


DOM interactive time is the point at which the browser has finished loading and parsing HTML, and
the DOM (Document Object Model) has been built. The DOM is how the browser internally structures
the HTML so that it can render it.
DOM interactive time isn't marked in the Waterfall Chart as it's usually very close in timing to DOM
content loaded.

DOM content loaded time


DOM content loaded time (DOM loaded or DOM ready for short) is the point at which the DOM is

Analyze your site at https://gtmetrix.com Page 4 of 59


Page Load Timings

ready (ie. DOM interactive) and there are no stylesheets blocking JavaScript execution.
If there are no stylesheets blocking JavaScript execution and there is no parser blocking JavaScript,
then this will be the same as DOM interactive time.
In the Waterfall Chart, it is represented by the blue line.
The time in brackets is the time spent executing JavaScript triggered by the DOM content loaded
event. Many JavaScript frameworks use this event as a starting point to begin execution of their code.
Since this event is often used by JavaScript as the starting point and delays in this event mean delays in rendering, it's important to make sure
that style and script order is optimized and that parsing of JavaScript is deferred.

Onload time
Onload time occurs when the processing of the page is complete and all the resources on the page
(images, CSS, etc.) have finished downloading. This is also the same time that DOM complete occurs
and the JavaScript window.onload event fires.
Note that there may be JavaScript that initiates subsequent requests for more resources, hence the
reason why Fully loaded timing is preferred.
In the Waterfall Chart, it is represented by the red line.
The time in brackets is the time spent executing JavaScript triggered by the Onload event.
Note that Onload time was the previous default for when to stop the test prior to Feburary 8th, 2017.

Analyze your site at https://gtmetrix.com Page 5 of 59


PageSpeed Recommendations

PageSpeed Recommendations
RECOMMENDATION GRADE RELATIVE TYPE PRIORITY

M inimize redirects F (0) AVG SCORE: 88% CONTENT HIGH

Remove the following redirect chain if possible:

https://px.c1exchange.com/pubpixel/1234844
https://cms.c1exchange.com/cookie/match/adv/adx/seed?adxm=1234844&rd=1&pb=00000111&dm=0
https://cm.g.doubleclick.net/pixel?google_nid=c1x&google_cm&adxm=1234844&rd=1&pb=00000111&dm=0
https://cm.g.doubleclick.net/pixel?google_nid=c1x&google_cm=&adxm=1234844&rd=1&pb=00000111&dm=0&google_tc=
https://cm.c1exchange.com/cookie/match?adxm=1234844&rd=1&pb=00000111&dm=0&google_gid=CAESEE6Kzadt_iYDCw8GP73Gqno&google_cver=1
https://cms.c1exchange.com/cookie/match/adv/apn/seed?apn=1234844&pb=00000111&dm=0
https://ib.adnxs.com/getuid?https://cms.c1exchange.com/cookie/match/appnexus?appnexus_gid=$UID&apn=1234844&pb=00000111&dm=0
https://ib.adnxs.com/bounce?%2Fgetuid%3Fhttps%3A%2F%2Fcms.c1exchange.com%2Fcookie%2Fmatch%2Fappnexus%3Fappnexus_gid%3D%24UID%
26apn%3D1234844%26pb%3D00000111%26dm%3D0
https://cms.c1exchange.com/cookie/match/appnexus?appnexus_gid=5545385285038669127&apn=1234844&pb=00000111&dm=0
https://pixel.mathtag.com/sync/img?redir=https%3A%2F%2Fcms.c1exchange.com%2Fcookie%2Fmatch%2Fmm%3Fmmuuid%3D%5BMM_UUID%5D%26
mt_uuid%3D%5BMM_UUID%5D%26no_iframe%3D1%26apn%3D1234844%26pb%3D00000111%26dm%3D0
https://cms.c1exchange.com/cookie/match/mm?mmuuid=13f65afa-4e1c-4000-801e-e370d6ce628f&mt_uuid=13f65afa-4e1c-4000-801e-e370d6ce628f&no
_iframe=1&apn=1234844&pb=00000111&dm=0
https://s6-pixel.c1exchange.com/pubpixel/dmp/1234844?dm=0

Remove the following redirect chain if possible:

https://sync.tidaltv.com/genericusersync.ashx?dpid=lkqd
https://sb.scorecardresearch.com/p?c1=9&c2=5989497&cs_xi=dc9bd597-7b49-4344-8d91-256dcdc28567&rn=TIMESTAMP&cs_xs=3315&r=https%3A%2F
%2Fsync.tidaltv.com%2Fgenericusersync.ashx%3Fdpid%3D1261
https://sync.tidaltv.com/genericusersync.ashx?dpid=1261
https://dpm.demdex.net/ibs:dpid=445&dpuuid=dc9bd597-7b49-4344-8d91-256dcdc28567&redir=https%3A%2F%2Fsync.tidaltv.com%2Fgenericusersync.a
shx%3Fdpid%3D1262
https://sync.tidaltv.com/genericusersync.ashx?dpid=1262
https://tags.bluekai.com/site/5379?id=dc9bd597-7b49-4344-8d91-256dcdc28567&redir=https%3A%2F%2Fsync.tidaltv.com%2Fgenericusersync.ashx%3Fd
pid%3D1263
https://sync.tidaltv.com/genericusersync.ashx?dpid=1263
https://loadm.exelator.com/load/?p=204&g=281&buid=dc9bd597-7b49-4344-8d91-256dcdc28567&j=0&ru=https%3A%2F%2Fsync.tidaltv.com%2Fgenericu
sersync.ashx%3Fdpid%3D1265
https://load77.exelator.com/pixel.gif

Remove the following redirect chain if possible:

https://image8.pubmatic.com/AdServer/ImgSync?p=156759&pu=https%3A%2F%2Fimage4.pubmatic.com%2FAdServer%2FSPug%3Fp%3D156759%26pr
%3Dhttps%253A%252F%252Fcs.lkqd.net%252Fcs%253FpartnerId%253D63%2526partnerUserId%253D%2523PMUID
https://image8.pubmatic.com/AdServer/ImgSync?p=156759&pu=https%3A%2F%2Fimage4.pubmatic.com%2FAdServer%2FSPug%3Fp%3D156759%26pr
%3Dhttps%253A%252F%252Fcs.lkqd.net%252Fcs%253FpartnerId%253D63%2526partnerUserId%253D%2523PMUID&rdf=1
http://cm.g.doubleclick.net/pixel?google_nid=pubmatic&google_cm&google_sc
http://image2.pubmatic.com/AdServer/Pug?vcode=bz0yJnR5cGU9MSZjb2RlPTIxNzcmdGw9MTI5NjAw&piggybackCookie=CAESEL01e7OQVHDdoW8fzNKFzl
0&google_cver=1
https://image8.pubmatic.com/AdServer/ImgSync?sec=1
https://image4.pubmatic.com/AdServer/SPug?p=156759&pr=https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D63%26partnerUserId%3D4F2A0486-7B
80-4E66-A813-3C2C3B550DBF
https://cs.lkqd.net/cs?partnerId=63&partnerUserId=4F2A0486-7B80-4E66-A813-3C2C3B550DBF

Remove the following redirect chain if possible:

https://aa.agkn.com/adscores/g.pixel?sid=9211578608&_g=906&ex=56ada69c9eb83865d182cebdfa69c286
http://loadus.exelator.com/load/?p=115&j=0&g=906&segment=000&ag=&gd=&zip=&sk=&N1=&N2=&N3=&N4=&N10=&N15=&N20=&N21=&N22=&N23=&N
24=&N25=&N29=
http://dpm.demdex.net/ibs:dpid=3&dpuuid=56ada69c9eb83865d182cebdfa69c286&redir=http%3A%2F%2Floadm.exelator.com%2Fload%2F%3Fp%3D204
%26g%3D091%26j%3D0%26bi%3D%24%7BDD_UUID%7D
http://dpm.demdex.net/demconf.jpg?et:ibs%7cdata:dpid=3&dpuuid=56ada69c9eb83865d182cebdfa69c286&redir=http%3A%2F%2Floadm.exelator.com%2
Fload%2F%3Fp%3D204%26g%3D091%26j%3D0%26bi%3D%24%7BDD_UUID%7D
http://loadm.exelator.com/load/?p=204&g=091&j=0&bi=86407743727183655364252864740023958820
http://load77.exelator.com/pixel.gif

Remove the following redirect chain if possible:

Analyze your site at https://gtmetrix.com Page 6 of 59


PageSpeed Recommendations

https://aa.agkn.com/adscores/g.pixel?sid=9212293468
https://match.adsrvr.org/track/cmf/generic?ttd_pid=adadvisor&ttd_tpi=1
https://match.adsrvr.org/track/cmb/generic?ttd_pid=adadvisor&ttd_tpi=1
https://adadvisor.net/adscores/g.pixel?sid=9312270958&tdid=b6561484-3074-4ff3-a702-cd32d50bdd17
https://aa.agkn.com/adscores/g.pixel?sid=9312270958&tdid=b6561484-3074-4ff3-a702-cd32d50bdd17&&bounced=1
https://d.agkn.com/pixel/2610/?che=1526366242&sk=263990302691003025065&pd=&puid=b6561484-3074-4ff3-a702-cd32d50bdd17

Remove the following redirect chain if possible:

https://aa.agkn.com/adscores/g.pixel?sid=9212293438
https://pixel.mathtag.com/sync/img?redir=https://aa.agkn.com/adscores/g.pixel%3Fsid%3D9312292258%26mt%3D%5BMM_UUID%5D
https://pixel.mathtag.com/sync/img?redir=https://aa.agkn.com/adscores/g.pixel%3Fsid%3D9312292258%26mt%3D%5BMM_UUID%5D&mm_bnc&mm_bct
https://aa.agkn.com/adscores/g.pixel?sid=9312292258&mt=13f65afa-4e1c-4000-801e-e370d6ce628f
https://pixel.mathtag.com/sync/img/?mt_exid=10009&mt_exuid=263990302691003025065

Remove the following redirect chain if possible:

https://cm.g.doubleclick.net/pixel?google_nid=bidswitch_dbm&google_cm&google_sc&ssp=lkqd
https://x.bidswitch.net/sync?dsp_id=16&user_id=CAESEMB5C5W7SS2CJ8J71Y74obI&google_cver=1&ssp=lkqd
https://cs.lkqd.net/cs?partnerId=12&partnerUserId=2202d552-e01f-4714-8988-a5730081bd44&redirect=%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D43%2
6partnerUserId%3D2202d552-e01f-4714-8988-a5730081bd44%26redirect%3D%252F%252Fcs.lkqd.net%252Fcs%253FpartnerId%253D46%2526partner
UserId%253D2202d552-e01f-4714-8988-a5730081bd44
https://cs.lkqd.net/cs?partnerId=43&partnerUserId=2202d552-e01f-4714-8988-a5730081bd44&redirect=//cs.lkqd.net/cs?partnerId%3D46%26partnerUserId
%3D2202d552-e01f-4714-8988-a5730081bd44
https://cs.lkqd.net/cs?partnerId=46&partnerUserId=2202d552-e01f-4714-8988-a5730081bd44

Remove the following redirect chain if possible:

https://ib.adnxs.com/getuidnb?https://loadm.exelator.com/load/?p=204&g=011&bi=$UID&j=0
https://loadm.exelator.com/load/?p=204&g=011&bi=5545385285038669127&j=0
https://loadm.exelator.com/load/?p=204&g=510&j=0
https://e.nexac.com/e/exelate_sync.xgi?na_exid=56ada69c9eb83865d182cebdfa69c286
https://x.dlx.addthis.com/e/exelate_sync.xgi?na_exid=56ada69c9eb83865d182cebdfa69c286

Remove the following redirect chain if possible:

https://idsync.rlcdn.com/397416.gif?partner_uid=56ada69c9eb83865d182cebdfa69c286
https://idsync.rlcdn.com/397416.gif?partner_uid=56ada69c9eb83865d182cebdfa69c286&redirect=1
https://usermatch.krxd.net/um/v2?partner=liveramp
https://beacon.krxd.net/usermatch.gif?kuid_status=new&partner=liveramp

Remove the following redirect chain if possible:

https://loadm.exelator.com/load/?p=191&g=122&j=r&ru=https://d.turn.com/r/dd/id/L2NzaWQvMS9jaWQvMzgzMzE4OS90LzI/dpuid/56ada69c9eb83865d182ce
bdfa69c286/url/https%3A%2F%2Floadm.exelator.com%2Fload%2F%3Fp%3D204%26g%3D121%26buid%3D%24!%7BTURN_UUID%7D%26j%3D0%20
https://d.turn.com/r/dd/id/L2NzaWQvMS9jaWQvMzgzMzE4OS90LzI/dpuid/56ada69c9eb83865d182cebdfa69c286/url/https://loadm.exelator.com/load/?p=204&
g=121&buid=$!{TURN_UUID}&j=0
https://loadm.exelator.com/load/?p=204&g=121&buid=2783154544409103081&j=0
https://load77.exelator.com/pixel.gif

Remove the following redirect chain if possible:

https://match.adsrvr.org/track/cmf/generic?ttd_pid=bluekai
https://tags.bluekai.com/site/5386?id=b6561484-3074-4ff3-a702-cd32d50bdd17
https://sync.mathtag.com/sync/img?mt_exid=10002&redir=https%3A%2F%2Fstags.bluekai.com%2Fsite%2F4448%3Fid%3D%5BMM_UUID%5D
https://stags.bluekai.com/site/4448?id=13f65afa-4e1c-4000-801e-e370d6ce628f

Remove the following redirect chain if possible:

https://p.adsymptotic.com/d/px/?_pid=15441&_psign=da5d02ef8273538a4161c1420ad1bb15&_redirect=https%3A%2F%2Fmatch.adsrvr.org%2Ftrack%2Fc
mf%2Fgeneric%3Fttd_pid%3Ddrawbridge%26ttd_tpi%3D1%26ttd_puid%3Dhttps%25253A%25252F%25252Fcs.lkqd.net%25252Fcs%25253FpartnerId%2
5253D36%252526partnerUserId%25253D%252524%25257BUUID%25257D
https://match.adsrvr.org/track/cmf/generic?ttd_pid=drawbridge&ttd_tpi=1&ttd_puid=https%253A%252F%252Fcs.lkqd.net%252Fcs%253FpartnerId%253D36
%2526partnerUserId%253D%2524%257BUUID%257D
https://p.adsymptotic.com/d/px?_pid=12700&_psign=2b35364295063620b5b0f68f19e8e09e&_puuid=b6561484-3074-4ff3-a702-cd32d50bdd17&ttd_puid=
https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D36%26partnerUserId%3D%24%7BUUID%7D&_rand=1528958248
https://cs.lkqd.net/cs?partnerId=36&partnerUserId=4c88e6442aa302bd4549d2aa99ca828c

Remove the following redirect chain if possible:

https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428844/1013/ADTECH;cors=yes;width=405;height=228;referring_url=https%3A%2F%2Fwww.girlsask

Analyze your site at https://gtmetrix.com Page 7 of 59


PageSpeed Recommendations

guys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills;content_url=https%3A%2F%2Fconfig.playwire.com%2F1020169%2
Fvideos%2Fv2%2F5428844%2Fabr-non-hd.m3u8;media_id=5428844;title=How%20do%20you%20finally%20tell%20your%20boy%20crush%20you%20lik
e%20him%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20
AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.36;ip=__IP__;uniqueid=248908552890760;t
ags=__TAGS__;number=352564752680666;time=1526366253;headerbids=amazon;keywords=;categories=Entertainment;acao=*
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428844/1013/ADTECH;cfp=1;rndc=1526366253;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills;content_url=https%3A%2F%2Fconfig.play
wire.com%2F1020169%2Fvideos%2Fv2%2F5428844%2Fabr-non-hd.m3u8;media_id=5428844;title=How%20do%20you%20finally%20tell%20your%20bo
y%20crush%20you%20like%20him%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.0%20(X11%3B
%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.36;ip=__IP__;uni
queid=248908552890760;tags=__TAGS__;number=352564752680666;time=1526366253;headerbids=amazon;keywords=;categories=Entertainment;acao
=*
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428844/1013/ADTECH;cfp=1;rndc=1526366253;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills;content_url=https%3A%2F%2Fconfig.play
wire.com%2F1020169%2Fvideos%2Fv2%2F5428844%2Fabr-non-hd.m3u8;media_id=5428844;title=How%20do%20you%20finally%20tell%20your%20bo
y%20crush%20you%20like%20him%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.0%20(X11%3B
%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.36;ip=__IP__;uni
queid=248908552890760;tags=__TAGS__;number=352564752680666;time=1526366253;headerbids=amazon;keywords=;categories=Entertainment;acao
=*

Remove the following redirect chain if possible:

https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428844/1013/ADTECH;cors=yes;width=405;height=228;referring_url=https%3A%2F%2Fwww.girlsask
guys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills;content_url=https%3A%2F%2Fconfig.playwire.com%2F1020169%2
Fvideos%2Fv2%2F5428844%2Fabr-non-hd.m3u8;media_id=5428844;title=How%20do%20you%20finally%20tell%20your%20boy%20crush%20you%20lik
e%20him%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20
AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.36;ip=__IP__;uniqueid=248908552890760;t
ags=__TAGS__;number=697122080109755;time=1526366263;headerbids=amazon;keywords=;categories=Entertainment;acao=*
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428844/1013/ADTECH;cfp=1;rndc=1526366262;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills;content_url=https%3A%2F%2Fconfig.play
wire.com%2F1020169%2Fvideos%2Fv2%2F5428844%2Fabr-non-hd.m3u8;media_id=5428844;title=How%20do%20you%20finally%20tell%20your%20bo
y%20crush%20you%20like%20him%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.0%20(X11%3B
%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.36;ip=__IP__;uni
queid=248908552890760;tags=__TAGS__;number=697122080109755;time=1526366263;headerbids=amazon;keywords=;categories=Entertainment;acao
=*
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428844/1013/ADTECH;cfp=1;rndc=1526366262;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills;content_url=https%3A%2F%2Fconfig.play
wire.com%2F1020169%2Fvideos%2Fv2%2F5428844%2Fabr-non-hd.m3u8;media_id=5428844;title=How%20do%20you%20finally%20tell%20your%20bo
y%20crush%20you%20like%20him%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.0%20(X11%3B
%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.36;ip=__IP__;uni
queid=248908552890760;tags=__TAGS__;number=697122080109755;time=1526366263;headerbids=amazon;keywords=;categories=Entertainment;acao
=*

Remove the following redirect chain if possible:

https://c1.adform.net/serving/cookie/match/?party=1&google_gid=CAESEIiO2Ol-O5v_vCNaKYvQ518&google_cver=1&google_push=AHNF13JojzivWFqPOcr
7lNcbbAbuG-JnwijDtnP2f8azHL0tDw
https://c1.adform.net/serving/cookie/match/?CC=1&party=1&google_gid=CAESEIiO2Ol-O5v_vCNaKYvQ518&google_cver=1&google_push=AHNF13JojzivW
FqPOcr7lNcbbAbuG-JnwijDtnP2f8azHL0tDw
https://cm.g.doubleclick.net/pixel?google_nid=1024&google_ula=1641347&google_hm=MjExNTI4MjY3OTQyMjYzNjY5NA&google_push=AHNF13JojzivWFq
POcr7lNcbbAbuG-JnwijDtnP2f8azHL0tDw

Remove the following redirect chain if possible:

https://cm.g.doubleclick.net/pixel?google_nid=exelate&google_cm&google_sc
https://loadm.exelator.com/load/?p=204&g=001&bi=&j=0&google_gid=CAESELnVzEsUVTLfM5szrKIbKSk&google_cver=1
https://load77.exelator.com/pixel.gif

Remove the following redirect chain if possible:

https://cookie.brealtime.com/getuid?https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D60%26partnerUserId%3D%24UID
https://secure.adnxs.com/getuid?https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D60%26partnerUserId%3D%24UID
https://cs.lkqd.net/cs?partnerId=60&partnerUserId=5545385285038669127

Remove the following redirect chain if possible:

https://match.adsrvr.org/track/cmf/generic?ttd_pid=exelate
https://loadm.exelator.com/load/?p=204&g=460&buid=b6561484-3074-4ff3-a702-cd32d50bdd17&j=0
https://load77.exelator.com/pixel.gif

Remove the following redirect chain if possible:

Analyze your site at https://gtmetrix.com Page 8 of 59


PageSpeed Recommendations

https://match.adsrvr.org/track/cmf/generic?ttd_pid=tapad&ttd_tpi=1&ttd_puid=6d56ea51-580a-11e8-9482-0a580a4c0003%252Chttps%253A%252F%252Fc
s.lkqd.net%252Fcs%253FpartnerId%253D4%2526partnerUserId%253D6d56ea51-580a-11e8-9482-0a580a4c0003
https://pixel.tapad.com/idsync/ex/receive?partner_id=1830&partner_device_id=b6561484-3074-4ff3-a702-cd32d50bdd17&ttd_puid=6d56ea51-580a-11e8-9
482-0a580a4c0003%2Chttps%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D4%26partnerUserId%3D6d56ea51-580a-11e8-9482-0a580a4c0003
https://cs.lkqd.net/cs?partnerId=4&partnerUserId=6d56ea51-580a-11e8-9482-0a580a4c0003

Remove the following redirect chain if possible:

https://pr-bh.ybp.yahoo.com/sync/iponweb?bidswitch_ssp_id=lkqd&ssp_user_id=2202d552-e01f-4714-8988-a5730081bd44
https://x.bidswitch.net/sync?dsp_id=74&&user_id=181836785&expires=5&ssp=lkqd
https://cs.lkqd.net/cs?partnerId=12&partnerUserId=2202d552-e01f-4714-8988-a5730081bd44&redirect=%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D43%2
6partnerUserId%3D2202d552-e01f-4714-8988-a5730081bd44%26redirect%3D%252F%252Fcs.lkqd.net%252Fcs%253FpartnerId%253D46%2526partner
UserId%253D2202d552-e01f-4714-8988-a5730081bd44

Remove the following redirect chain if possible:

https://sync-tm.everesttech.net/upi/pid/aUTuBPNf?redir=https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D52%26partnerUserId%3D%24%7BUSER_ID
%7D
https://sync-tm.everesttech.net/ct/upi/pid/aUTuBPNf?redir=https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D52%26partnerUserId%3D%24%7BUSER_
ID%7D&_test=WvqAKAAAAFy2qRAl
https://cs.lkqd.net/cs?partnerId=52&partnerUserId=WvqAKAAAAFy2qRAl&_test=WvqAKAAAAFy2qRAl

Remove the following redirect chain if possible:

https://token.rubiconproject.com/token?pid=2974&pt=n&a=1
https://pr-bh.ybp.yahoo.com/sync/rubicon/Fj7y8jFh/PbsbL2byZZd1A==?csrc=
https://pixel.rubiconproject.com/tap.php?v=31950&nid=2974&put=9130563151793591023

Remove the following redirect chain if possible:

https://track.eyeviewads.com/sync/lkqd
https://pixeltrack.eyeviewads.com/check?r=https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D42%26partnerUserId%3D9f57c2c47aa3b89abd8474a169
3e2958&vndr=lkqd
https://cs.lkqd.net/cs?partnerId=42&partnerUserId=9f57c2c47aa3b89abd8474a1693e2958&sticky=true

Remove the following redirect chain if possible:

https://us-u.openx.net/w/1.0/cm?id=c09b4c7a-cf51-4f9d-988d-8b1b5956bd03&r=https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D51%26partnerUserI
d%3D
https://us-u.openx.net/w/1.0/cm?cc=1&id=c09b4c7a-cf51-4f9d-988d-8b1b5956bd03&r=https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D51%26partne
rUserId%3D
https://cs.lkqd.net/cs?partnerId=51&partnerUserId=41bcffff-aaf1-4d9d-be6f-7cad0c58a8f3

Remove the following redirect chain if possible:

https://usync.aws.rubiconproject.com/yahoo-brx
https://ads.yahoo.com/cms/v1?nwid=10000010181&eid=JH7B1YM0-C-EVDO&sigv=1&esig=2~df2c7d2eb101258ab1e8980616a8c1a4aa27af09
https://cookiex.ngd.yahoo.com/ack?xid=Ds.1AMkhj_QNaFQ65.FDWEyT&eid=JH7B1YM0-C-EVDO

Remove the following redirect chain if possible:

https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428844/1013/ADTECH;cfp=1;rndc=1526366252;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills;content_url=https%3A%2F%2Fconfig.play
wire.com%2F1020169%2Fvideos%2Fv2%2F5428844%2Fabr-non-hd.m3u8;media_id=5428844;title=How%20do%20you%20finally%20tell%20your%20bo
y%20crush%20you%20like%20him%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.0%20(X11%3B
%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.36;ip=__IP__;uni
queid=248908552890760;tags=__TAGS__;number=352564752680666;time=1526366253;headerbids=amazon;keywords=;categories=Entertainment;acao
=*
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428844/1013/ADTECH;cfp=1;rndc=1526366252;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills;content_url=https%3A%2F%2Fconfig.play
wire.com%2F1020169%2Fvideos%2Fv2%2F5428844%2Fabr-non-hd.m3u8;media_id=5428844;title=How%20do%20you%20finally%20tell%20your%20bo
y%20crush%20you%20like%20him%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.0%20(X11%3B
%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.36;ip=__IP__;uni
queid=248908552890760;tags=__TAGS__;number=352564752680666;time=1526366253;headerbids=amazon;keywords=;categories=Entertainment;acao
=*

Remove the following redirect chain if possible:

https://bcp.crwdcntrl.net/map/c=9380/tp=MGID/tpid=i4eoV9HUAHBn
https://bcp.crwdcntrl.net/map/ct=y/c=9380/tp=MGID/tpid=i4eoV9HUAHBn

Analyze your site at https://gtmetrix.com Page 9 of 59


PageSpeed Recommendations

Remove the following redirect chain if possible:

https://bh.contextweb.com/bh/rtset?pid=561322&ev=1&rurl=https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D53%26partnerUserId%3D%25%25VGUI
D%25%25
https://cs.lkqd.net/cs?partnerId=53&partnerUserId=a15hCLlu30IE&ev=1&pid=561322

Remove the following redirect chain if possible:

https://bh.contextweb.com/bh/rtset?pid=561322&ev=1&rurl=https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D57%26partnerUserId%3D%25%25VGUI
D%25%25
https://cs.lkqd.net/cs?partnerId=57&partnerUserId=OOZD80dUSKto&ev=1&pid=561322

Remove the following redirect chain if possible:

https://bttrack.com/pixel/cookiesync?source=0b0edea9-c9fe-4b9c-9bcd-a51022f2873f&publisherid=MjcxNmQxZTgwMWU5YjNlZGZlY2VkZWNmZDViMzIwOG
Q=&pushdata=109&secure=1
https://cm.revcontent.com/pixel_sync?bidder=109&bidder_uid=7a0fee80-a952-4541-acb1-4ee0fb72b6ed&exchange_uid=MjcxNmQxZTgwMWU5YjNlZGZlY2
VkZWNmZDViMzIwOGQ=

Remove the following redirect chain if possible:

https://cm.g.doubleclick.net/pixel?google_nid=rubicon&google_cm&google_sc
https://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEFwcCD-5Tpu94n1U4K2NyPo&google_cver=1

Remove the following redirect chain if possible:

https://dpm.demdex.net/ibs:dpid=121998&dpuuid=f369dfd27ef98ed39e17af8f9bd28ebf&redir=https%3A%2F%2Fbcp.crwdcntrl.net%2Fmap%2Fc%3D9828
%2Ftp%3DADBE%2Ftpid%3D%24%7BDD_UUID%7D
https://bcp.crwdcntrl.net/map/c=9828/tp=ADBE/tpid=86407743727183655364252864740023958820

Remove the following redirect chain if possible:

https://g.cwkuki.com/cs/D8f2l?u=MjcxNmQxZTgwMWU5YjNlZGZlY2VkZWNmZDViMzIwOGQ=
https://cm.revcontent.com/pixel_sync?exchange_uid=MjcxNmQxZTgwMWU5YjNlZGZlY2VkZWNmZDViMzIwOGQ%3D&bidder=112&bidder_uid=6b74e3e0-58
0a-11e8-9230-0242ac110003

Remove the following redirect chain if possible:

https://ib.adnxs.com/getuid?https://stags.bluekai.com/site/3085?id=
https://stags.bluekai.com/site/3085?id=

Remove the following redirect chain if possible:

https://loadm.exelator.com/load/?p=204&g=260&buid=f369dfd27ef98ed39e17af8f9bd28ebf&j=0
https://load77.exelator.com/pixel.gif

Remove the following redirect chain if possible:

https://loadus.exelator.com/load/?p=233&g=001&j=d
https://loadus.exelator.com/load/?p=233&g=001&j=d&xl8blockcheck=1

Remove the following redirect chain if possible:

https://match.adsrvr.org/track/cmf/generic?ttd_pid=e0d6q5j&ttd_tpi=1
https://cs.lkqd.net/cs?partnerId=22&partnerUserId=b6561484-3074-4ff3-a702-cd32d50bdd17

Remove the following redirect chain if possible:

https://match.adsrvr.org/track/cmf/rubicon
https://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=b6561484-3074-4ff3-a702-cd32d50bdd17&expires=30

Remove the following redirect chain if possible:

https://media.sabio.us/imp_pixel?invsrc=11&secure=1
https://cs.lkqd.net/cs?partnerId=39&partnerUserId=4639865995076639425

Remove the following redirect chain if possible:

https://odr.mookie1.com/t/v2/sync?tagid=V2_4530&src.visitorid=CAESEKPxiiVh-BzLes6iAcq4OCs&google_cver=1&google_push=AHNF13LbXjmhF2nMPQD
wP5zhkliwkCLNe7p6mTw3MZy3Temd

Analyze your site at https://gtmetrix.com Page 10 of 59


PageSpeed Recommendations

https://cm.g.doubleclick.net/pixel?google_nid=xaxis_dev_dmp&google_push=AHNF13LbXjmhF2nMPQDwP5zhkliwkCLNe7p6mTw3MZy3Temd&google_hm
=MTE0NTkxOTgxNDg2NTgzMDQwMzQ

Remove the following redirect chain if possible:

https://p.adsymptotic.com/d/px?_pid=12700&_psign=2b35364295063620b5b0f68f19e8e09e&_puuid=b6561484-3074-4ff3-a702-cd32d50bdd17&ttd_puid=
https%3A%2F%2Fcs.lkqd.net%2Fcs%3FpartnerId%3D36%26partnerUserId%3D%24%7BUUID%7D&_rand=1528958249
https://cs.lkqd.net/cs?partnerId=36&partnerUserId=4c88e6442aa302bd4549d2aa99ca828c

Remove the following redirect chain if possible:

https://pixel-a.sitescout.com/dmp/pixelSync?network=AdX&google_gid=CAESEETnJ0KZTpdUJjk7ncwUWLs&google_cver=1&google_push=AHNF13K1U0o
Hz3pO9YwYuBybTIrvkrJS2KUfFPqT1hDigA
https://cm.g.doubleclick.net/pixel?google_ula=1293153&google_nid=ssc&google_push=AHNF13K1U0oHz3pO9YwYuBybTIrvkrJS2KUfFPqT1hDigA&google
_sc&google_hm=uxOcjG3dRxO_75e55HGqIg

Remove the following redirect chain if possible:

https://px.surveywall-api.survata.com/t
https://bcp.crwdcntrl.net/map/c=10098/tp=SRVT/tpid=024edc3a-daa7-1a96-affd-c126b2ea843c

Remove the following redirect chain if possible:

https://sb.scorecardresearch.com/b?c1=2&c2=6035391&ns__t=1526366238108&ns_c=UTF-8&c8=Would%20you%20use%20the%20Bitcoin%20to%20pa
y%20your%20bills%3F%20-%20GirlsAskGuys&c7=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-t
o-pay-your-bills&c9=
https://sb.scorecardresearch.com/b2?c1=2&c2=6035391&ns__t=1526366238108&ns_c=UTF-8&c8=Would%20you%20use%20the%20Bitcoin%20to%20p
ay%20your%20bills%3F%20-%20GirlsAskGuys&c7=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin
-to-pay-your-bills&c9=

Remove the following redirect chain if possible:

https://sync-tm.everesttech.net/upi/pid/btu4jd3a?redir=https%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D191940%26nid%3D3778%26put%3
D%24%7BUSER_ID%7D
https://pixel.rubiconproject.com/tap.php?v=191940&nid=3778&put=WvqAKAAAAFy2qRAl

Remove the following redirect chain if possible:

https://sync.mathtag.com/sync/img?mt_exid=9&redir=https%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D4222%26nid%3D1512%26put%3D
%5BMM_UUID%5D
https://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=13f65afa-4e1c-4000-801e-e370d6ce628f

Remove the following redirect chain if possible:

https://syndication.twitter.com/i/jot
https://platform.twitter.com/jot.html

Remove the following redirect chain if possible:

https://t.sharethis.com/1/d/r?cid=c010&aqet=pn_lotame&puu=f369dfd27ef98ed39e17af8f9bd28ebf&ru=https://bcp.crwdcntrl.net/map/c=9084/tp=SARE/tpid=
~~c~__stid~~
https://bcp.crwdcntrl.net/map/c=9084/tp=SARE/tpid=P5d2wVr6gCkAABp5edj%2fAg%3d%3d

Remove the following redirect chain if possible:

https://tap-secure.rubiconproject.com/partner/scripts/rubicon/emily.html?rtb_ext=1&geo=na&co=us
https://eus.rubiconproject.com/usync.html

Remove the following redirect chain if possible:

https://token.rubiconproject.com/token?pid=25470
https://cm.g.doubleclick.net/pixel?google_nid=rp&google_hm=Skg3QjFZTTAtQy1FVkRP

Remove the following redirect chain if possible:

https://um.simpli.fi/rb_match
https://pixel.rubiconproject.com/tap.php?v=6286&nid=2132&put=23423CA92B80FA5A3DC1BF3A020E0D62&expires=365

Remove the following redirect chain if possible:

Analyze your site at https://gtmetrix.com Page 11 of 59


PageSpeed Recommendations

https://www.facebook.com/connect/ping?client_id=142488384519&domain=www.girlsaskguys.com&origin=1&redirect_uri=https%3A%2F%2Fstaticxx.faceb
ook.com%2Fconnect%2Fxd_arbiter%2Fr%2FRQ7NiRXMcYA.js%3Fversion%3D42%23cb%3Df3866fce5fa4d6%26domain%3Dwww.girlsaskguys.com%26o
rigin%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Ff384965694cd44%26relation%3Dparent&response_type=token%2Csigned_request%2C
code&sdk=joey&version=v2.7
https://staticxx.facebook.com/connect/xd_arbiter/r/RQ7NiRXMcYA.js?version=42

Remove the following redirect chain if possible:

https://x.skimresources.com/?provider=lotame&skim_mapping=true&provider_id=f369dfd27ef98ed39e17af8f9bd28ebf
https://p.skimresources.com/?provider_id=f369dfd27ef98ed39e17af8f9bd28ebf&skim_mapping=true

Serve resources from a consistent URL F (0) AVG SCORE: 88% CONTENT HIGH

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
8 request(s) and 344B.

https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-
would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.5301647826567564&7331981622
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:386}];et=387;eid=114;ai=RB%20Fastlane%5Erubicon%5E372688_1-6
40-480%5E%5E370;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.504325
710117083&9087452643
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:387}];et=388;eid=114;ai=RB%20Fastlane%5Erubicon_preroll%5E372
688_1-640-480%5E%5E371;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.
504325710117083&4083087879
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:5715},{%2258%22:4865},{%2229%22:4865}];eid=57;g=0;m=0;w=0;pu
=https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.13718164852373071&4426382426
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:726}];eid=99;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-
news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.8705402673723517&5354521700
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:850},{%2258%22:0}];et=851;eid=29;g=0;m=0;w=0;pu=https://www.girls
askguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.3228689037474104&4839259873
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:850}];eid=58;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-
news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.39588017330681624&8755066302
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-
would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.2927374370194238&8580108141
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[{%2228%22:5}];eid=99;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-ne
ws/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.6439502242755126&6573045409

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
4 request(s) and 444B.

https://adservice.google.ca/adsid/integrator.js?domain=tpc.googlesyndication.com
https://adservice.google.ca/adsid/integrator.js?domain=www.girlsaskguys.com
https://adservice.google.com/adsid/integrator.js?domain=cdn.playwire.com
https://adservice.google.com/adsid/integrator.js?domain=tpc.googlesyndication.com
https://adservice.google.com/adsid/integrator.js?domain=www.girlsaskguys.com

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
2 request(s) and 312B.

https://pubads.g.doubleclick.net/gampad/ads?sz=3x3&iu=%2F36117602%2Fhdm-aolpreroll%2Fonnetwork&gdfp_req=1&env=vp&output=xml_vast3&unview
ed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&descriptio
n_url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&correlator=32777045669585
73&sdkv=h.3.208.0&sdki=3c0d&scor=3373691446915184&adk=1623483475&u_so=l&osd=2&frm=0&sdr=1&is_amp=0&adsid=NT&afvsz=200x200%2C25
0x250%2C300x250%2C336x280%2C450x50%2C468x60%2C480x70%2C728x90&ged=ve4_td7_tt1_pd7_la7000_er5366.158.5521.458_vi0.0.768.1366_vp
0_eb16619
https://pubads.g.doubleclick.net/gampad/ads?sz=640x480%7C400x300&iu=%2F281896196%2FGirlsAskGuys_Desktop_Video_Preroll&gdfp_req=1&env=v
p&output=xml_vast3&unviewed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoi
n-to-pay-your-bills&description_url=girlsaskguys.com&correlator=3437760361160900&cust_params=XperLevel%3D%26qkeyword%3D%26okeyword%3D
%26utm_source%3DNone%26utm_medium%3DNone%26utm_campaign%3DNone%26PostInfo%3Dq2125533%26Gender%3DUnknownGender%26Ag
e%3DUnknownAge%26Mobile%3DMobileNo%26PageType%3DQuestion%26BrandId%3D%26MarkedAs%3DFalse%26ShowAllAds%3DYes%26Topics%
3Dtrending-news&mpt=playwire&mpv=3.2&sdkv=h.3.208.0&sdki=3c0d&scor=4386250722938162&adk=3984514231&u_so=l&osd=2&frm=2&sdr=1&is_a
mp=0&adsid=NT&ged=ve4_td7_tt0_pd7_la7000_er0.0.154.300_vi0.0.228.405_vp100_eb24427
https://pubads.g.doubleclick.net/gampad/ads?sz=640x480%7C400x300&iu=%2F281896196%2FGirlsAskGuys_Desktop_Video_Preroll&gdfp_req=1&env=v
p&output=xml_vast3&unviewed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoi
n-to-pay-your-bills&description_url=girlsaskguys.com&correlator=4118942733891424&mpt=playwire&mpv=3.2&sdkv=h.3.208.0&sdki=3c0d&scor=1697086
879187273&adk=3984514231&u_so=l&osd=2&frm=2&sdr=1&is_amp=0&adsid=NT&ged=ve4_td18_tt11_pd18_la18000_er0.0.154.300_vi0.0.228.405_vp1

Analyze your site at https://gtmetrix.com Page 12 of 59


PageSpeed Recommendations

00_ts11_eb24427

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
1 request(s) and 230.7KiB.

https://imasdk.googleapis.com/js/sdkloader/ima3.js
https://s0.2mdn.net/instream/html5/ima3.js

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
1 request(s) and 76.9KiB.

https://ss3.zedo.com/gecko/tag/networkIds.js?3413964706
https://ss3.zedo.com/gecko/tag/networkIds.js?4022784076

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
1 request(s) and 70.2KiB.

https://pagead2.googlesyndication.com/pagead/js/r20180509/r20180504/osd.js
https://pagead2.googlesyndication.com/pagead/osd.js

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
1 request(s) and 249B.

https://ads.adaptv.advertising.com/a/h/xiZPj3SGdsAAGBxh6T2NSH4Tsyjd4QtooOt0lqLFswM=?cb=189675429&pet=preroll&pageUrl=http%3A%2F%2Fgirlsa
skguys.com&eov=eov&a.cluster=0&a.pvt=0&a.d.pageUrl=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bit
coin-to-pay-your-bills&a.flashonpage=0&a.hasAppInfo=2&a.sdk=o2unit&a.sdkType=js&depth=0&height=392&moatViewableOpportunity=0&p.vw.active=1&p.
vw.psize=3&p.vw.viewable=0&p.vw.viewableOpportunity=0&referrerUrl=&width=697
https://ads.adaptv.advertising.com/a/h/xiZPj3SGdsAAGBxh6T2NSH4Tsyjd4QtooOt0lqLFswM=?cb=275016724&pet=preroll&pageUrl=http%3A%2F%2Fgirlsa
skguys.com&eov=eov&a.cluster=0&a.pvt=0&a.d.pageUrl=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bit
coin-to-pay-your-bills&a.flashonpage=0&a.hasAppInfo=2&a.sdk=o2unit&a.sdkType=js&depth=0&height=392&moatViewableOpportunity=0&p.vw.active=1&p.
vw.psize=3&p.vw.viewable=0&p.vw.viewableOpportunity=0&referrerUrl=&width=697

The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save
1 request(s) and 43B.

http://load77.exelator.com/pixel.gif
https://load77.exelator.com/pixel.gif

Leverage browser caching F (0) AVG SCORE: 59% SERVER HIGH

Leverage browser caching for the following cacheable resources:

http://load77.exelator.com/pixel.gif (expiration not specified)


https://api.content-ad.net/px.gif (expiration not specified)
https://brand-ad-innovations.s3.amazonaws.com/intention-score/bai-intention-score.js (expiration not specified)
https://cm.mgid.com/i.js (expiration not specified)
https://code.jquery.com/jquery-3.1.1.min.js (expiration not specified)
https://d31qbv1cthcecs.cloudfront.net/atrk.js (expiration not specified)
https://d32oduq093hvot.cloudfront.net/icons/c_ad_logo.png (expiration not specified)
https://d32oduq093hvot.cloudfront.net/icons/sponsoredlinksby.png (expiration not specified)
https://d3dytsf4vrjn5x.cloudfront.net/105614/300x250/c9127ce6e704a656ec453fb89c2c9c40.jpg (expiration not specified)
https://d3dytsf4vrjn5x.cloudfront.net/6279/300x250/aa5c21a395a124b874d248d14d4b1d86.jpg (expiration not specified)
https://d3dytsf4vrjn5x.cloudfront.net/79578/300x250/3a067d0e2548a891d8acc7ef4bea71a9.jpg (expiration not specified)
https://fastlane-adv.rubiconproject.com/v1/auction/video (expiration not specified)
https://js.agkn.com/prod/v0/tag.js (expiration not specified)
https://load77.exelator.com/pixel.gif (expiration not specified)
https://scripts.host.bannerflow.com/1.0.7/bf.min.js (expiration not specified)
https://sdk.amazonaws.com/js/aws-sdk-2.129.0.min.js (expiration not specified)
https://video-ads.rubiconproject.com/video/bridge-30638.js (expiration not specified)
https://cdn.playwire.com/bolt/js/zeus/embed.js (12 seconds)
https://content.jwplatform.com/libraries/WLok6WPd.js (2 minutes 30 seconds)
https://ad.lkqd.net/vpaid/vpaid.js?fusion=1.0 (4 minutes)
https://ad.lkqd.net/mediafile/blocking_regex (5 minutes)
https://ad.lkqd.net/vpaid/formats.js?pid=323&sid=174302&apt=auto&volume=0&render=&controls=&support=&execution=outstream&placement=slider&trac
ki=&trackc=&c1=&c2=&c3=&rnd=85599948&m=&close=true&closedelay=15 (5 minutes)
https://images.host.bannerflow.com/5a6ba42fbaae30223843aa5d.rSnrv6e2i5ev.jpg?cb=636535384508927248 (5 minutes)
https://syndication.twitter.com/settings (10 minutes)

Analyze your site at https://gtmetrix.com Page 13 of 59


PageSpeed Recommendations

https://embed.bannerflow.com/5a787825e314e03f581fcc26?targetwindow=_blank&targeturl=https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%
3Fxai%3DAKAOjsuUmoKWsv3PME62aS6_LAzA4q6T3r10q4yWvXLqKsiy19Sjo4OugQgw0mC25PCu1RPPeY_rGRbQ0fnK0Y2U0KVVgeaj47dw5_veo2-8yST
69ssznzXYNn_FIOoin-9hv7oGl5DsVT7uSPxf7ReibwMWg3IaLYEoIt77q9xEqJS4FYfBoF2SJpqSYA0KIPUCme3N2xgVHUnsy_dnWI6iJOGQKL76Xm8BocKmX
KxXOD6mYQpfzWnY2Cjbh4thHfAetosE7TLpBeqjNZtMxZ2ISVpGotZfQT9GRDYdnd5ETQrFXckOX0cg7lAvrJO7s_3Xg3irynruBd5Jj55ByYTnw4RdToWxdCC9t1Z
pK35Pi6RKiZSYwUiEA8yZgt_H6vCWOenrLCYJVlVeyx5XHnmE7Mp8XVPkRRuxvLw3BKRi4vrZIMWZsT5886XJXmlKG8b2LQDT9EXt_-oi1ZnTOuE2kC9wHuJN
auj_Lv_3B3QpDQkR70Z2CIKr81Bg4T-lFB_39d58c3U9lIPyKhNNh6pa0vOg1niG7jDob0xXY6QOH-6sNLq8mM_dxv0C2VrIFNNBvy__sqlp5Ywe5wfOs2A_p3l_i
1gl9igfgkfdQ26BNVHPkXSsBJ4svQZDb4p1UDdWAziZ4L4CD5iCpt3NHCftHurufLbDfd7z0APxfVVESKGam6KNc-xDx3K3FTuEUlFAm1iZCBop72BQ21NPU0j4
hK2Jgf2p9Ne1SmrBsRDEuKTNmjHF33WpWWtciG76AJj0LS0emfh_lkc8w298hozNcAWHx2iQA-zTgRkx3JSacELAKg_lI1aokNmEJVBoIh1GHkPaeuXyWzW7
9Vg9qgo3WHDrgyjsiJkn2-4gwlPjtsdWeomZzrTBO9EERCQjInzGrOTF8-dmSDZx9wjU8WF5dysLB_9IE9_uONvow-hNiapS-wJOaEKPSw%26sig%3DCg0ArK
JSzO6_E0GhRtBLEAE%26urlfix%3D1%26rm_eid%3D4134037%26adurl%3Dhttps%253A%252F%252Fwww.shutterstock.com%253Fpl%253DGDNCAIM-l
ggeneric%2526cr%253Dgeneric%2526utm_source%253Dadwords%2526utm_campaign%253Dimage_ca_lggeneric%2526utm_term%253D1_topicsmal
lbusiness-gdn%2526utm_content%253Dgeneric_print_en_html5_diederick%2526utm_medium%253Dacq_display%2526dclid%253D%2525edclid! (15
minutes)
https://imasdk.googleapis.com/js/sdkloader/ima3.js (15 minutes)
https://s0.2mdn.net/instream/html5/ima3.js (15 minutes)
https://s0.2mdn.net/instream/video/client.js (15 minutes)
https://www.googletagmanager.com/gtm.js?id=GTM-5KMRGL (15 minutes)
https://www.googletagservices.com/tag/js/gpt.js (15 minutes)
https://connect.facebook.net/en_US/fbevents.js (20 minutes)
https://connect.facebook.net/en_US/sdk.js (20 minutes)
https://connect.facebook.net/signals/config/781946178525195?v=2.8.14&r=stable (20 minutes)
https://3787.tm.zedo.com/v1/eae01302-531c-41de-b573-22ad40de42e4/atm.js (29 minutes 30 seconds)
https://apis.google.com/js/platform.js?onload=gpCallback (30 minutes)
https://dtm.advertising.com/411f1e96-3bde-4d85-b17e-63749e5f0695.js (30 minutes)
https://platform.twitter.com/widgets.js (30 minutes)
https://www.girlsaskguys.com/favicon.png (30 minutes)
https://jsc.mgid.com/g/i/girlsaskguys.com.114115.js?t=11841423 (1 hour)
https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js (1 hour)
https://pagead2.googlesyndication.com/pagead/js/lidar.js (1 hour)
https://pagead2.googlesyndication.com/pagead/osd.js (1 hour)
https://pagead2.googlesyndication.com/pagead/show_companion_ad.js (1 hour)
https://s.ntv.io/serve/load.js (1 hour)
https://js.gumgum.com/services.js (2 hours)
https://www.google-analytics.com/analytics.js (2 hours)
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15262929340920703819.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg (5 hours 51 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/libs/shifty-4b401bda95.js (7 hours 23 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/scrubber-6af035d6af.js?noext (7 hours 23 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/titlebar-3af6709de6.js?noext (7 hours 23 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/skins/orion-ca0ae891d2.css (7 hours 23 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/appearance_manager-1137985e12.js?noext (7 hours 23 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/controlbar-bb56ce11ba.js?noext (7 hours 23 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/preroll_screen-de6bb182df.js?noext (7 hours 23 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/volume-a2adcb71e7.js?noext (7 hours 23 minutes)
https://cdn.playwire.com/bolt/js/zeus/core-a160b37fa6.js?noext (7 hours 23 minutes)
https://cdn.playwire.com/bolt/js/zeus/themes/orion/main.js?1526366245845 (7 hours 23 minutes)
https://cdn.playwire.com/bolt/js/zeus/zeus_boot-081af9499a-bcff0847d3.js (7 hours 23 minutes)
https://cdn.playwire.com/bolt/js/zeus/iframe/libs/require.js (7 hours 23 minutes)
https://cdn.playwire.com/bolt/js/zeus/zeus_iframe-3658f262ba.js (7 hours 23 minutes)
https://cdn.playwire.com/bolt/js/zeus/zeus_global-bb33b35511-b2f521c1ba.js (7 hours 23 minutes)
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15251659200349305815.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg (8 hours 22 minutes)
https://z.moatads.com/aolvidibleapi29384728347/moatapi.js (8 hours 31 minutes)

M inimize request size F (0) AVG SCORE: 96% CONTENT HIGH

The requests for the following URLs don't fit in a single packet. Reducing the size of these requests could reduce latency.

https://securepubads.g.doubleclick.net/gampad/ads?gdfp_req=1&correlator=962398745317386&output=json_html&callback=googletag.impl.pubads.callb
ackProxy1&impl=fifs&adsid=NT&json_a=1&hxva=1&scor=4434133215623769&eid=21061645%2C21061764&vrg=205&guci=2.2.0.0.2.2&sc=1&sfv=1-0-23
&iu_parts=281896196%2CGirlsAskGuys_Desktop_Masthead%2CGirlsAskGuys_Desktop_Right_1%2CGirlsAskGuys_Desktop_Right_2%2CGirlsAskGuys
_Desktop_AboveOpinions%2CGirlsAskGuys_Desktop_BetweenGender%2CGirlsAskGuys_Desktop_UnderOpinions%2CGirlsAskGuys_Desktop_Inter_1%
2CGirlsAskGuys_Desktop_EndOfPage%2CGirlsAskGuys_Desktop_Inter_2%2CGirlsAskGuys_Desktop_Inter_4&enc_prev_ius=%2F0%2F1%2C%2F0%2F
2%2C%2F0%2F3%2C%2F0%2F4%2C%2F0%2F5%2C%2F0%2F6%2C%2F0%2F7%2C%2F0%2F8%2C%2F0%2F9%2C%2F0%2F10&prev_iu_szs=320x
50%7C300x250%7C728x90%7C970x250%7C730x250%2C320x50%7C300x250%2C320x50%7C300x250%7C300x600%2C320x50%7C728x90%7C730x
400%7C300x250%7C336x280%7C730x250%2C320x50%7C728x90%7C730x400%7C300x250%7C336x280%7C730x250%2C320x50%7C728x90%7C73
0x400%7C730x500%7C300x250%7C336x280%7C730x250%2C1x1%2C320x50%7C728x90%7C730x400%7C300x250%7C336x280%7C730x250%2C1x1
%2C1x1&fluid=height%2Cheight%2Cheight%2Cheight%2Cheight%2Cheight%2C0%2Cheight%2C0%2C0&eri=4&cust_params=XperLevel%3D0%26utm_
source%3DNone%26utm_medium%3DNone%26utm_campaign%3DNone%26PostInfo%3Dq2125533%26Gender%3DUnknownGender%26Age%3DUnk

Analyze your site at https://gtmetrix.com Page 14 of 59


PageSpeed Recommendations

nownAge%26Topics%3Dtrending-news%26Mobile%3DMobileNo%26MarkedAs%3DFalse%26ShowAllAds%3DYes%26PageType%3DQuestion%26BrandI
d%3DGAG-0&cookie_enabled=1&bc=5&abxe=1&lmt=1526366238&dt=1526366238744&frm=20&biw=1366&bih=768&oid=3&adxs=0%2C908%2C908%2
C163%2C163%2C163%2C683%2C163%2C683%2C683&adys=0%2C786%2C1573%2C1584%2C4097%2C4817%2C5258%2C4917%2C5289%2C532
0&adks=2967190282%2C1923088448%2C3698094709%2C500454048%2C2910813795%2C2966204064%2C2385381749%2C1564585714%2C2376
667967%2C650677945&gut=v2&ifi=1&u_tz=-420&u_his=3&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=24&u_nplug=4&u_nmime=5&u_sd=1&fla
sh=0&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&dssz=54&icsg=3518495
2999936&std=0&vis=1&scr_x=0&scr_y=0&psz=1050x90%7C300x250%7C300x250%7C737x90%7C737x90%7C737x90%7C1366x21%7C737x90%7C136
6x21%7C1366x21&ga_vid=1652242376.1526366239&ga_sid=1526366239&ga_hid=1617319896 has a request size of 4.9KiB
Request URL: 2.2KiB
Cookies: 62B
Referer Url: 95B
Other: 2.5KiB
https://banners.host.bannerflow.com/5a6ba42fbaae30223843aa5d.html?cb=636535384496114351&clickpixel=%2F%2Ftracker.bannerflow.com%2Fapi%2
Ftr%2Fclick%3Fdata%3D%257B%2522account%2522%253A%2522shutterstock%2522%252C%2522brand%2522%253A%2522589873bd5a4e8749bce4
03ff%2522%252C%2522placement%2522%253A%25225a787825e314e03f581fcc26%2522%252C%2522ad%2522%253A%25225a6ba42fbaae3022384
3aa5e%2522%252C%2522bannerset%2522%253A%25225a6ba42cbaae30223843aa4b%2522%252C%2522banner%2522%253A%25225a6ba42fbaae
30223843aa5d%2522%252C%2522cb%2522%253A504%252C%2522spotIndexes%2522%253A0%252C%2522bannerIds%2522%253A%25225a6ba42f
baae30223843aa5d%2522%257D&targeturl=https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%3Fxai%3DAKAOjsuUmoKWsv3PME62aS6_LAz
A4q6T3r10q4yWvXLqKsiy19Sjo4OugQgw0mC25PCu1RPPeY_rGRbQ0fnK0Y2U0KVVgeaj47dw5_veo2-8yST69ssznzXYNn_FIOoin-9hv7oGl5DsVT7uSPxf7R
eibwMWg3IaLYEoIt77q9xEqJS4FYfBoF2SJpqSYA0KIPUCme3N2xgVHUnsy_dnWI6iJOGQKL76Xm8BocKmXKxXOD6mYQpfzWnY2Cjbh4thHfAetosE7TLpBe
qjNZtMxZ2ISVpGotZfQT9GRDYdnd5ETQrFXckOX0cg7lAvrJO7s_3Xg3irynruBd5Jj55ByYTnw4RdToWxdCC9t1ZpK35Pi6RKiZSYwUiEA8yZgt_H6vCWOenrLCY
JVlVeyx5XHnmE7Mp8XVPkRRuxvLw3BKRi4vrZIMWZsT5886XJXmlKG8b2LQDT9EXt_-oi1ZnTOuE2kC9wHuJNauj_Lv_3B3QpDQkR70Z2CIKr81Bg4T-lFB_39
d58c3U9lIPyKhNNh6pa0vOg1niG7jDob0xXY6QOH-6sNLq8mM_dxv0C2VrIFNNBvy__sqlp5Ywe5wfOs2A_p3l_i1gl9igfgkfdQ26BNVHPkXSsBJ4svQZDb4p1U
DdWAziZ4L4CD5iCpt3NHCftHurufLbDfd7z0APxfVVESKGam6KNc-xDx3K3FTuEUlFAm1iZCBop72BQ21NPU0j4hK2Jgf2p9Ne1SmrBsRDEuKTNmjHF33Wp
WWtciG76AJj0LS0emfh_lkc8w298hozNcAWHx2iQA-zTgRkx3JSacELAKg_lI1aokNmEJVBoIh1GHkPaeuXyWzW79Vg9qgo3WHDrgyjsiJkn2-4gwlPjtsdWeomZ
zrTBO9EERCQjInzGrOTF8-dmSDZx9wjU8WF5dysLB_9IE9_uONvow-hNiapS-wJOaEKPSw%26sig%3DCg0ArKJSzO6_E0GhRtBLEAE%26urlfix%3D1%26r
m_eid%3D4134037%26adurl%3Dhttps%253A%252F%252Fwww.shutterstock.com%253Fpl%253DGDNCAIM-lggeneric%2526cr%253Dgeneric%2526utm
_source%253Dadwords%2526utm_campaign%253Dimage_ca_lggeneric%2526utm_term%253D1_topicsmallbusiness-gdn%2526utm_content%253Dg
eneric_print_en_html5_diederick%2526utm_medium%253Dacq_display%2526dclid%253D%2525edclid!&targetwindow=_blank has a request size of
4.6KiB
Request URL: 2.0KiB
Cookies: 40B
Referer Url: 148B
Other: 2.4KiB
https://banners.host.bannerflow.com/5a6ba42fbaae30223843aa5d.rSnrv6e2i5ev.html?cb=636535384512240084&clickpixel=%2F%2Ftracker.bannerflow.co
m%2Fapi%2Ftr%2Fclick%3Fdata%3D%257B%2522account%2522%253A%2522shutterstock%2522%252C%2522brand%2522%253A%2522589873bd5
a4e8749bce403ff%2522%252C%2522placement%2522%253A%25225a787825e314e03f581fcc26%2522%252C%2522ad%2522%253A%25225a6ba42f
baae30223843aa5e%2522%252C%2522bannerset%2522%253A%25225a6ba42cbaae30223843aa4b%2522%252C%2522banner%2522%253A%2522
5a6ba42fbaae30223843aa5d%2522%252C%2522cb%2522%253A705%252C%2522spotIndexes%2522%253A0%252C%2522bannerIds%2522%253A%
25225a6ba42fbaae30223843aa5d%2522%257D&targeturl=https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%3Fxai%3DAKAOjsuUmoKWsv3P
ME62aS6_LAzA4q6T3r10q4yWvXLqKsiy19Sjo4OugQgw0mC25PCu1RPPeY_rGRbQ0fnK0Y2U0KVVgeaj47dw5_veo2-8yST69ssznzXYNn_FIOoin-9hv7oGl5
DsVT7uSPxf7ReibwMWg3IaLYEoIt77q9xEqJS4FYfBoF2SJpqSYA0KIPUCme3N2xgVHUnsy_dnWI6iJOGQKL76Xm8BocKmXKxXOD6mYQpfzWnY2Cjbh4thHf
AetosE7TLpBeqjNZtMxZ2ISVpGotZfQT9GRDYdnd5ETQrFXckOX0cg7lAvrJO7s_3Xg3irynruBd5Jj55ByYTnw4RdToWxdCC9t1ZpK35Pi6RKiZSYwUiEA8yZgt_H
6vCWOenrLCYJVlVeyx5XHnmE7Mp8XVPkRRuxvLw3BKRi4vrZIMWZsT5886XJXmlKG8b2LQDT9EXt_-oi1ZnTOuE2kC9wHuJNauj_Lv_3B3QpDQkR70Z2CIKr
81Bg4T-lFB_39d58c3U9lIPyKhNNh6pa0vOg1niG7jDob0xXY6QOH-6sNLq8mM_dxv0C2VrIFNNBvy__sqlp5Ywe5wfOs2A_p3l_i1gl9igfgkfdQ26BNVHPkXSsBJ
4svQZDb4p1UDdWAziZ4L4CD5iCpt3NHCftHurufLbDfd7z0APxfVVESKGam6KNc-xDx3K3FTuEUlFAm1iZCBop72BQ21NPU0j4hK2Jgf2p9Ne1SmrBsRDEuK
TNmjHF33WpWWtciG76AJj0LS0emfh_lkc8w298hozNcAWHx2iQA-zTgRkx3JSacELAKg_lI1aokNmEJVBoIh1GHkPaeuXyWzW79Vg9qgo3WHDrgyjsiJkn2-4gw
lPjtsdWeomZzrTBO9EERCQjInzGrOTF8-dmSDZx9wjU8WF5dysLB_9IE9_uONvow-hNiapS-wJOaEKPSw%26sig%3DCg0ArKJSzO6_E0GhRtBLEAE%26urlfi
x%3D1%26rm_eid%3D4134037%26adurl%3Dhttps%253A%252F%252Fwww.shutterstock.com%253Fpl%253DGDNCAIM-lggeneric%2526cr%253Dgeneri
c%2526utm_source%253Dadwords%2526utm_campaign%253Dimage_ca_lggeneric%2526utm_term%253D1_topicsmallbusiness-gdn%2526utm_cont
ent%253Dgeneric_print_en_html5_diederick%2526utm_medium%253Dacq_display%2526dclid%253D%2525edclid!&targetwindow=_blank has a request
size of 4.6KiB
Request URL: 2.0KiB
Cookies: 0B
Referer Url: 148B
Other: 2.4KiB
https://saxp.zedo.com/asw/fmg.json?g=%7B%22tagProp%22%3A%7B%22tmy%22%3A%22%22%2C%22geo%22%3A%22%22%2C%22charset%22%3A
%22%22%7D%2C%22pageProp%22%3A%7B%22pageUrl%22%3A%22https%253A%252F%252Fwww.girlsaskguys.com%252Ftrending-news%252Fq21
25533-would-you-use-the-bitcoin-to-pay-your-bills%22%2C%22referrer%22%3A%22%22%7D%2C%22placements%22%3A%5B%7B%22id%22%3A%223
72688_1%22%2C%22network%22%3A%223787%22%2C%22publisher%22%3A%221%22%2C%22channel%22%3A%221%22%2C%22dimension%22
%3A%2285%22%2C%22width%22%3A%22640%22%2C%22height%22%3A%22480%22%2C%22renderers%22%3A%5B%7B%22name%22%3A%22In
article%22%2C%22capability%22%3A%7B%7D%2C%22behaviour%22%3A%7B%22cssSelector%22%3A%5B%22div%20class%20question-details-full%
20*%22%5D%2C%22AutoCloseVideo%22%3A%5B%221%22%5D%2C%22removeReplayStrip%22%3A%5B%221%22%5D%2C%22ClicksOnlyOnAd%22
%3A%5B%221%22%5D%2C%22parallelism%22%3A%5B%221%22%5D%2C%22maxParallelCalls%22%3A%5B%2216%22%5D%2C%22maxParallelis
mtriggered%22%3A%5B%229%22%5D%2C%22ptimeout%22%3A%5B%223%22%5D%2C%22debugToken%22%3A%5B%2221aeQSAt%257C5049138
641941%22%5D%2C%22NoLB%22%3A%5B%220%22%2C%221%22%5D%2C%22SoundOnload%22%3A%5B%220%22%5D%2C%22fullscreenIcon%
22%3A%5B%220%22%5D%2C%22delaycloseButtonBy%22%3A%5B%223%22%5D%2C%22showDisplayAdsByZINCHeader%22%3A%5B%22true%22%
5D%2C%22pauseVideoOffview%22%3A%5B%220%22%5D%2C%22soundIcon%22%3A%5B%220%22%5D%2C%22removeClose%22%3A%5B%220%
22%5D%2C%22noAnimation%22%3A%5B%220%22%5D%2C%22LBFirst%22%3A%5B%220%22%5D%2C%22maxInarticleWidth%22%3A%5B%22640
%22%5D%2C%22videoAdPosition%22%3A%5B%22preroll%22%2C%22midroll%22%2C%22outstream%22%5D%2C%22AddSpaceBelow%22%3A%5B
%220%22%5D%2C%22AddSpaceAbove%22%3A%5B%220%22%5D%2C%22LBOpen%22%3A%5B%220%22%5D%2C%22LBPosition%22%3A%5B%2
20%22%5D%2C%22LBOffset%22%3A%5B%220%22%5D%2C%22LBMouseover%22%3A%5B%220%22%5D%2C%22LBMobile%22%3A%5B%220%22

Analyze your site at https://gtmetrix.com Page 15 of 59


PageSpeed Recommendations

%5D%2C%22DisableCookieSync%22%3A%5B%221%22%5D%2C%22scrollTrigger%22%3A%5B%22-1%22%5D%2C%22backfillOnComplete%22%3A
%5B%22true%22%5D%2C%22autoplayContent%22%3A%5B%220%22%5D%2C%22ThumbnailStrip%22%3A%5B%22false%22%5D%2C%22CTA%22%
3A%5B%22Read%20More%22%2C%22Learn%20More%22%2C%22Know%20More%22%2C%22Buy%20Now%22%2C%22Book%20Test%22%5D%7D
%7D%5D%2C%22keyword%22%3A%22%22%2C%22multipleCustomeValues%22%3A%22%22%2C%22customTargeting%22%3A%22%5Epb_bidder%
3Anone%22%2C%22thirdPartyClickURL%22%3A%22https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%3Fxai%3DAKAOjsuQpbLAfRAFT_UIadq
AWtnYtHVod3mGujt2Bwj2eSMZBJLhBZTmY8ROTRAFtncCmWmwYryQpfklSy6dVikDY5Lw5RdOGjr2v-wKMJ2H1Vu8IZ_gKzrWjwFXMwT-bLzEmG0MQucybeq
cTZ8ZFpQx-y0BzF91QkCHIEJuy17oZpblY8_L7_XHzlsGe_G1r_Mi0YN6i1VmqHuXnxWpqzf_g815ExjAaYGT3ZGXVJQsRoK1LZVJIee-cs8tRutlXockJwn2IVJBM
B1G9OS54pl56b0H%26sig%3DCg0ArKJSzBin1vDJhnsbEAE%26urlfix%3D1%26adurl%3D%22%2C%22thirdPartyImprURL%22%3A%22https%3A%2F%2
Fsecurepubads.g.doubleclick.net%2Fpcs%2Fview%3Fxai%3DAKAOjsuo9uQE_UbRr58j9Mi-Yg_Ki8Og0ylcTCXLQ6UPvA8TEYJe9AccNwVQSkHzavKXUIhHZ
wHWdtdj8mLvYNPB02QqrR4laG_E6A8aV1UuqjdVJ-kh0CRWPHRv0n7S_TTRUfvDuhOBKdUQkv0fwcqiO84ux_rZCea_MM3_yyob_HkS-T7b7mJ5Ea5m3--ZX
n1uVW7SHM5CXHWfKN-FzvaE_geNCgRnkh1ySbAErX8Uam2VGxUyakgGYUSV0Ety-9X9UntQ0V-F4FuB2Kc8TZWga2dqhVg1%26sig%3DCg0ArKJSzAZpWj
LgkBi9EAE%26urlfix%3D1%26adurl%3D%22%2C%22maxGuranteed%22%3A%221%22%2C%22maxNonGuranteed%22%3A%2216%22%2C%22isLega
cyParallelReq%22%3A%221%22%2C%22formatWidth%22%3A%22%5BFWIDTH%5D%22%2C%22formatHeight%22%3A%22%5BFHEIGHT%5D%22%7
D%5D%2C%22masterCapability%22%3A%7B%22cookieWriting%22%3Atrue%7D%7D has a request size of 3.7KiB
Request URL: 3.3KiB
Cookies: 35B
Referer Url: 95B
Other: 291B
https://embed.bannerflow.com/5a787825e314e03f581fcc26?targetwindow=_blank&targeturl=https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%
3Fxai%3DAKAOjsuUmoKWsv3PME62aS6_LAzA4q6T3r10q4yWvXLqKsiy19Sjo4OugQgw0mC25PCu1RPPeY_rGRbQ0fnK0Y2U0KVVgeaj47dw5_veo2-8yST
69ssznzXYNn_FIOoin-9hv7oGl5DsVT7uSPxf7ReibwMWg3IaLYEoIt77q9xEqJS4FYfBoF2SJpqSYA0KIPUCme3N2xgVHUnsy_dnWI6iJOGQKL76Xm8BocKmX
KxXOD6mYQpfzWnY2Cjbh4thHfAetosE7TLpBeqjNZtMxZ2ISVpGotZfQT9GRDYdnd5ETQrFXckOX0cg7lAvrJO7s_3Xg3irynruBd5Jj55ByYTnw4RdToWxdCC9t1Z
pK35Pi6RKiZSYwUiEA8yZgt_H6vCWOenrLCYJVlVeyx5XHnmE7Mp8XVPkRRuxvLw3BKRi4vrZIMWZsT5886XJXmlKG8b2LQDT9EXt_-oi1ZnTOuE2kC9wHuJN
auj_Lv_3B3QpDQkR70Z2CIKr81Bg4T-lFB_39d58c3U9lIPyKhNNh6pa0vOg1niG7jDob0xXY6QOH-6sNLq8mM_dxv0C2VrIFNNBvy__sqlp5Ywe5wfOs2A_p3l_i
1gl9igfgkfdQ26BNVHPkXSsBJ4svQZDb4p1UDdWAziZ4L4CD5iCpt3NHCftHurufLbDfd7z0APxfVVESKGam6KNc-xDx3K3FTuEUlFAm1iZCBop72BQ21NPU0j4
hK2Jgf2p9Ne1SmrBsRDEuKTNmjHF33WpWWtciG76AJj0LS0emfh_lkc8w298hozNcAWHx2iQA-zTgRkx3JSacELAKg_lI1aokNmEJVBoIh1GHkPaeuXyWzW7
9Vg9qgo3WHDrgyjsiJkn2-4gwlPjtsdWeomZzrTBO9EERCQjInzGrOTF8-dmSDZx9wjU8WF5dysLB_9IE9_uONvow-hNiapS-wJOaEKPSw%26sig%3DCg0ArK
JSzO6_E0GhRtBLEAE%26urlfix%3D1%26rm_eid%3D4134037%26adurl%3Dhttps%253A%252F%252Fwww.shutterstock.com%253Fpl%253DGDNCAIM-l
ggeneric%2526cr%253Dgeneric%2526utm_source%253Dadwords%2526utm_campaign%253Dimage_ca_lggeneric%2526utm_term%253D1_topicsmal
lbusiness-gdn%2526utm_content%253Dgeneric_print_en_html5_diederick%2526utm_medium%253Dacq_display%2526dclid%253D%2525edclid! has a
request size of 3.3KiB
Request URL: 1.4KiB
Cookies: 0B
Referer Url: 148B
Other: 1.7KiB
https://resources.host.bannerflow.com/shutterstock-white-print-ee8ce1a0-d960-4b06-921e-301883159cb5-C8o1D.png?v=636233660500000000 has a
request size of 2.6KiB
Request URL: 130B
Cookies: 40B (note that this is a static resource, and should be served from a cookieless domain)
Referer Url: 2.0KiB
Other: 438B
https://resources.host.bannerflow.com/background-300x600-e476e3ae-d435-49eb-b881-8c3595b6ebfc-12Co258.png?v=636526008470000000 has a
request size of 2.6KiB
Request URL: 126B
Cookies: 40B (note that this is a static resource, and should be served from a cookieless domain)
Referer Url: 2.0KiB
Other: 434B
https://resources.host.bannerflow.com/laptop-300x600-253098d8-7fee-4e89-8515-f207ee2f12bf-122o120.png?v=636526008880000000 has a request size
of 2.6KiB
Request URL: 122B
Cookies: 40B (note that this is a static resource, and should be served from a cookieless domain)
Referer Url: 2.0KiB
Other: 430B
https://resources.host.bannerflow.com/hand2-300x600-1499395a-e1d0-4a41-8c98-d5d935c63aa1-FBo198.png?v=636526008830000000 has a request
size of 2.6KiB
Request URL: 120B
Cookies: 40B (note that this is a static resource, and should be served from a cookieless domain)
Referer Url: 2.0KiB
Other: 428B
https://images.host.bannerflow.com/5a6ba42fbaae30223843aa5d.rSnrv6e2i5ev.jpg?cb=636535384508927248 has a request size of 2.6KiB
Request URL: 98B
Cookies: 40B (note that this is a static resource, and should be served from a cookieless domain)
Referer Url: 2.0KiB
Other: 406B
https://resources.host.bannerflow.com/frank-regular-a4b10594-fa46-44f6-8a5f-6f6fc24d4580--8096179116959798869-subset.woff has a request size of
2.5KiB
Request URL: 121B
Cookies: 0B
Referer Url: 2.0KiB
Other: 428B
https://resources.host.bannerflow.com/frank-bold-0829f048-988c-4019-9967-da6110d19f3c--345607744452567341-subset.woff has a request size of
2.5KiB

Analyze your site at https://gtmetrix.com Page 16 of 59


PageSpeed Recommendations

Request URL: 117B


Cookies: 0B
Referer Url: 2.0KiB
Other: 424B
https://googleads.g.doubleclick.net/pagead/adview?ai=CqmhEI4D6WvarJsv3-QOjlJfoB6nG6dhR45ex_6EHwI23ARABIIXYsS5gfaAB6NmG2APIAQmoAwHIA8
sEqgTkAU_QzfqkzHeLuSjI_DTTo6KZ652Iu3oNGBmU19mFz5Co7ijcrovKdIhth37511igsdHjE3igZkGMusZrUxe0j8z4JFsLpPMSdirjkEcXp0mZtac0QemtVUYk3
VnSjCfo4JnUgzEGy0xwHv7L-o64rRN_1QEIxM90TBtQ_HGVme8X0GgnvxhUNomSPdO-pVl-IqE84SdsiogvppxRzNo-NjT1YTwTjnSE_zgXwNrHLypmeX9CFW9f
q-pjQ8pIbHhFy3Ah7nJSE5PrOuHxXkOKIEZPfYW76vPq_jyko1GFdrnOVhT3NMAEgqXN7s8BkgUECAQYAZIFBAgFGASgBi6AB4Cm-SeoB47OG6gHjc0bqAfVy
RuoB_fMG6gH2csbqAemvhvYBwDyBwQQpLIC0ggHCIBhEAEYAoAKAdgTDA&sigh=1Ka9Ld8x2QY&template_id=484 has a request size of 2.5KiB
Request URL: 593B
Cookies: 62B
Referer Url: 1015B
Other: 901B
https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-2045593450925494&output=html&h=250&slotname=1623751017&adk=3149169305&adf=
3279755404&w=300&loeid=10583696&guci=2.2.0.0.2.2&format=300x250&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-
would-you-use-the-bitcoin-to-pay-your-bills&ea=0&flash=0&avail_w=300&wgl=1&dt=1526366242586&bpp=40&bdt=2140&fdt=41&idt=985&shv=r20180509
&cbv=r20180504&saldr=aa&correlator=4874975820298&frm=24&ga_vid=2018610630.1526366244&ga_sid=1526366244&ga_hid=489908666&ga_fc=0&
pv=2&iag=14&icsg=2&nhd=2&dssz=3&mdo=0&mso=0&u_tz=-420&u_his=3&u_java=0&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=24&u_nplug=
4&u_nmime=5&adx=0&ady=0&biw=-12245933&bih=-12245933&isw=300&ish=250&ifk=4241672993&scr_x=-12245933&scr_y=-12245933&eid=10593696
%2C21061122%2C21061782%2C62710015%2C62710017%2C21061995%2C188690903&oid=3&rx=0&eae=2&brdim=0%2C0%2C0%2C0%2C1367%2
C0%2C1366%2C857%2C300%2C250&vis=1&rsz=%7C%7CceE%7C&abl=NS&ppjl=u&pfx=0&fu=8208&bc=5&osw_key=2988443705&ifi=1&fsb=1&dtd=10
08 has a request size of 2.5KiB
Request URL: 1015B
Cookies: 62B
Referer Url: 70B
Other: 1.4KiB
https://scripts.host.bannerflow.com/1.0.7/bf.min.js has a request size of 2.4KiB
Request URL: 51B
Cookies: 40B (note that this is a static resource, and should be served from a cookieless domain)
Referer Url: 2.0KiB
Other: 323B
https://googleads4.g.doubleclick.net/pcs/view?xai=AKAOjss93rrS9eWXNQtwwgjS8FYSsz9jxwGZtXpynH-nMznMybybwamNKz4fX-nWAuNO0FJRaP1HcFRSSc
fhLfLIE-J2tVwc1K2K49dAigUJmuU5f0bd1Fj7YErBemgKbVpZGEiZVM8uMSmx_ed5D2w0JkOe8hDi1iqPqcA-ZPa4dlptQhfEA980Jp-NLexv7Ru4x1HuG6Tmfg-
75hiVM6N6HRp3Zl3XtbxCdaU2D0FxEo1kkvZHwdHg_JFqQG_tN9fFNVTmt2KixmGzP_hVx9_KVHL2xZ06fCaeGGYlbsfP_CgwMB35uWdkQidO5J3TP0VKivms
bsyGaHrpzAgxwl7iqyOtmod8iHpgStJ-9wmUpg8CSuIlzGmdzN7pqiTUDH9bpHggpoL1DGLXbsp1O1KjLxEwFaTGryieOYWAsCrnm3hrHQS8HirPoS3KZyFF6i5
x3w6Da3rWg5CzP9mjyBe8MfxC1vKKpScdUFHE1ZpZLGyYMsSAV4yje9fr3k95NFM_Tv0a2tlW4MxbqfQLZRzSCmUfeXqBR9i8MbeMu5sk-eQWXpiLzZ6uhh2QE
FOz0w9pW0HWouCYJuA6TJdzXb7dBoMRUMPYiQCdWbYpbY3BFLhxked2JR9OC5I9OysujL1blT9e3HRftihBO6QnnvtaRNr6epU9QqrKylSV2bA4AiOQxcsldVb
HKl35Zo5-gDxZItnzvW4NM8N2Q7gGEi_YjO3fic51yYsT-HoHFugYQ1Z9Aw8MrGMuQ7scCiXaMjIWT4pbPFSeP4dJzDeiMYzINhaZBqn7jHfIDx16U0AwKZL1mS1
4-CkvdT0pXjMvdubQvAUu-eaosLuup-wMGg5uRysda8sqEmbJ39GZH_iQPO-mc0Qh69brrnkdhdUZmBB12okbKG1-KNcmjB0&sig=Cg0ArKJSzL58Ob_VVyzjE
AE&urlfix=1&adurl= has a request size of 2.4KiB
Request URL: 1009B
Cookies: 62B
Referer Url: 70B
Other: 1.3KiB
https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-2045593450925494&output=html&h=90&slotname=7921566055&adk=2170461093&adf=3
279755405&w=728&loeid=10583696&guci=2.2.0.0.2.2&format=728x90&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-w
ould-you-use-the-bitcoin-to-pay-your-bills&ea=0&flash=0&wgl=1&dt=1526366242483&bpp=49&bdt=2052&fdt=55&idt=937&shv=r20180509&cbv=r2018050
4&saldr=aa&correlator=4281922991748&frm=24&ga_vid=699727079.1526366243&ga_sid=1526366243&ga_hid=1332454947&ga_fc=0&pv=2&iag=14&ic
sg=2&nhd=2&dssz=3&mdo=0&mso=0&u_tz=-420&u_his=3&u_java=0&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=24&u_nplug=4&u_nmime=5&
adx=0&ady=0&biw=-12245933&bih=-12245933&isw=728&ish=90&ifk=249314431&scr_x=-12245933&scr_y=-12245933&eid=10593696%2C21061122%2
C21061782%2C21061995&oid=3&rx=0&eae=2&brdim=0%2C0%2C0%2C0%2C1367%2C0%2C1366%2C857%2C728%2C90&vis=1&rsz=%7C%7CceE%
7C&abl=NS&ppjl=u&pfx=0&fu=8208&bc=5&osw_key=3665728787&ifi=1&fsb=1&dtd=1009 has a request size of 2.4KiB
Request URL: 964B
Cookies: 62B
Referer Url: 70B
Other: 1.3KiB
https://googleads4.g.doubleclick.net/pcs/view?xai=AKAOjsuP9tBl-71_CbbvqrEFc1ch95bOWUPAYXU_msyB71fUoglegvyBI-sQLi4ZRhKTNditHvCkIpZrJilEST
DcGSPEmEu52nUNAqUi3wZT4cLuEhqX-NmtJYGGjc6ESzCBf1ToIO6UD6e60lYLoGQRyWpYF4XXpPnkYitbXuFHzR3NNENE2Nrr2QQhDO0LAjKHRwxg6-hd
K3iAECx1UaAKVfJkrQnhEc5WyTbFRBqZOzPlP71ND_BHZZG2FcNVG1B9a5WylikpWj3fEDCTYnJWh36tg9_lGZ8ePgKi86IdjVvlsq7AiDbLTG-lRxGgyN5JHbHr
xowTNVTrd0B7JVJWDQRoIX5Q5_mZbsBsa9bFV5K2OJngDJ4seWsgyKqEOmTXVQ1sVRuCe5KoNg2BRlHrUAacNjsylcatB-EVvB2tqZFCgJxNjkzpEg8gAfE15
jVg0zD3xmEP-fOkwB46XuE2Cj9lUlTUrCx4LeAasvwKeXOAOPVEWGEGFTb7ZnA3_4avk_KZYehHcnPmxeDKHxAzcky1dLg1OU2AFfuW6b7nWx_WoKSfWrBv
Eeczd239tnODFeI5vSbRCPADrRF_a6II_dnbcRfkFUFgoiTnUzYX8FUFqykKSeySNjaoxWtkD9ps30v6PvcIZrUVY0RBW128p8dvBr9rNXT2Yagtr8tJuZwszPmkqQ
F7MPLO-P7WfB1b71GMbHZKfW2krwWk87OboTsfnzuzrqOLz7296eayonjqind1gSvl_is5dycAe5z9lCUIMv0ywjUoz0JU8PmLbPB9a-QJ2OK91ICsDdM81jPVoM
J5bh8LO0Pu3J0uYfbwB56LUe3rX93mw7VGha3Kx2Z4bcy-rruMrnADtQ5X_oA30W-Ksa_lSrZjBkX2DEC-Wz-BIg&sig=Cg0ArKJSzI-xQxl5nsz7EAE&urlfix=1&ad
url= has a request size of 2.4KiB
Request URL: 1000B
Cookies: 62B
Referer Url: 70B
Other: 1.3KiB
https://loadus.exelator.com/load//net.php?n=PGltZyB3aWR0aD0iMSIgYWx0PSJFeGVsYXRlRGF0YSIgc3R5bGU9ImRpc3BsYXk6bm9uZSIgc3JjPSJodHRwcz
ovL21hdGNoLmFkc3J2ci5vcmcvdHJhY2svY21mL2dlbmVyaWM%2FdHRkX3BpZD1leGVsYXRlIiBoZWlnaHQ9IjEiPjwvaW1nPjxpbWcgd2lkdGg9IjEiIGFsdD0i
RXhlbGF0ZURhdGEiIHN0eWxlPSJkaXNwbGF5Om5vbmUiIHNyYz0iaHR0cHM6Ly9jbS5nLmRvdWJsZWNsaWNrLm5ldC9waXhlbD9nb29nbGVfbmlkPWV4Z

Analyze your site at https://gtmetrix.com Page 17 of 59


PageSpeed Recommendations

WxhdGUmZ29vZ2xlX2NtJmdvb2dsZV9zYyIgaGVpZ2h0PSIxIj48L2ltZz48aW1nIHdpZHRoPSIxIiBhbHQ9IkV4ZWxhdGVEYXRhIiBzdHlsZT0iZGlzcGxheTpub25lIi
BzcmM9Imh0dHBzOi8vYWEuYWdrbi5jb20vYWRzY29yZXMvZy5waXhlbD9zaWQ9OTIxMTU3ODYwOCZfZz05MDYmZXg9NTZhZGE2OWM5ZWI4Mzg2NWQxOD
JjZWJkZmE2OWMyODYiIGhlaWdodD0iMSI%2BPC9pbWc%2BaHR0cHM6Ly9zeW5jLmFscGhvbnNvLnR2L3N5bmM%2Fc3JjaWQ9MjAwJnB1aWQ9NTZhZG
E2OWM5ZWI4Mzg2NWQxODJjZWJkZmE2OWMyODY%3D&h=5e998ea83c17f6ec866445aeff81a992 has a request size of 2.2KiB
Request URL: 805B
Cookies: 216B
Referer Url: 95B
Other: 1.2KiB
https://px.moatads.com/pixel.gif?e=28&q=0&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&b
q=8&g=8&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=5366&f=0&j=&o=3&t=1526366252907&de=502137926150&cu=1526366252907&m=
13969&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=7
68&qh=1366&qg=857&lk=5366&lb=7005&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&aj=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&dj=
0&aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=1&su=1&of=1&oz=1&bu=13719&cd=13719&ah=13719&am=13719&dq=1
3719&dr=13719&ds=13719&dt=13719&zx=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=17.076&dh=17076&hc=1&er=0&
es=0&gs=0>=0&eu=0&ev=0&et=1&dp=0&dz=1&ea=1&du=85&eb=1&ec=15801&fk=1&ef=0&eg=0&eh=0&ei=0&ej=0&rf=0&re=0&cl=0&at=0&d=57d325e276
a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859
375382&zMoatOrigSlicer1=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&
ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=1365516659&cs=0 has a request size of 2.1KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 95B
Other: 281B
https://px.moatads.com/pixel.gif?e=21&q=0&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&b
q=8&g=9&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=5366&f=0&j=&o=3&t=1526366252907&de=502137926150&cu=1526366252907&m=
13974&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=7
68&qh=1366&qg=857&lk=5366&lb=7005&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&aj=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&dj=
0&aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=1&su=1&of=1&oz=1&bu=13719&cd=13719&ah=13719&am=13719&dq=1
3719&dr=13719&ds=13719&dt=13719&zx=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=17.076&dh=17076&hc=1&er=0&
es=0&gs=0>=0&eu=0&ev=0&et=1&dp=0&dz=1&ea=1&du=85&eb=1&ec=15801&fk=1&ef=0&eg=0&eh=0&ei=0&ej=0&rf=0&re=0&cl=0&at=0&d=57d325e276
a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859
375382&zMoatOrigSlicer1=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&
ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=871876679&cs=0 has a request size of 2.1KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 95B
Other: 281B
https://px.moatads.com/pixel.gif?e=29&q=4&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&b
q=8&g=7&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=5366&f=0&j=&o=3&t=1526366252907&de=502137926150&cu=1526366252907&m=
13967&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=7
68&qh=1366&qg=857&lk=5366&lb=7005&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&aj=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&dj=
0&aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=1&su=1&of=1&oz=1&bu=13719&cd=9916&ah=13719&am=9916&dq=137
19&dr=9916&ds=13719&dt=9916&zx=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=17.076&dh=17076&hc=1&er=0&es=0
&gs=0>=0&eu=0&ev=0&et=1&dp=0&dz=1&du=85&eb=1&ec=15801&fk=1&ef=0&eg=0&eh=0&ei=0&ej=0&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a
05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859375382&zM
oatOrigSlicer1=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoat
JS=0%3A1%3A1366%3A857%3A0&fs=143783&na=937436755&cs=0 has a request size of 2.1KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 95B
Other: 281B
https://px.moatads.com/pixel.gif?e=29&q=3&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&b
q=8&g=6&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=5366&f=0&j=&o=3&t=1526366252907&de=502137926150&cu=1526366252907&m=

Analyze your site at https://gtmetrix.com Page 18 of 59


PageSpeed Recommendations

10060&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=7
68&qh=1366&qg=857&lk=5366&lb=7005&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&aj=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&dj=
0&aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=1&su=1&of=1&oz=1&bu=9916&cd=7170&ah=9916&am=7170&dq=9916
&dr=7170&ds=9916&dt=7170&zx=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=17.076&dh=17076&hc=1&er=0&es=0&gs
=0>=0&eu=0&ev=0&et=1&dp=0&dz=1&du=85&eb=1&ec=15801&fk=1&ef=0&eg=0&eh=0&ei=0&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00%3
Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrigSli
cer1=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A
1%3A1366%3A857%3A0&fs=143783&na=1524508538&cs=0 has a request size of 2.1KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 95B
Other: 281B
https://px.moatads.com/pixel.gif?e=29&q=2&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&b
q=8&g=4&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=5366&f=0&j=&o=3&t=1526366252907&de=502137926150&cu=1526366252907&m=
7248&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=76
8&qh=1366&qg=857&lk=5366&lb=7005&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&aj=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&dj=0
&aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=1&su=1&of=1&oz=1&bu=7170&cd=4338&ah=7170&am=4338&dq=7170&
dr=4338&ds=7170&dt=4338&zx=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=17.076&dh=17076&hc=1&er=0&es=0&gs=
0>=0&eu=0&ev=0&et=1&dp=0&dz=1&du=85&eb=1&ec=15801&fk=1&ef=0&eg=0&eh=0&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefi
ned%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrigSlicer1=43
1A4B9F-8A65-454E-8A8F-CC1C771A5E25&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A13
66%3A857%3A0&fs=143783&na=1872411638&cs=0 has a request size of 2.1KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 95B
Other: 281B
https://px.moatads.com/pixel.gif?e=9&q=1&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(%
2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3De
u!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD
%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0l
Bg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFe
BCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&bq
=8&g=5&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=5366&f=0&j=&o=3&t=1526366252907&de=502137926150&cu=1526366252907&m=7
252&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=768
&qh=1366&qg=857&lk=5366&lb=7005&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&aj=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&dj=0&
aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=1&su=1&of=1&oz=1&bu=7170&cd=7170&ah=7170&am=7170&dq=7170&dr
=7170&ds=7170&dt=7170&zx=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=17.076&dh=17076&hc=1&er=0&es=0&gs=0>
=0&eu=0&ev=0&et=1&dp=0&dz=1&du=85&eb=1&ec=15801&fk=1&ef=0&eg=0&eh=0&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefine
d%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrigSlicer1=431A
4B9F-8A65-454E-8A8F-CC1C771A5E25&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366
%3A857%3A0&fs=143783&na=1022144827&cs=0 has a request size of 2.1KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 95B
Other: 281B
https://pubads.g.doubleclick.net/gampad/ads?sz=640x480%7C400x300&iu=%2F281896196%2FGirlsAskGuys_Desktop_Video_Preroll&gdfp_req=1&env=v
p&output=xml_vast3&unviewed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoi
n-to-pay-your-bills&description_url=girlsaskguys.com&correlator=3437760361160900&cust_params=XperLevel%3D%26qkeyword%3D%26okeyword%3D
%26utm_source%3DNone%26utm_medium%3DNone%26utm_campaign%3DNone%26PostInfo%3Dq2125533%26Gender%3DUnknownGender%26Ag
e%3DUnknownAge%26Mobile%3DMobileNo%26PageType%3DQuestion%26BrandId%3D%26MarkedAs%3DFalse%26ShowAllAds%3DYes%26Topics%
3Dtrending-news&mpt=playwire&mpv=3.2&sdkv=h.3.208.0&sdki=3c0d&scor=4386250722938162&adk=3984514231&u_so=l&osd=2&frm=2&sdr=1&is_a
mp=0&adsid=NT&ged=ve4_td7_tt0_pd7_la7000_er0.0.154.300_vi0.0.228.405_vp100_eb24427 has a request size of 2.1KiB
Request URL: 843B
Cookies: 62B
Referer Url: 59B
Other: 1.1KiB
https://px.moatads.com/pixel.gif?e=29&q=1&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&b
q=8&g=3&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=5366&f=0&j=&o=3&t=1526366252907&de=502137926150&cu=1526366252907&m=
4503&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=76
8&qh=1366&qg=857&lk=5366&lb=7005&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&aj=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&dj=0
&aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=1&su=1&of=1&oz=1&bu=4338&cd=1216&ah=4338&am=1216&dq=4338&
dr=1216&ds=4338&dt=1216&zx=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=17.076&hc=0&er=0&es=0&gs=0>=0&eu=0

Analyze your site at https://gtmetrix.com Page 19 of 59


PageSpeed Recommendations

&ev=0&et=1&dp=0&dz=1&du=85&eb=1&ec=15801&fk=1&ef=0&eg=0&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefined%3Aundefined
%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrigSlicer1=431A4B9F-8A65-454
E-8A8F-CC1C771A5E25&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&f
s=143783&na=1050795786&cs=0 has a request size of 2.1KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 95B
Other: 281B
https://px.moatads.com/pixel.gif?e=25&q=2&hp=1&kq=1&lo=0&qs=1&ak=https%3A%2F%2Fs0.2mdn.net%2F4507622%2F1522960082624%2FHTML5_30
0x250_Generic_EN.html&i=INITIATIVE_US_RBC_DCM1&ud=0&ue=0&uu=0&qm=420&qn=(%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChX
bvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3Deu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%
5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=00000
1100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2k
B3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFeBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCD
CCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&bq=0&g=3&hq=0&hs=0&hu=0&hr=0&ht=1&h=250&w=300&zG
SRC=1&gu=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&f=1&j=https%3A%2F%
2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&lp=https%3A%2F%2Fwww.girlsaskguys.com&o=3
&t=1526366242816&de=824247734094&cu=1526366242816&m=16696&ar=4c90a2e-clean&cb=0&ll=3&lm=1&ln=1&r=0&dl=0&dm=1000&nh=1&tw=null&
td=1&qa=1367&qb=858&qi=1367&qj=858&qf=300&qe=250&qh=1366&qg=857&lk=undefined&lb=255&le=1&gm=1&io=1&fa=1&ct=undefined&aa=0&ad=0
&cn=0&gk=0&gl=0&cq=0&ic=0&im=0&in=0&pd=0&em=0&en=0&st=1&su=1&of=1&oz=1&bu=15618&cd=5661&ah=15618&am=5661&rf=0&re=1&wb=1&cl=
0&at=0&d=20969168%3A1310366%3A218534727%3A99952620&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=initiativeusrbcdcm920745044517&zM
oatOrigSlicer1=N%2FA&zMoatOrigSlicer2=N%2FA&ab=2&ac=1&fd=1&kt=sframe&it=500&oq=0&ot=0&zMoatJS=0%3A0%3A1366%3A857%3A0&fs=143783
&na=1127740707&cs=0 has a request size of 2.0KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 70B
Other: 281B
https://px.moatads.com/pixel.gif?e=9&q=0&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(%
2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3De
u!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD
%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0l
Bg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFe
BCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&bq
=8&g=2&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=5366&f=0&j=&o=3&t=1526366252907&de=502137926150&cu=1526366252907&m=1
279&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=768
&qh=1366&qg=857&lk=5366&lb=7005&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&aa=0&ad=0
&cn=0&gk=0&gl=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=0&su=1&of=1&oz=1&bu=1216&cd=69&ah=1216&am=69&dq=1216&dr=69&ds=1216&dt=69&z
x=0&fc=1&vm=1&vl=0&vt=0&vd=0&zMoatSRE=0.2601429294918688&zMoatVSD=55&hc=0&er=0&es=0&gs=0>=0&eu=0&ev=0&et=1&dp=0&dz=1&du=85&e
b=1&ec=15801&fk=1&ef=0&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=g
irlsaskguys.com&bd=girlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrigSlicer1=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&zMoatOrigSlicer
2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=1755545456&cs=0 has a
request size of 2.0KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 95B
Other: 281B
https://px.moatads.com/pixel.gif?e=0&q=0&hp=1&kq=1&lo=0&qs=1&ak=https%3A%2F%2Fwww.girlsaskguys.com%2F%2Ftrending-news%2F-&i=AOLVIDI
BLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B
%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3Deu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jV
S2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkS
yp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBt
sWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFeBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8
DDBqBCKqeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=8&g=0&hq=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=5366&f=0&j=&o=3&t=1526366252
907&de=502137926150&cu=1526366252907&m=207&ar=4c90a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1
367&qb=858&qi=1367&qj=858&qf=1366&qe=768&qh=1366&qg=857&lk=5366&lb=7005&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&
pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&aa=0&ad=0&cn=0&gk=0&gl=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=0&su=1&of=1&oz=1&bu=69&cd=0&ah=69&a
m=0&dq=69&dr=0&ds=69&dt=0&zx=0&fc=1&vm=0&vl=0&vt=0&vd=0&zMoatSRE=0&zMoatVSD=0&hc=0&er=0&es=0&gs=0>=0&eu=0&ev=0&et=1&dp=0&dz=
1&eb=1&fk=1&rf=0&re=0&cl=0&at=0&d=57d325e276a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.c
om&bd=girlsaskguys.com&gw=aolvidiblecontent859375382&zMoatOrigSlicer1=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&zMoatOrigSlicer2=N%2FA&a
b=3&ac=1&fd=1&kt=strict&it=500&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=2135879771&cs=0 has a request size
of 2.0KiB
Request URL: 1.7KiB
Cookies: 0B
Referer Url: 95B
Other: 281B
https://px.moatads.com/pixel.gif?e=29&q=0&hp=1&kq=1&lo=0&tr=1&qs=1&ak=-&i=AOLVIDIBLE_VIDEOJS_CONTENT1&ud=0&ue=0&uu=0&qm=420&qn=(
%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3D
eu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2Fo
D%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W
0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOF
eBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=8&g=1&hq
=0&hs=0&hu=0&hr=0&ht=1&h=414&w=737&fy=158&gp=5366&f=0&j=&o=3&t=1526366252907&de=502137926150&cu=1526366252907&m=213&ar=4c9

Analyze your site at https://gtmetrix.com Page 20 of 59


PageSpeed Recommendations

0a2e-clean&cb=0&ll=3&lm=0&ln=0&r=0&dl=0&dm=1000&dn=89&gh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=1366&qe=768&qh=1366&q
g=857&lk=5366&lb=7005&le=1&gm=1&io=1&ct=undefined&as=0&ag=0&an=0&gf=0&gg=0&pg=0&pf=0&ib=1&cc=0&bw=0&bx=0&aa=0&ad=0&cn=0&gk=0
&gl=0&hj=0&pv=0&vk=1&el=1&em=0&en=0&st=0&su=1&of=1&oz=1&bu=69&cd=69&ah=69&am=69&dq=69&dr=69&ds=69&dt=69&zx=0&fc=1&vm=0&vl=0&
vt=0&vd=0&zMoatSRE=0&zMoatVSD=0&hc=0&er=0&es=0&gs=0>=0&eu=0&ev=0&et=1&dp=0&dz=1&du=85&eb=1&ec=15801&fk=1&ef=0&rf=0&re=0&cl=0&
at=0&d=57d325e276a6057ba4a05a00%3Aundefined%3Aundefined%3A5952b3519e45102b384dc50e&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=
aolvidiblecontent859375382&zMoatOrigSlicer1=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&zMoatOrigSlicer2=N%2FA&ab=3&ac=1&fd=1&kt=strict&it=50
0&fz=1&or=0&oq=0&ot=0&zMoatJS=0%3A1%3A1366%3A857%3A0&fs=143783&na=1262796135&cs=0 has a request size of 2.0KiB
Request URL: 1.6KiB
Cookies: 0B
Referer Url: 95B
Other: 281B
https://loadm.exelator.com/load/?p=204&g=001&bi=&j=0&google_gid=CAESELnVzEsUVTLfM5szrKIbKSk&google_cver=1 has a request size of 2.0KiB
Request URL: 105B
Cookies: 712B
Referer Url: 805B
Other: 413B
https://loadm.exelator.com/load/?p=204&g=460&buid=b6561484-3074-4ff3-a702-cd32d50bdd17&j=0 has a request size of 2.0KiB
Request URL: 90B
Cookies: 712B
Referer Url: 805B
Other: 398B
https://ads.adaptv.advertising.com/a/h/DfcEVqB9s2zYDWfVYbq1E7eFADkvZK0rfvfqU+JOwrE6MZJQBXT2g6Q62TNWKVw3?cb=14166514165709923&page
Url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&duration=55&id=5a7cc316cc9
12f2b46cda331&title=This+Is+the+Ultimate+Period+Survival+Kit&eov=eov&categories=pop%2Bculture&context=transId%3D2f10fb3b-99ff-43a7-9072-210a
c852c9f2%2CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2Cmv%
3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2C
at%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=737&a.sdk=O2&mnc
=&pi.sound=0&pi.sideviewInitiation=&spot_id=1&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&pi.autoInitiation=0&session_id=96c9ab94-e5cc-4aed-b
888-511ca9cd86d7&moatViewableOpportunity=0&p.vw.viewable=0&pi.sideview=0&mcc=&p.vw.viewableOpportunity=0&a.d.pageUrl=https%3A%2F%2Fww
w.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&p.vw.active=1&width=737&a.ip=204.187.14.71&adapView
ableOpportunity=0&height=415&pi.flashonpage=0&o2token=AAABY2KEjUTVWX2n3fAa1aQSZGxxbzC8RxSJSw%3D%3D has a request size of 1.9KiB
Request URL: 1.2KiB
Cookies: 209B
Referer Url: 95B
Other: 412B
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428844/1013/ADTECH;cfp=1;rndc=1526366252;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills;content_url=https%3A%2F%2Fconfig.play
wire.com%2F1020169%2Fvideos%2Fv2%2F5428844%2Fabr-non-hd.m3u8;media_id=5428844;title=How%20do%20you%20finally%20tell%20your%20bo
y%20crush%20you%20like%20him%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.0%20(X11%3B
%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.36;ip=__IP__;uni
queid=248908552890760;tags=__TAGS__;number=352564752680666;time=1526366253;headerbids=amazon;keywords=;categories=Entertainment;acao
=* has a request size of 1.9KiB
Request URL: 799B
Cookies: 31B
Referer Url: 70B
Other: 1.1KiB
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428844/1013/ADTECH;cfp=1;rndc=1526366253;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills;content_url=https%3A%2F%2Fconfig.play
wire.com%2F1020169%2Fvideos%2Fv2%2F5428844%2Fabr-non-hd.m3u8;media_id=5428844;title=How%20do%20you%20finally%20tell%20your%20bo
y%20crush%20you%20like%20him%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.0%20(X11%3B
%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.36;ip=__IP__;uni
queid=248908552890760;tags=__TAGS__;number=352564752680666;time=1526366253;headerbids=amazon;keywords=;categories=Entertainment;acao
=* has a request size of 1.9KiB
Request URL: 799B
Cookies: 31B
Referer Url: 70B
Other: 1.1KiB
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428844/1013/ADTECH;cfp=1;rndc=1526366262;cors=yes;width=405;height=228;referring_url=https%
3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills;content_url=https%3A%2F%2Fconfig.play
wire.com%2F1020169%2Fvideos%2Fv2%2F5428844%2Fabr-non-hd.m3u8;media_id=5428844;title=How%20do%20you%20finally%20tell%20your%20bo
y%20crush%20you%20like%20him%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.0%20(X11%3B
%20Linux%20x86_64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.36;ip=__IP__;uni
queid=248908552890760;tags=__TAGS__;number=697122080109755;time=1526366263;headerbids=amazon;keywords=;categories=Entertainment;acao
=* has a request size of 1.9KiB
Request URL: 799B
Cookies: 31B
Referer Url: 70B
Other: 1.1KiB
https://px.moatads.com/pixel.gif?e=0&q=0&hp=1&kq=1&lo=0&qs=1&ak=https%3A%2F%2Fs0.2mdn.net%2F4507622%2F1522960082624%2FHTML5_300
x250_Generic_EN.html&i=INITIATIVE_US_RBC_DCM1&ud=0&ue=0&uu=0&qm=420&qn=(%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbv
U37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3Deu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B
*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=00000110

Analyze your site at https://gtmetrix.com Page 21 of 59


PageSpeed Recommendations

0000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3
MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFeBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCC
DCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=0&g=0&hq=0&hs=0&hu=0&hr=0&ht=1&h=250&w=300&zGSRC=1&gu=https
%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&f=1&j=https%3A%2F%2Fwww.girlsaskg
uys.com&lp=https%3A%2F%2Fwww.girlsaskguys.com&o=3&t=1526366242816&de=824247734094&cu=1526366242816&m=283&ar=4c90a2e-clean&cb
=0&ll=3&lm=1&ln=1&r=0&dl=0&dm=1000&nh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=300&qe=250&qh=1366&qg=857&lk=undefined&lb
=255&le=1&gm=1&io=1&ct=undefined&aa=0&ad=0&cn=0&gk=0&gl=0&ic=0&im=0&in=0&pd=0&em=0&en=0&st=0&su=1&of=1&oz=1&bu=106&cd=0&ah=1
06&am=0&rf=0&re=1&wb=1&cl=0&at=0&d=20969168%3A1310366%3A218534727%3A99952620&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=initiat
iveusrbcdcm920745044517&zMoatOrigSlicer1=N%2FA&zMoatOrigSlicer2=N%2FA&ab=2&ac=1&fd=1&kt=sframe&it=500&oq=0&ot=0&zMoatJS=0%3A0%3A
1366%3A857%3A0&fs=143783&na=1593598114&cs=0 has a request size of 1.9KiB
Request URL: 1.6KiB
Cookies: 0B
Referer Url: 70B
Other: 281B
https://ads.adaptv.advertising.com/a/h/DfcEVqB9s2wqGlu3CWqkASX946lmNRIoNd0r0YtnBGM=?cb=14166514165709923&pageUrl=https%3A%2F%2Fww
w.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&duration=55&id=5a7cc316cc912f2b46cda331&title=This
+Is+the+Ultimate+Period+Survival+Kit&eov=eov&categories=pop%2Bculture&context=transId%3D2f10fb3b-99ff-43a7-9072-210ac852c9f2%2CstudioId%3D
55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2Cmv%3D0%2Cssname%3D%2C
%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2Cat%3D1%2Cs%3D0%2Csd
%3D0%2Css%3D&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=737&a.sdk=O2&mnc=&pi.sound=0&pi.sideviewI
nitiation=&spot_id=1&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&pi.autoInitiation=0&session_id=96c9ab94-e5cc-4aed-b888-511ca9cd86d7&moatV
iewableOpportunity=0&p.vw.viewable=0&pi.sideview=0&mcc=&p.vw.viewableOpportunity=0&a.d.pageUrl=https%3A%2F%2Fwww.girlsaskguys.com%2Ftren
ding-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&p.vw.active=1&width=737&a.ip=204.187.14.71&adapViewableOpportunity=0&height=
415&pi.flashonpage=0&o2token=AAABY2KEjUWVorZFsZJ5-EVCzcO1l647RuPbBQ%3D%3D has a request size of 1.9KiB
Request URL: 1.2KiB
Cookies: 209B
Referer Url: 95B
Other: 412B
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428844/1013/ADTECH;cors=yes;width=405;height=228;referring_url=https%3A%2F%2Fwww.girlsask
guys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills;content_url=https%3A%2F%2Fconfig.playwire.com%2F1020169%2
Fvideos%2Fv2%2F5428844%2Fabr-non-hd.m3u8;media_id=5428844;title=How%20do%20you%20finally%20tell%20your%20boy%20crush%20you%20lik
e%20him%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20
AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.36;ip=__IP__;uniqueid=248908552890760;t
ags=__TAGS__;number=352564752680666;time=1526366253;headerbids=amazon;keywords=;categories=Entertainment;acao=* has a request size of
1.9KiB
Request URL: 777B
Cookies: 31B
Referer Url: 70B
Other: 1.1KiB
https://ads.intergi.com/adrawdata/3.0/5205/4658820/5428844/1013/ADTECH;cors=yes;width=405;height=228;referring_url=https%3A%2F%2Fwww.girlsask
guys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills;content_url=https%3A%2F%2Fconfig.playwire.com%2F1020169%2
Fvideos%2Fv2%2F5428844%2Fabr-non-hd.m3u8;media_id=5428844;title=How%20do%20you%20finally%20tell%20your%20boy%20crush%20you%20lik
e%20him%3F;device=desktop-linux;model=desktop-linux;os=Linux%20x86_64;osversion=false;ua=Mozilla%2F5.0%20(X11%3B%20Linux%20x86_64)%20
AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F62.0.3202.94%20Safari%2F537.36;ip=__IP__;uniqueid=248908552890760;t
ags=__TAGS__;number=697122080109755;time=1526366263;headerbids=amazon;keywords=;categories=Entertainment;acao=* has a request size of
1.9KiB
Request URL: 777B
Cookies: 31B
Referer Url: 70B
Other: 1.1KiB
https://ads.adaptv.advertising.com/a/h/DfcEVqB9s2wpRr4b0aYlpPvcXoGmLsylq2v1kNxKznyK6Jog_80uKw==?cb=14166514165709923&pageUrl=https%3A
%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&duration=55147&id=5a7cc316cc912f2b46cd
a331&title=This+Is+the+Ultimate+Period+Survival+Kit&eov=eov&categories=pop%2Bculture&context=transId%3D2f10fb3b-99ff-43a7-9072-210ac852c9f2%
2CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2Cmv%3D0%2Css
name%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2Cat%3D1%2
Cs%3D0%2Csd%3D0%2Css%3D&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=737&a.sdk=O2&mnc=&pi.soun
d=0&pi.sideviewInitiation=&spot_id=1&apid=&pi.autoInitiation=1&session_id=96c9ab94-e5cc-4aed-b888-511ca9cd86d7&moatViewableOpportunity=0&p.v
w.viewable=0&pi.sideview=0&mcc=&p.vw.viewableOpportunity=0&a.d.pageUrl=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-
would-you-use-the-bitcoin-to-pay-your-bills&p.vw.active=1&width=737&a.ip=204.187.14.71&adapViewableOpportunity=0&height=415&pi.flashonpage=0&o2
token=AAABY2KEjUWPDWI8M_5Cps8aGb0bqcfPlAhVww%3D%3D has a request size of 1.9KiB
Request URL: 1.2KiB
Cookies: 209B
Referer Url: 95B
Other: 412B
https://ads.adaptv.advertising.com/a/h/oNxT217vt8xwbSDpC4H29Xy22zCSJRdxT8SD2yDDkhqg63SWosWzAw==?cb=14166514165709923&pageUrl=https
%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&duration=55147&id=5a7cc316cc912f2b
46cda331&title=This+Is+the+Ultimate+Period+Survival+Kit&eov=eov&categories=pop%2Bculture&context=transId%3D2f10fb3b-99ff-43a7-9072-210ac852c
9f2%2CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2Cmv%3D0%
2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2Cat%3D
1%2Cs%3D0%2Csd%3D0%2Css%3D&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=737&a.sdk=O2&mnc=&pi.s
ound=0&pi.sideviewInitiation=&spot_id=1&apid=&pi.autoInitiation=1&session_id=96c9ab94-e5cc-4aed-b888-511ca9cd86d7&moatViewableOpportunity=0
&p.vw.viewable=0&pi.sideview=0&mcc=&p.vw.viewableOpportunity=0&a.d.pageUrl=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125

Analyze your site at https://gtmetrix.com Page 22 of 59


PageSpeed Recommendations

533-would-you-use-the-bitcoin-to-pay-your-bills&p.vw.active=1&width=737&a.ip=204.187.14.71&adapViewableOpportunity=0&height=415&pi.flashonpage=
0&o2token=AAABY2KEjUYQc7logleIsqM5540A0Ee7o1-IyA%3D%3D has a request size of 1.9KiB
Request URL: 1.2KiB
Cookies: 209B
Referer Url: 95B
Other: 412B
https://px.moatads.com/pixel.gif?e=9&q=1&hp=1&kq=1&lo=0&qs=1&ak=-&i=INITIATIVE_US_RBC_DCM1&ud=0&ue=0&uu=0&qm=420&qn=(%2BIb%7Cj8o
%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3Deu!LfBB2%2B
%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD%7BMx5%3
C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0lBg1SBBBB
BBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFeBCBBblBwx
BHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&vf=1&vg=100&gz=1&hh=0&hn=0&qt=0&bq=0&g=2&hq
=0&hs=0&hu=0&hr=0&ht=1&h=250&w=300&zGSRC=1&gu=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the
-bitcoin-to-pay-your-bills&f=1&j=https%3A%2F%2Fwww.girlsaskguys.com&lp=https%3A%2F%2Fwww.girlsaskguys.com&o=3&t=1526366242816&de=8242
47734094&cu=1526366242816&m=7142&ar=4c90a2e-clean&cb=0&ll=3&lm=1&ln=1&r=0&dl=0&dm=1000&nh=1&tw=null&td=1&qa=1367&qb=858&qi=13
67&qj=858&qf=300&qe=250&qh=1366&qg=857&lk=undefined&lb=255&le=1&gm=1&io=1&fa=1&ct=undefined&aa=0&ad=0&cn=0&gk=0&gl=0&cq=0&ic=0&
im=0&in=0&pd=0&em=0&en=0&st=1&su=1&of=1&oz=1&bu=5661&cd=1860&ah=5661&am=1860&rf=0&re=1&wb=1&cl=0&at=0&d=20969168%3A1310366
%3A218534727%3A99952620&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=initiativeusrbcdcm920745044517&zMoatOrigSlicer1=N%2FA&zMoatOrig
Slicer2=N%2FA&ab=2&ac=1&fd=1&kt=sframe&it=500&oq=0&ot=0&zMoatJS=0%3A0%3A1366%3A857%3A0&fs=143783&na=1357555625&cs=0 has a
request size of 1.9KiB
Request URL: 1.5KiB
Cookies: 0B
Referer Url: 70B
Other: 281B
https://px.moatads.com/pixel.gif?e=9&q=0&hp=1&kq=1&lo=0&qs=1&ak=-&i=INITIATIVE_US_RBC_DCM1&ud=0&ue=0&uu=0&qm=420&qn=(%2BIb%7Cj8o
%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3Deu!LfBB2%2B
%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD%7BMx5%3
C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0lBg1SBBBB
BBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFeBCBBblBwx
BHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=0&g=1&hq=0&hs=0&hu
=0&hr=0&ht=1&h=250&w=300&zGSRC=1&gu=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pa
y-your-bills&f=1&j=https%3A%2F%2Fwww.girlsaskguys.com&lp=https%3A%2F%2Fwww.girlsaskguys.com&o=3&t=1526366242816&de=824247734094&c
u=1526366242816&m=1925&ar=4c90a2e-clean&cb=0&ll=3&lm=1&ln=1&r=0&dl=0&dm=1000&nh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&
qf=300&qe=250&qh=1366&qg=857&lk=undefined&lb=255&le=1&gm=1&io=1&fa=1&ct=undefined&aa=0&ad=0&cn=0&gk=0&gl=0&ic=0&im=0&in=0&pd=0&
em=0&en=0&st=0&su=1&of=1&oz=1&bu=1860&cd=106&ah=1860&am=106&rf=0&re=1&wb=1&cl=0&at=0&d=20969168%3A1310366%3A218534727%3A
99952620&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=initiativeusrbcdcm920745044517&zMoatOrigSlicer1=N%2FA&zMoatOrigSlicer2=N%2FA&ab=
2&ac=1&fd=1&kt=sframe&it=500&oq=0&ot=0&zMoatJS=0%3A0%3A1366%3A857%3A0&fs=143783&na=97559087&cs=0 has a request size of 1.9KiB
Request URL: 1.5KiB
Cookies: 0B
Referer Url: 70B
Other: 281B
https://log.adaptv.advertising.com/log?3a=prefilledOpportunity&5=738151&11d=3170334404650173&65=preroll&6a=-2&6b=-2&85=This+Is+the+Ultimate+
Period+Survival+Kit&17b=0&optout=0&3=-2&5c=aolvideo&2e=www.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-yo
ur-bills&2f=girlsaskguys.com&30=girlsaskguys.com&31=3&32=0&fd=140477&83=5a7cc316cc912f2b46cda331&82=55147&80=1440691208514214743&f
8=O26d4fbf05-580a-11e8-88f1-0242223bf707&172=0&171=13766603302367460648&42=false&8f=737&41=415&21=transId%3D2f10fb3b-99ff-43a7-907
2-210ac852c9f2%2CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2
Cmv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D
0%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&1b=pop%2Bculture&77=805091410&67={playerRev}&d6=090561f5-9284-4d01-bfc2-49c9857bbc52&
bf=0&74=ah&d5=1&d8=ip-10-112-102-140&8e=0&f0=0&162=2.14&68=3&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_
width=737&d7=O2&c4=0&91=ONLINE_VIDEO&45=204.187.14.71&17f=ONLINE_VIDEO&ee=Linux&b5=1&144=0&145=0&146=0&147=0&148=0&149=1&1
4c=3.3546&14d=3.4717&153=42.6856&154=41.3888&gdpr=0&115=3&120=0&100={adSeq}&112=1&134=69&64=girlsaskguys.com&33=41098236&a.cv=
1 has a request size of 1.8KiB
Request URL: 1.2KiB
Cookies: 209B
Referer Url: 95B
Other: 290B
https://pubads.g.doubleclick.net/gampad/ads?sz=640x480&iu=%2F21661689741%2Fegami.generic&cust_params=pid%3D5952b3519e45102b384dc50e
&gdfp_req=1&env=vp&output=xml_vast3&unviewed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-woul
d-you-use-the-bitcoin-to-pay-your-bills&description_url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitc
oin-to-pay-your-bills&correlator=3906621474752233&sdkv=h.3.208.0&sdki=3c0d&scor=4126310066451134&adk=1623483475&u_so=l&osd=2&frm=0&sd
r=1&is_amp=0&adsid=NT&afvsz=200x200%2C250x250%2C300x250%2C336x280%2C450x50%2C468x60%2C480x70%2C728x90&ged=ve4_td10_tt4_pd
10_la10000_er5366.158.5521.458_vi0.0.768.1366_vp0_ts3_eb16619 has a request size of 1.8KiB
Request URL: 718B
Cookies: 62B
Referer Url: 59B
Other: 1.0KiB
https://ads.adaptv.advertising.com/a/h/DfcEVqB9s2zYDWfVYbq1EzK6R+KQEJZUnv0SmPPAJvw35g0tAp4BvQ==?cb=14166514165709923&pageUrl=https%
3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&duration=55&id=5a7cc316cc912f2b46cda
331&title=This+Is+the+Ultimate+Period+Survival+Kit&eov=eov&categories=pop%2Bculture&context=transId%3D2f10fb3b-99ff-43a7-9072-210ac852c9f2%2
CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2Cmv%3D0%2Cssn
ame%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2Cat%3D1%2C
s%3D0%2Csd%3D0%2Css%3D&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=737&a.sdk=O2&mnc=&pi.sound=

Analyze your site at https://gtmetrix.com Page 23 of 59


PageSpeed Recommendations

0&pi.sideviewInitiation=&spot_id=1&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&pi.autoInitiation=0&session_id=96c9ab94-e5cc-4aed-b888-511ca9
cd86d7&moatViewableOpportunity=0&p.vw.viewable=0&pi.sideview=0&mcc=&p.vw.viewableOpportunity=0&a.d.pageUrl=https%3A%2F%2Fwww.girlsaskgu
ys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&p.vw.active=1&width=737&a.ip=204.187.14.71&adapViewableOpportu
nity=0&height=415&pi.flashonpage=0&o2token=AAABY2KEjUL1y-1Fy6ZOwm7zsTZB4dHAClI4wA%3D%3D has a request size of 1.8KiB
Request URL: 1.2KiB
Cookies: 86B
Referer Url: 95B
Other: 412B
https://www.girlsaskguys.com/favicon.png has a request size of 1.8KiB
Request URL: 40B
Cookies: 1.3KiB (note that this is a static resource, and should be served from a cookieless domain)
Referer Url: 95B
Other: 348B
https://log.adaptv.advertising.com/log?3a=prefilledOpportunity&5=1114642&11d=4787350936888509&65=preroll&6a=-2&6b=-2&85=This+Is+the+Ultimate
+Period+Survival+Kit&17b=0&optout=0&3=-2&5c=aolvideo&2e=www.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-y
our-bills&2f=girlsaskguys.com&30=girlsaskguys.com&31=3&32=0&fd=140477&83=5a7cc316cc912f2b46cda331&82=55&80=1440691208514214743&f8=
O26d4fbf05-580a-11e8-88f1-0242223bf707&172=1&171=13766603302367460648&42=false&8f=737&41=415&21=transId%3D2f10fb3b-99ff-43a7-9072-2
10ac852c9f2%2CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2C
mv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0
%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&1b=pop%2Bculture&77=805142200&67={playerRev}&d6=45f33a61-58f5-4b0c-9083-195e0e7b43d1&
bf=1&74=ah&d5=1&d8=ip-10-112-104-232&8e=0&f0=0&162=-1&68=3&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_wid
th=737&d7=O2&c4=0&91=ONLINE_VIDEO&45=204.187.14.71&17f=ONLINE_VIDEO&ee=Linux&b5=1&144=0&145=0&146=0&147=0&148=0&149=0&gdpr
=0&115=3&120=0&100={adSeq}&112=1&134=69&64=girlsaskguys.com&33=22378022&a.cv=1 has a request size of 1.8KiB
Request URL: 1.2KiB
Cookies: 209B
Referer Url: 95B
Other: 290B
https://log.adaptv.advertising.com/log?3a=prefilledOpportunity&5=800953&11d=3440066940773565&65=preroll&6a=-2&6b=-2&85=This+Is+the+Ultimate+
Period+Survival+Kit&17b=0&optout=0&3=-2&5c=aolvideo&2e=www.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-yo
ur-bills&2f=girlsaskguys.com&30=girlsaskguys.com&31=3&32=1&fd=140477&83=5a7cc316cc912f2b46cda331&82=55147&80=1440691208514214743&f
8=O26d4fbf05-580a-11e8-88f1-0242223bf707&172=0&171=13766603302367460648&42=false&8f=737&41=415&21=transId%3D2f10fb3b-99ff-43a7-907
2-210ac852c9f2%2CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2
Cmv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D
0%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&1b=pop%2Bculture&77=805091410&67={playerRev}&d6=69bfd431-e6b2-4802-9fc0-011df1f030ac&b
f=0&74=ah&d5=1&d8=ip-10-112-105-166&8e=0&f0=0&162=-1&68=3&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_widt
h=737&d7=O2&c4=0&91=ONLINE_VIDEO&45=204.187.14.71&17f=ONLINE_VIDEO&ee=Linux&b5=1&144=0&145=0&146=0&147=0&148=0&149=1&gdpr=
0&115=3&120=0&100={adSeq}&112=1&134=69&64=girlsaskguys.com&33=666873&a.cv=1 has a request size of 1.8KiB
Request URL: 1.2KiB
Cookies: 209B
Referer Url: 95B
Other: 290B
https://log.adaptv.advertising.com/log?3a=prefilledOpportunity&5=1113111&11d=4780775341958333&65=preroll&6a=-2&6b=-2&85=This+Is+the+Ultimate
+Period+Survival+Kit&17b=0&optout=0&3=-2&5c=aolvideo&2e=www.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-y
our-bills&2f=girlsaskguys.com&30=girlsaskguys.com&31=3&32=0&fd=140477&83=5a7cc316cc912f2b46cda331&82=55&80=1440691208514214743&f8=
O26d4fbf05-580a-11e8-88f1-0242223bf707&172=0&171=13766603302367460648&42=false&8f=737&41=415&21=transId%3D2f10fb3b-99ff-43a7-9072-2
10ac852c9f2%2CstudioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2C
mv%3D0%2Cssname%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0
%2Cat%3D1%2Cs%3D0%2Csd%3D0%2Css%3D&1b=pop%2Bculture&77=805091410&67={playerRev}&d6=39dc3141-491f-45ba-9c5f-671b3faa3378&bf
=0&74=ah&d5=1&d8=ip-10-112-103-74&8e=0&f0=0&162=-1&68=3&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=
737&d7=O2&c4=0&91=ONLINE_VIDEO&45=204.187.14.71&17f=ONLINE_VIDEO&ee=Linux&b5=1&144=0&145=0&146=0&147=0&148=0&149=0&gdpr=0
&115=3&120=0&100={adSeq}&112=1&134=69&64=girlsaskguys.com&33=4633137&a.cv=1 has a request size of 1.8KiB
Request URL: 1.2KiB
Cookies: 209B
Referer Url: 95B
Other: 290B
https://trk.vidible.tv/trk/ad-issue.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv
=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid=efdce8
e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at=preroll&adId
x=-1&aen=LROS%20-%20Pub%20-%20EGAMI%7CAll%20Domains%20-%20ALL%20Geos%20-%20HTML5%20only&pbl=true&ps=html5-vpaid&rcid=57d
325e276a6057ba4a05a00&rid=5a6b7faa55935e30ecd569fb&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511ca9cd86
d7&v=56a11164e4b05fb5460fcca3&vid=5a7cc316cc912f2b46cda331&curl=https%3A%2F%2Fpubads.g.doubleclick.net%2Fgampad%2Fads%3Fsz%3D64
0x480%26iu%3D%2F21661689741%2Fegami.generic%26cust_params%3Dpid%253d5952b3519e45102b384dc50e%26impl%3Ds%26gdfp_req%3D1%
26env%3Dvp%26output%3Dxml_vast3%26unviewed_position_start%3D1%26url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Ftrending-ne
ws%252Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills%26description_url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Ftrending-n
ews%252Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills%26correlator%3D1526366250755&stg=loaded&crl=IMA&dt=Failed%20to%20initialize%2
0GoogleIMA3%20adManager.%20No%20Ads%20VAST%20response%20after%20one%20or%20more%20Wrappers&et=901&st=9571&cb=0.528979899
2233641 has a request size of 1.8KiB
Request URL: 1.4KiB
Cookies: 0B
Referer Url: 95B
Other: 281B
https://log.adaptv.advertising.com/log?3a=prefilledOpportunity&5=1114644&11d=-2&65=preroll&6a=-2&6b=-2&85=This+Is+the+Ultimate+Period+Survival+K

Analyze your site at https://gtmetrix.com Page 24 of 59


PageSpeed Recommendations

it&17b=0&optout=0&3=-2&5c=aolvideo&2e=www.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&2f=girlsa
skguys.com&30=girlsaskguys.com&31=3&32=0&fd=140477&83=5a7cc316cc912f2b46cda331&82=55&80=1440691208514214743&f8=O26d4fbf05-580a-
11e8-88f1-0242223bf707&172=0&171=13766603302367460648&42=false&8f=737&41=415&21=transId%3D2f10fb3b-99ff-43a7-9072-210ac852c9f2%2C
studioId%3D55144fb409eab105804dc138%2Cbcid%3D57d325e276a6057ba4a05a00%2Cpid%3D5952b3519e45102b384dc50e%2Cmv%3D0%2Cssna
me%3D%2C%2Cfv%3D0.0%2Cfd%3D0.0%2Cfi%3D0.0%2Cfp%3D0.0%2Cfw%3D0.0%2Cfdv%3D0.0%2Cbv%3DGREEN%2Cvp%3D0%2Cat%3D1%2Cs
%3D0%2Csd%3D0%2Css%3D&1b=pop%2Bculture&77=805091410&67={playerRev}&d6=e6deb876-57d2-46c7-9209-3356ca03ae8a&bf=0&74=ah&d5=1
&d8=ip-10-112-107-140&8e=0&f0=0&162=-1&68=3&ctx.plid=5952b3519e45102b384dc50e&ctx.container_height=415&ctx.container_width=737&d7=O2&c
4=0&91=ONLINE_VIDEO&45=204.187.14.71&17f=ONLINE_VIDEO&ee=Linux&b5=1&144=0&145=0&146=0&147=0&148=0&149=0&gdpr=0&115=3&120=0
&100={adSeq}&112=1&134=69&64=girlsaskguys.com&33=47987140&a.cv=1 has a request size of 1.8KiB
Request URL: 1.2KiB
Cookies: 209B
Referer Url: 95B
Other: 290B
https://pubads.g.doubleclick.net/gampad/ads?sz=3x3&iu=%2F36117602%2Fhdm-aolpreroll%2Fonnetwork&gdfp_req=1&env=vp&output=xml_vast3&unview
ed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&descriptio
n_url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&correlator=16572024271307
44&sdkv=h.3.208.0&sdki=3c0d&scor=1870452854221972&adk=1623483475&u_so=l&osd=2&frm=0&sdr=1&is_amp=0&adsid=NT&afvsz=200x200%2C25
0x250%2C300x250%2C336x280%2C450x50%2C468x60%2C480x70%2C728x90&ged=ve4_td29_tt23_pd29_la29000_er5366.158.5521.458_vi0.0.768.13
66_vp0_ts18_eb16619 has a request size of 1.8KiB
Request URL: 683B
Cookies: 62B
Referer Url: 59B
Other: 993B
https://sb.scorecardresearch.com/p?c1=2&c2=6473742&ca2=6035258&ns_type=hidden&ns_st_sv=5.1.1.160316&ns_st_smv=5.1&ns_st_it=r&ns_st_id=1
526366243812&ns_st_ec=2&ns_st_sp=1&ns_st_sc=1&ns_st_sq=1&ns_st_ppc=1&ns_st_apc=1&ns_st_spc=1&ns_st_cn=1&ns_st_ev=hb&ns_st_po=10
014&ns_st_cl=55147&ns_st_hc=1&ns_st_mp=js_api&ns_st_mv=5.1.1.160316&ns_st_pn=1&ns_st_tp=0&ns_st_ci=5a7cc316cc912f2b46cda331&ns_st_
pt=10014&ns_st_dpt=10014&ns_st_ipt=10014&ns_st_et=10014&ns_st_det=10014&ns_st_upc=10014&ns_st_dupc=10014&ns_st_iupc=10014&ns_st_u
pa=10014&ns_st_dupa=10014&ns_st_iupa=10014&ns_st_lpc=10014&ns_st_dlpc=10014&ns_st_lpa=10014&ns_st_dlpa=10014&ns_st_pa=10014&ns_t
s=1526366262667&ns_st_bc=0&ns_st_dbc=0&ns_st_bt=0&ns_st_dbt=0&ns_st_bp=0&ns_st_skc=0&ns_st_dskc=0&ns_st_ska=0&ns_st_dska=0&ns_st
_skd=0&ns_st_skt=0&ns_st_dskt=0&ns_st_pc=0&ns_st_dpc=0&ns_st_pp=0&ns_st_br=0&ns_st_ub=0&ns_st_ki=1200000&ns_st_pr=GoodHousekeepin
g&ns_st_sn=*null&ns_st_en=*null&ns_st_ep=This%20Is%20the%20Ultimate%20Period%20Survival%20Kit&ns_st_ct=vc11&ns_st_ge=*null&ns_st_st=*n
ull&ns_st_ce=1&ns_st_ia=0&ns_st_ddt=*null&ns_st_tdt=*null&ns_st_pu=Hearst%20Magazine&ns_st_ti=*null&c3=Unknown_Category_ID&ca3=AOL&c4=
www.girlsaskguys.com&ca4=Lifestyle&c6=*null&ca6=GOODHOUSEKEEPING&c7=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125
533-would-you-use-the-bitcoin-to-pay-your-bills&c8=&c9= has a request size of 1.8KiB
Request URL: 1.3KiB
Cookies: 54B
Referer Url: 95B
Other: 290B
https://sb.scorecardresearch.com/p?c1=2&c2=6473742&ca2=6035258&ns_type=hidden&ns_st_sv=5.1.1.160316&ns_st_smv=5.1&ns_st_it=r&ns_st_id=1
526366243812&ns_st_ec=2&ns_st_sp=1&ns_st_sc=1&ns_st_sq=1&ns_st_ppc=1&ns_st_apc=1&ns_st_spc=1&ns_st_cn=1&ns_st_ev=pause&ns_st_po
=14183&ns_st_cl=55147&ns_st_mp=js_api&ns_st_mv=5.1.1.160316&ns_st_pn=1&ns_st_tp=0&ns_st_ci=5a7cc316cc912f2b46cda331&ns_st_pt=14183
&ns_st_dpt=14183&ns_st_ipt=4169&ns_st_et=14183&ns_st_det=14183&ns_st_upc=14183&ns_st_dupc=14183&ns_st_iupc=4169&ns_st_upa=14183&
ns_st_dupa=14183&ns_st_iupa=4169&ns_st_lpc=14183&ns_st_dlpc=14183&ns_st_lpa=14183&ns_st_dlpa=14183&ns_st_pa=14183&ns_ts=15263662
66836&ns_st_bc=0&ns_st_dbc=0&ns_st_bt=0&ns_st_dbt=0&ns_st_bp=0&ns_st_skc=0&ns_st_dskc=0&ns_st_ska=0&ns_st_dska=0&ns_st_skd=0&ns_
st_skt=0&ns_st_dskt=0&ns_st_pc=1&ns_st_dpc=1&ns_st_pp=1&ns_st_br=0&ns_st_ub=0&ns_st_ki=1200000&ns_st_pr=GoodHousekeeping&ns_st_sn
=*null&ns_st_en=*null&ns_st_ep=This%20Is%20the%20Ultimate%20Period%20Survival%20Kit&ns_st_ct=vc11&ns_st_ge=*null&ns_st_st=*null&ns_st_c
e=1&ns_st_ia=0&ns_st_ddt=*null&ns_st_tdt=*null&ns_st_pu=Hearst%20Magazine&ns_st_ti=*null&c3=Unknown_Category_ID&ca3=AOL&c4=www.girlsas
kguys.com&ca4=Lifestyle&c6=*null&ca6=GOODHOUSEKEEPING&c7=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-y
ou-use-the-bitcoin-to-pay-your-bills&c8=&c9= has a request size of 1.7KiB
Request URL: 1.3KiB
Cookies: 54B
Referer Url: 95B
Other: 290B
https://pubads.g.doubleclick.net/gampad/ads?sz=3x3&iu=%2F36117602%2Fhdm-aolpreroll%2Fonnetwork&gdfp_req=1&env=vp&output=xml_vast3&unview
ed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&descriptio
n_url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&correlator=32777045669585
73&sdkv=h.3.208.0&sdki=3c0d&scor=3373691446915184&adk=1623483475&u_so=l&osd=2&frm=0&sdr=1&is_amp=0&adsid=NT&afvsz=200x200%2C25
0x250%2C300x250%2C336x280%2C450x50%2C468x60%2C480x70%2C728x90&ged=ve4_td7_tt1_pd7_la7000_er5366.158.5521.458_vi0.0.768.1366_vp
0_eb16619 has a request size of 1.7KiB
Request URL: 674B
Cookies: 62B
Referer Url: 59B
Other: 984B
https://tpc.googlesyndication.com/daca_images/simgad/111467612252394556?w=400&h=209 has a request size of 1.7KiB
Request URL: 83B
Cookies: 286B (note that this is a static resource, and should be served from a cookieless domain)
Referer Url: 1015B
Other: 391B
https://tpc.googlesyndication.com/pagead/js/r20180509/r20110914/client/ext/m_qs_click_protection.js has a request size of 1.7KiB
Request URL: 99B
Cookies: 286B (note that this is a static resource, and should be served from a cookieless domain)
Referer Url: 1015B

Analyze your site at https://gtmetrix.com Page 25 of 59


PageSpeed Recommendations

Other: 371B
https://trk.vidible.tv/trk/ad-issue.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv
=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid=efdce8
e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at=preroll&adId
x=-1&aen=FROS%20-%20CO%20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps=html5-vpaid&
rcid=551440471146fb0d084da510&rid=572a5079e4b0fb7d4078f6b5&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511c
a9cd86d7&v=56a11164e4b05fb5460fcca3&vid=5a7cc316cc912f2b46cda331&curl=https%3A%2F%2Fpubads.g.doubleclick.net%2Fgampad%2Fads%3Fsz
%3D3x3%26iu%3D%2F36117602%2Fhdm-aolpreroll%2Fonnetwork%26impl%3Ds%26gdfp_req%3D1%26env%3Dvp%26output%3Dvast%26unviewed_p
osition_start%3D1%26url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Ftrending-news%252Fq2125533-would-you-use-the-bitcoin-to-pay-yo
ur-bills%26description_url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Ftrending-news%252Fq2125533-would-you-use-the-bitcoin-to-pay-y
our-bills%26correlator%3D1526366247652&stg=loaded&crl=IMA&dt=Failed%20to%20initialize%20GoogleIMA3%20adManager.%20The%20response%20
does%20not%20contain%20any%20valid%20ads.&et=901&st=9571&cb=0.444508295265825 has a request size of 1.7KiB
Request URL: 1.4KiB
Cookies: 0B
Referer Url: 95B
Other: 281B
https://tpc.googlesyndication.com/daca_images/simgad/579286379986262663 has a request size of 1.7KiB
Request URL: 71B
Cookies: 286B (note that this is a static resource, and should be served from a cookieless domain)
Referer Url: 1015B
Other: 379B
https://pagead2.googlesyndication.com/pagead/gen_204?id=sodar&v=24&t=2&bgai=B1jKJHoD6WrSiN8iO-gPC4pDQBwAAAAA4AeAEAg&bg=!MDOlMytEenz
JptLWEegCAAAGalIAAASpmQGX4QuvWbvp7HTDrjCvOeI-k6LZ25hqdfKW4XDETJ--GGo83hbNWJWf8iWqhgWuvb6QxRZSwzCb1RrxOLaeBzdBjo65-hIx2dIAX
bKmXCheda37byZOPNQUZSQrqVW3hmh-XZ-cWYPSz78EPyzTjItmhjqSdr5R7-Xb_A7MuLW_OYsx5yYbV52rX53TPVZY7IRTD4BtNovF2Z9iXqpKpgH4ITHUsT
D1_G2nSTJ-f1cgCJURZ429x-87QpZCaMdy_suUTOK-sDbSayYNEVinNRIa9CJKzI0P-Cl8zS87n6iADf-j5bbjBoCZJOwp63KBaecp-g5rYnnxsijg7GWwIDOmB5
zvGwLZqjk-o3GqrctItKzqbJE08_dAuG_iDWmE32UJr-l5C_mBakY4s2-1ELFuWTxO0L_bOVzNs0KPYkIcj3s4e1oLeix01n2-2MKXEj21XwGZy8kX_GdLR0Sh9so
K2u-nr8XP2s32hCWGygwAzDD-kfi6sM1cu9qkZXXA7gRVURt1q8ZFxylODosSNb2CMcqvBmlSKAY has a request size of 1.7KiB
Request URL: 699B
Cookies: 0B
Referer Url: 53B
Other: 998B
https://pagead2.googlesyndication.com/pagead/gen_204?id=sodar&v=24&t=2&bgai=BnuJlHoD6Wsq8N9jb-QOo54fIDQAAAAA4AeAEAg&bg=!MjGlMSlEX70g
OPzaSqQCAAAGMVIAAASnmQGXz3VxoKLAQbGX1hKd9g_ouLlZOIqeqV9LrSxtr-qURAvWjqgMGQZJCJd8uQJmjf-IUTAb_3Cd30G5vxkHCLx3IycjVFjOHDU7nG
8soHn3AYmuV_jVZ7O4EEh3-oH1tCU9Do1NsvOx01ZKDCOr_1V5TqGPsHeFp19mvFZ8JMicpoU1AhdExT_zMFoJJajsaMcsqm1kz_syus6wTj40Vf3f04qo1LK
RVe0CJwRkdg2818ZlKRFTMFChAuymyyWA6y2DNLw-z60NuwcwXlARweZ0sAbpBh4YICsUD7gf5rEW08mVoj_FunH9pa8o0YmV90pAndTGBAiz6tO6W8FDol
HtAI9qBqmlcLSxdcfuQ3JhGVQF--cFh-EkAAqD646ahglmYGogJgLD5TcMTEr7oo_uDYEvf8QE2gKBdtzu1EVWaapfNwCzxQcCn5E8lBQGdeyn85WF9Kw52isIR
wAmQ5rmc-kEG_2_brWnlgUXpGyDhikw842XqrpaTOXYY9nT9HzKBccJjphhRBymmw4my-449Ke02bxrkpU has a request size of 1.7KiB
Request URL: 699B
Cookies: 0B
Referer Url: 53B
Other: 998B
https://sb.scorecardresearch.com/p?c1=2&c2=6473742&ca2=6035258&ns_type=hidden&ns_st_sv=5.1.1.160316&ns_st_smv=5.1&ns_st_it=r&ns_st_id=1
526366243812&ns_st_ec=1&ns_st_sp=1&ns_st_sc=1&ns_st_sq=1&ns_st_ppc=1&ns_st_apc=1&ns_st_spc=1&ns_st_cn=1&ns_st_ev=play&ns_st_po=0
&ns_st_cl=55147&ns_st_pb=1&ns_st_mp=js_api&ns_st_mv=5.1.1.160316&ns_st_pn=1&ns_st_tp=0&ns_st_ci=5a7cc316cc912f2b46cda331&ns_st_pt=0
&ns_st_dpt=0&ns_st_ipt=0&ns_st_et=0&ns_st_det=0&ns_st_upc=0&ns_st_dupc=0&ns_st_iupc=0&ns_st_upa=0&ns_st_dupa=0&ns_st_iupa=0&ns_st_l
pc=0&ns_st_dlpc=0&ns_st_lpa=0&ns_st_dlpa=0&ns_st_pa=0&ns_ts=1526366252653&ns_st_bc=0&ns_st_dbc=0&ns_st_bt=0&ns_st_dbt=0&ns_st_bp=
0&ns_st_lt=8838&ns_st_skc=0&ns_st_dskc=0&ns_st_ska=0&ns_st_dska=0&ns_st_skd=0&ns_st_skt=0&ns_st_dskt=0&ns_st_pc=0&ns_st_dpc=0&ns_
st_pp=0&ns_st_br=0&ns_st_ub=0&ns_st_ki=1200000&ns_st_pr=GoodHousekeeping&ns_st_sn=*null&ns_st_en=*null&ns_st_ep=This%20Is%20the%2
0Ultimate%20Period%20Survival%20Kit&ns_st_ct=vc11&ns_st_ge=*null&ns_st_st=*null&ns_st_ce=1&ns_st_ia=0&ns_st_ddt=*null&ns_st_tdt=*null&ns_s
t_pu=Hearst%20Magazine&ns_st_ti=*null&c3=Unknown_Category_ID&ca3=AOL&c4=www.girlsaskguys.com&ca4=Lifestyle&c6=*null&ca6=GOODHOUSEK
EEPING&c7=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&c8=&c9= has a
request size of 1.7KiB
Request URL: 1.3KiB
Cookies: 54B
Referer Url: 95B
Other: 290B
https://www.facebook.com/tr/?id=781946178525195&ev=ViewContent&dl=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-woul
d-you-use-the-bitcoin-to-pay-your-bills&rl=&if=false&ts=1526366239915&cd[content_name]=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%
2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&cd[content_type]=product&cd[content_category]=Trending%20%26amp%3B%20News&cd[content
_ids]=%2Fquestion%2F2125533&cd[gender]=None&cd[xper_level]=0&cd[topics_follow]=undefined&cd[visitor]=Guest&cd[mobile]=false&sw=1367&sh=858
&v=2.8.14&r=stable&ec=1&o=28&it=1526366238874 has a request size of 1.7KiB
Request URL: 592B
Cookies: 132B
Referer Url: 95B
Other: 900B
https://saxp.zedo.com/asw/fmg.json?g=%7B%22tagProp%22%3A%7B%22tmy%22%3A%220%22%2C%22geo%22%3A%22%22%2C%22charset%22%3
A%22%22%7D%2C%22pageProp%22%3A%7B%22pageUrl%22%3A%22https%253A%252F%252Fwww.girlsaskguys.com%252Ftrending-news%252Fq2
125533-would-you-use-the-bitcoin-to-pay-your-bills%22%2C%22referrer%22%3A%22%22%7D%2C%22placements%22%3A%5B%7B%22id%22%3A%22
364488_1%22%2C%22network%22%3A%223787%22%2C%22publisher%22%3A%221%22%2C%22channel%22%3A%222%22%2C%22dimension%2
2%3A%2285%22%2C%22width%22%3A%22500%22%2C%22height%22%3A%22281%22%2C%22renderers%22%3A%5B%7B%22name%22%3A%22d
isplay%22%2C%22capability%22%3A%7B%7D%2C%22behaviour%22%3A%7B%22placementMacro%22%3A%5B%22%25ZZDIVID%25%22%5D%7D%
7D%5D%2C%22keyword%22%3A%22%22%2C%22multipleCustomeValues%22%3A%22%22%2C%22customTargeting%22%3A%22%5Epb_bidder%3A

Analyze your site at https://gtmetrix.com Page 26 of 59


PageSpeed Recommendations

none%22%2C%22thirdPartyClickURL%22%3A%22%7B%7B%20z_cltr%20%7D%7D%22%2C%22thirdPartyImprURL%22%3A%22%7B%7B%20z_imtr%2
0%7D%7D%22%2C%22maxGuranteed%22%3A1%2C%22isLegacyParallelReq%22%3A%221%22%2C%22formatWidth%22%3A%22%5BFWIDTH%5D%
22%2C%22formatHeight%22%3A%22%5BFHEIGHT%5D%22%7D%5D%2C%22masterCapability%22%3A%7B%22cookieWriting%22%3Atrue%7D%7D
has a request size of 1.7KiB
Request URL: 1.1KiB
Cookies: 168B
Referer Url: 95B
Other: 291B
https://pubads.g.doubleclick.net/gampad/ads?sz=640x480%7C400x300&iu=%2F281896196%2FGirlsAskGuys_Desktop_Video_Preroll&gdfp_req=1&env=v
p&output=xml_vast3&unviewed_position_start=1&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoi
n-to-pay-your-bills&description_url=girlsaskguys.com&correlator=4118942733891424&mpt=playwire&mpv=3.2&sdkv=h.3.208.0&sdki=3c0d&scor=1697086
879187273&adk=3984514231&u_so=l&osd=2&frm=2&sdr=1&is_amp=0&adsid=NT&ged=ve4_td18_tt11_pd18_la18000_er0.0.154.300_vi0.0.228.405_vp1
Serve00_ts11_eb24427
scaled imageshas a request size of 1.5KiB F (0) AVG SCORE: 74% IMAGES HIGH
Request URL: 553B
Cookies: 62B
Referer Url: 59B
The following images are resized in HTML or CSS. Serving scaled images could save 203.1KiB (75% reduction).
Other: 863B
https://d3dytsf4vrjn5x.cloudfront.net/6279/300x250/aa5c21a395a124b874d248d14d4b1d86.jpg is resized in HTML or CSS from 300x250 to 165x110. Serving
a scaled image could save 14.0KiB (75% reduction).
https://d3dytsf4vrjn5x.cloudfront.net/79578/300x250/3a067d0e2548a891d8acc7ef4bea71a9.jpg is resized in HTML or CSS from 300x250 to 165x110.
Serving a scaled image could save 11.9KiB (75% reduction).
https://images.girlsaskguys.com/custom/topics/dating.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 11.6KiB
(91% reduction).
https://images.girlsaskguys.com/custom/topics/parents-family.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
10.8KiB (91% reduction).
https://images.girlsaskguys.com/content/images/desktop/gag-logo@2x.png is resized in HTML or CSS from 320x84 to 160x42. Serving a scaled image
could save 9.9KiB (75% reduction).
https://images.girlsaskguys.com/custom/topics/relationships.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
8.2KiB (91% reduction).
https://images.girlsaskguys.com/custom/topics/womensbehavior.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
7.5KiB (91% reduction).
https://images.girlsaskguys.com/custom/topics/girlsaskguys.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
7.0KiB (91% reduction).
https://images.girlsaskguys.com/custom/topics/food-beverage.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
6.5KiB (91% reduction).
https://d3dytsf4vrjn5x.cloudfront.net/105614/300x250/c9127ce6e704a656ec453fb89c2c9c40.jpg is resized in HTML or CSS from 300x250 to 165x110.
Serving a scaled image could save 6.4KiB (75% reduction).
https://images.girlsaskguys.com/custom/topics/marriage.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 6.4KiB
(91% reduction).
https://images.girlsaskguys.com/custom/topics/arts.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 5.9KiB (91%
reduction).
https://images.girlsaskguys.com/custom/topics/mensbehavior.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
5.7KiB (91% reduction).
https://images.girlsaskguys.com/users/3605fedd56ce30d37ade6b163147b940/thumb.jpg?34 is resized in HTML or CSS from 60x60 to 45x45. Serving a
scaled image could save 5.6KiB (44% reduction).
https://images.girlsaskguys.com/custom/topics/giftsforwomen.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
5.6KiB (91% reduction).
https://images.girlsaskguys.com/custom/topics/style.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 5.4KiB (91%
reduction).
https://images.girlsaskguys.com/custom/topics/travel.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 5.2KiB (91%
reduction).
https://images.girlsaskguys.com/custom/topics/politics.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 5.1KiB
(91% reduction).
https://images.girlsaskguys.com/custom/topics/sports-new.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 5.0KiB
(91% reduction).
https://images.girlsaskguys.com/custom/topics/generalhealth.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
4.8KiB (91% reduction).
https://images.girlsaskguys.com/custom/topics/breakup.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 4.7KiB
(91% reduction).
https://images.girlsaskguys.com/custom/topics/education.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 4.7KiB
(91% reduction).
https://images.girlsaskguys.com/custom/topics/flirting.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 4.6KiB
(91% reduction).
https://images.girlsaskguys.com/users/c7e527792857f9de3689894ec4b36834/thumb.jpg?730 is resized in HTML or CSS from 60x60 to 45x45. Serving a
scaled image could save 4.3KiB (44% reduction).
https://images.girlsaskguys.com/custom/topics/tech.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 3.6KiB (91%
reduction).
https://images.girlsaskguys.com/users/ff7c902d0474dfa50e2ba891115e06a8/thumb.png?94 is resized in HTML or CSS from 60x60 to 45x45. Serving a
scaled image could save 3.2KiB (44% reduction).
https://images.girlsaskguys.com/custom/topics/howdoilook.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save
3.1KiB (91% reduction).
https://images.girlsaskguys.com/custom/topics/news.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 2.9KiB (91%

Analyze your site at https://gtmetrix.com Page 27 of 59


PageSpeed Recommendations

reduction).
https://images.girlsaskguys.com/custom/topics/other.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 2.8KiB (91%
reduction).
https://images.girlsaskguys.com/users/91f236d7fed960c00c91938fb0fada60/thumb.jpg?178 is resized in HTML or CSS from 60x60 to 45x45. Serving a
scaled image could save 2.6KiB (44% reduction).
https://images.girlsaskguys.com/custom/topics/religion.jpg is resized in HTML or CSS from 100x100 to 30x30. Serving a scaled image could save 2.5KiB
(91% reduction).
https://images.girlsaskguys.com/users/5f4a019d7489907f1adbd4a5e958caaa/thumb.png?193 is resized in HTML or CSS from 60x60 to 46x46. Serving a
scaled image could save 2.4KiB (42% reduction).
https://images.girlsaskguys.com/custom/useravatars/girly-girl.jpg is resized in HTML or CSS from 60x60 to 34x34. Serving a scaled image could save 1.7KiB
(67% reduction).
https://images.girlsaskguys.com/users/a2df52953b57078def3d37c5fa6efd41/thumb.jpg?2 is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled
image could save 1.2KiB (44% reduction).
https://images.girlsaskguys.com/users/a41f387573ffe9d087a039e6981af59d/thumb.jpg?23 is resized in HTML or CSS from 60x60 to 45x45. Serving a
scaled image could save 1.0KiB (44% reduction).
https://images.girlsaskguys.com/custom/useravatars/bookworm.jpg is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled image could save
1015B (44% reduction).
https://images.girlsaskguys.com/users/407a1fe82081edfe2142a1bd712333ae/thumb.jpg?103 is resized in HTML or CSS from 60x60 to 45x45. Serving a
scaled image could save 984B (44% reduction).
https://images.girlsaskguys.com/custom/useravatars/daddys-girl.jpg is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled image could save
966B (44% reduction).
https://images.girlsaskguys.com/custom/useravatars/preppy.jpg is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled image could save 944B
(44% reduction).
https://images.girlsaskguys.com/custom/useravatars/artistic.jpg is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled image could save 939B
(44% reduction).
https://images.girlsaskguys.com/users/d7003ccb54f220dcf951cd593f321c56/thumb.jpg?3 is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled
image could save 910B (44% reduction).
https://images.girlsaskguys.com/custom/useravatars/explorer.jpg is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled image could save 895B
(44% reduction).
https://images.girlsaskguys.com/users/90046799048c380bf0db17c2b027428f/thumb.jpg?11 is resized in HTML or CSS from 60x60 to 45x45. Serving a
scaled image could save 883B (44% reduction).
https://images.girlsaskguys.com/custom/useravatars/old-fashioned.jpg is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled image could save
874B (44% reduction).
https://images.girlsaskguys.com/users/a0f42d95421a6ab7113bbd6a848e5117/thumb.jpg?12 is resized in HTML or CSS from 60x60 to 45x45. Serving a
scaled image could save 788B (44% reduction).
https://images.girlsaskguys.com/users/75ab76f760760bcef9de01fdfc18191a/thumb.jpg?32 is resized in HTML or CSS from 60x60 to 45x45. Serving a
scaled image could save 477B (44% reduction).
https://images.girlsaskguys.com/custom/useravatars/anonymous_guy.png is resized in HTML or CSS from 60x60 to 45x45. Serving a scaled image could
save 244B (44% reduction).

M inify JavaScript F (0) AVG SCORE: 88% JS HIGH

Minify JavaScript for the following resources to reduce their size by 147.5KiB (5% reduction).

Minifying https://cdn.mirs.com/js/wglibs/mgWidget_1.7.19.js could save 127.2KiB (80% reduction) after compression. See optimized version.
Minifying https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/html5/player-hls-latest-min.js could save 2.1KiB (1% reduction) after compression. See optimized
version.
Minifying https://jsc.mgid.com/g/i/girlsaskguys.com.114115.js?t=11841423 could save 1.5KiB (6% reduction) after compression. See optimized version.
Minifying https://cdn-ssl.vidible.tv/prod/ad-client/js/2.11.3/0.js could save 1.4KiB (2% reduction) after compression. See optimized version.
Minifying https://cdn.mgid.com/js/perfect-scrollbar.js could save 1.3KiB (16% reduction) after compression. See optimized version.
Minifying https://z.moatads.com/aolvidiblecontent859375382/moatvideo.js could save 1.2KiB (2% reduction) after compression. See optimized version.
Minifying https://z.moatads.com/initiativeusrbcdcm920745044517/moatad.js could save 1.0KiB (2% reduction) after compression. See optimized version.
Minifying https://connect.facebook.net/en_US/sdk.js could save 865B (2% reduction) after compression. See optimized version.
Minifying https://imasdk.googleapis.com/js/sdkloader/ima3.js could save 706B (1% reduction) after compression. See optimized version.
Minifying https://s0.2mdn.net/instream/html5/ima3.js could save 706B (1% reduction) after compression. See optimized version.
Minifying https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/vidible-min.js?embedtag=1 could save 685B (1% reduction) after compression. See optimized ve
rsion.
Minifying https://connect.facebook.net/en_US/fbevents.js could save 646B (6% reduction) after compression. See optimized version.
Minifying https://connect.facebook.net/signals/config/781946178525195?v=2.8.14&r=stable could save 640B (5% reduction) after compression. See optimiz
ed version.
Minifying https://z.moatads.com/aolvidibleapi29384728347/moatapi.js could save 527B (2% reduction) after compression. See optimized version.
Minifying https://pagead2.googlesyndication.com/pagead/show_companion_ad.js could save 444B (1% reduction) after compression. See optimized versio
n.
Minifying https://api.content-ad.net/Scripts/widget2.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403809
&cb=1526366239821 could save 442B (13% reduction) after compression. See optimized version.
Minifying https://api.content-ad.net/Scripts/widget2.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403806&
cb=1526366239854 could save 440B (13% reduction) after compression. See optimized version.
Minifying https://s0.2mdn.net/879366/express_html_inpage_rendering_lib_200_234.js could save 412B (2% reduction) after compression. See optimized ve

Analyze your site at https://gtmetrix.com Page 28 of 59


PageSpeed Recommendations

rsion.
Minifying https://s0.2mdn.net/879366/express_html_inpage_rendering_lib_200_232.js could save 411B (2% reduction) after compression. See optimized ve
rsion.
Minifying https://www.googletagmanager.com/gtm.js?id=GTM-5KMRGL could save 409B (2% reduction) after compression. See optimized version.
Minifying https://api.content-ad.net/GetWidget.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403809&cb=152636
6239821&lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-
the-bitcoin-to-pay-your-bills&ik=2018051423_2ae54fec8cdfd17bf81f1c875a7cd0be&ikb=2ae54fec8cdfd17bf81f1c875a7cd0be&duid=5500e9decd16c9a282
497440b08ed2c24dfa5c87e1c1069a843ccd1800662667&ls=ip-172-18-60-165&dstlload=true could save 378B (6% reduction) after compression. See opti
mized version.
Minifying https://api.content-ad.net/GetWidget.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403806&cb=1526366
239854&lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-t
he-bitcoin-to-pay-your-bills&ik=2018051423_104c4851332f25f9967af95a5fa2684d&ikb=104c4851332f25f9967af95a5fa2684d&duid=5500e9decd16c9a28
2497440b08ed2c24dfa5c87e1c1069a843ccd1800662667&ls=ip-172-18-62-183&dstlload=true could save 378B (6% reduction) after compression. See opti
mized version.
Minifying https://delivery.vidible.tv/jsonp/pid=5952b3519e45102b384dc50e/57d325e276a6057ba4a05a00.js could save 346B (3% reduction) after
compression. See optimized version.
Minifying https://cdn.playwire.com/bolt/js/plow-2.6.1.js could save 329B (2% reduction) after compression. See optimized version.
Minifying https://ads.rubiconproject.com/header/11406.js?ns=11406 could save 328B (2% reduction) after compression. See optimized version.
Minifying https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/skins/skin6.js?cb=17.21.1374 could save 311B (1% reduction) after compression. See optimized
version.
Minifying https://sdk.amazonaws.com/js/aws-sdk-2.129.0.min.js could save 304B (1% reduction) after compression. See optimized version.
Minifying https://platform.twitter.com/widgets.js could save 238B (1% reduction) after compression. See optimized version.
Minifying https://ss3.zedo.com/gecko/util/tagutil.js?0.9061893410802477 could save 225B (4% reduction) after compression. See optimized version.
Minifying https://trends.revcontent.com/serve.js.php?w=95566&t=rc_718&c=1526366237833&width=1366&referer=https%3A%2F%2Fwww.girlsaskguys.co
m%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills could save 145B (2% reduction) after compression. See optimized version.
Minifying https://apis.google.com/js/platform.js?onload=gpCallback could save 138B (1% reduction) after compression. See optimized version.
Minifying https://tags.crwdcntrl.net/c/9234/cc.js?ns=_cc9234 could save 112B (2% reduction) after compression. See optimized version.
Minifying https://tags.bkrtx.com/js/bk-coretag.js could save 98B (1% reduction). See optimized version.
Minifying https://ss3.zedo.com/gecko/core/v6.8/fmgt.min.js could save 97B (1% reduction) after compression. See optimized version.
Minifying https://images.girlsaskguys.com/custom/vod.js?v=3 could save 96B (19% reduction) after compression. See optimized version.
Minifying https://tpc.googlesyndication.com/sodar/V6zvOIoD.js could save 96B (1% reduction) after compression. See optimized version.
Minifying https://secure.quantserve.com/quant.js could save 94B (2% reduction) after compression. See optimized version.
Minifying https://www.google-analytics.com/analytics.js could save 84B (1% reduction) after compression. See optimized version.
Minifying https://pagead2.googlesyndication.com/bg/4mE5LDEd8-kbxBD8mKDrWA8jTCBS-_mfkDNCRJ1Zjhs.js could save 81B (2% reduction) after
compression. See optimized version.
Minifying https://s0.2mdn.net/instream/video/client.js could save 76B (1% reduction) after compression. See optimized version.
Minifying https://3787.tm.zedo.com/v1/eae01302-531c-41de-b573-22ad40de42e4/atm.js could save 58B (2% reduction). See optimized version.
Minifying https://images.girlsaskguys.com/content/js/core.min.js?29912 could save 57B (1% reduction) after compression. See optimized version.
Minifying https://cdn.playwire.com/bolt/js/zeus/core-a160b37fa6.js?noext could save 54B (1% reduction) after compression. See optimized version.
Minifying https://c.amazon-adsystem.com/aax2/amzn_ads.js could save 50B (2% reduction) after compression. See optimized version.
Minifying https://cdn.playwire.com/bolt/js/__pwhb__03082018.js could save 49B (1% reduction) after compression. See optimized version.
Minifying https://brand-ad-innovations.s3.amazonaws.com/intention-score/bai-intention-score.js could save 48B (1% reduction). See optimized version.
Minifying https://code.jquery.com/jquery-3.1.1.min.js could save 46B (1% reduction) after compression. See optimized version.
Minifying https://acds.prod.vidible.tv/o2shim?companionId=&cpmPassback=&placementId=1076847&orgId=21465&injectCompanionDummy=&pauseOnCli
ck=&d.vw=&d.app=&r=http%3A%2F%2Fgirlsaskguys.com could save 44B (1% reduction) after compression. See optimized version.
Minifying https://loadus.exelator.com/load/?p=233&g=001&j=d&xl8blockcheck=1 could save 42B (3% reduction). See optimized version.
Minifying https://js.gumgum.com/services.js could save 35B (1% reduction) after compression. See optimized version.
Minifying https://content.jwplatform.com/libraries/WLok6WPd.js could save 34B (1% reduction) after compression. See optimized version.
Minifying https://scripts.host.bannerflow.com/1.1.8/render.min.js could save 33B (1% reduction) after compression. See optimized version.
Minifying https://cdn.revcontent.com/build/js/rev2.min.js?v=c75d860790cfbd475402bedb463df89716d9b597&del=//trends.revcontent.com/&lg=//cdn.revconte
nt.com/assets/img/rc-logo.png&ci=//cdn.revcontent.com/assets/img/icon-close.png&ab=//trends.revcontent.com/rc-about.php&ldr=//cdn.revcontent.com/asse
ts/img/rc-spinner-md.gif&ht=//trends.revcontent.com/rc-interests.php could save 32B (1% reduction) after compression. See optimized version.
Minifying https://scripts.host.bannerflow.com/1.0.7/bf.min.js could save 30B (1% reduction) after compression. See optimized version.
Minifying https://s.ntv.io/serve/load.js could save 25B (1% reduction) after compression. See optimized version.
Minifying https://aa.agkn.com/adscores/g.json?sid=9202507693 could save 24B (16% reduction). See optimized version.
Minifying https://servicer.mgid.com/114115/1?w=730&h=107&cols=4&pv=6&cbuster=1526366243888535292670&ref=https%3A%2F%2Fwww.girlsaskguys.
com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&iframe=1&pageView=1&pvid=16362848c328f8e4fcd could save 17B (1%
reduction) after compression. See optimized version.
Minifying https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/coverings/skin6.js?cb=17.21.1374 could save 11B (1% reduction) after compression. See optimiz
ed version.
Minifying https://cdn.playwire.com/bolt/js/zeus/zeus_iframe-3658f262ba.js could save 8B (1% reduction) after compression. See optimized version.
Minifying https://cm.mgid.com/i.js could save 8B (5% reduction) after compression. See optimized version.
Minifying https://static.criteo.net/js/ld/publishertag.js could save 7B (1% reduction) after compression. See optimized version.
Minifying https://gag.gagwebapi.com/api/webpush/script?token=&client=ChromeDesktop could save 6B (7% reduction) after compression. See optimized ve
rsion.
Minifying https://ss3.zedo.com/utils/zplayer/wrapper/v8.7/wrapper.js could save 6B (1% reduction) after compression. See optimized version.
Minifying https://cdn.playwire.com/bolt/js/zeus/zeus_global-bb33b35511-b2f521c1ba.js could save 4B (1% reduction) after compression. See optimized versi
on.
Minifying https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js could save 4B (1% reduction) after compression. See optimized version.
Minifying https://pagead2.googlesyndication.com/pagead/js/lidar.js could save 4B (1% reduction) after compression. See optimized version.
Minifying https://pagead2.googlesyndication.com/pagead/js/r20180509/r20180504/show_ads_impl.js could save 4B (1% reduction) after compression. See
optimized version.

Analyze your site at https://gtmetrix.com Page 29 of 59


PageSpeed Recommendations

Minifying https://securepubads.g.doubleclick.net/gpt/pubads_impl_205.js could save 4B (1% reduction) after compression. See optimized version.
Minifying https://ss3.zedo.com/utils/zplayer/wrapper/v8.7/HTML/app/scripts/all.min.js could save 4B (1% reduction) after compression. See optimized version.
Minifying https://tpc.googlesyndication.com/pagead/js/r20180509/r20110914/abg_lite.js could save 4B (1% reduction) after compression. See optimized vers
ion.
Minifying https://www.googletagservices.com/tag/js/gpt.js could save 4B (1% reduction) after compression. See optimized version.
Minifying https://pagead2.googlesyndication.com/pagead/js/r20180509/r20180504/osd.js could save 3B (1% reduction) after compression. See optimized ve
rsion.
Minifying https://pagead2.googlesyndication.com/pagead/osd.js could save 3B (1% reduction) after compression. See optimized version.
Minifying https://securepubads.g.doubleclick.net/gpt/pubads_impl_rendering_205.js could save 3B (1% reduction) after compression. See optimized
version.
Minifying https://ss3.zedo.com/gecko/tag/networkIds.js?3413964706 could save 3B (1% reduction) after compression. See optimized version.
Minifying https://ss3.zedo.com/gecko/tag/networkIds.js?4022784076 could save 3B (1% reduction) after compression. See optimized version.
Minifying https://tpc.googlesyndication.com/pagead/js/r20180509/r20110914/client/ext/m_qs_click_protection.js could save 3B (1% reduction) after
compression. See optimized version.
Minifying https://tpc.googlesyndication.com/pagead/js/r20180509/r20110914/client/ext/m_window_focus_non_hydra.js could save 3B (1% reduction) after
compression. See optimized version.
Minifying https://tpc.googlesyndication.com/safeframe/1-0-23/js/ext.js could save 3B (1% reduction) after compression. See optimized version.
Minifying https://ad.lkqd.net/vpaid/vpaid.js?fusion=1.0 could save 1B (1% reduction) after compression. See optimized version.
Minifying https://as-sec.casalemedia.com/cygnus?v=8&fn=__pwhbjs__.handleCygnusResponse&s=241978&r=%7B%22id%22%3A%2233f8586f99e7b7%
22%2C%22imp%22%3A%5B%7B%22id%22%3A%2249d5989f8bfaa3%22%2C%22ext%22%3A%7B%22siteID%22%3A241978%2C%22sid%22%3A%22
pr_1_1_s%22%7D%2C%22video%22%3A%7B%22protocols%22%3A%5B2%2C5%2C3%2C6%5D%2C%22maxduration%22%3A300%2C%22minduratio
n%22%3A5%2C%22mimes%22%3A%5B%22video%2Fmp4%22%2C%22video%2Fwebm%22%5D%2C%22startdelay%22%3A0%2C%22linearity%22%3
A1%2C%22w%22%3A640%2C%22h%22%3A480%7D%7D%5D%2C%22site%22%3A%7B%22page%22%3A%22https%3A%2F%2Fwww.girlsaskguys.co
m%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills%22%7D%7D could save 1B (2% reduction) after compression. See optimiz
ed version.
Minifying https://pagead2.googlesyndication.com/pub-config/r20160913/ca-pub-2045593450925494.js could save 1B (2% reduction) after compression.
See optimized version.
Minifying https://rules.quantcount.com/rules-p-aD1qr93XuF6aC.js could save 1B (34% reduction). See optimized version.

Enable Keep-Alive F (7) AVG SCORE: 96% SERVER HIGH

The host zedo.com should enable Keep-Alive. It serves the following resources.

https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-
would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.5301647826567564&7331981622
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:386}];et=387;eid=114;ai=RB%20Fastlane%5Erubicon%5E372688_1-6
40-480%5E%5E370;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.504325
710117083&9087452643
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:387}];et=388;eid=114;ai=RB%20Fastlane%5Erubicon_preroll%5E372
688_1-640-480%5E%5E371;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.
504325710117083&4083087879
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:5715},{%2258%22:4865},{%2229%22:4865}];eid=57;g=0;m=0;w=0;pu
=https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.13718164852373071&4426382426
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:726}];eid=99;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-
news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.8705402673723517&5354521700
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:850},{%2258%22:0}];et=851;eid=29;g=0;m=0;w=0;pu=https://www.girls
askguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.3228689037474104&4839259873
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:850}];eid=58;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-
news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.39588017330681624&8755066302
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-
would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.2927374370194238&8580108141
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[{%2228%22:5}];eid=99;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-ne
ws/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.6439502242755126&6573045409

The host agkn.com should enable Keep-Alive. It serves the following resources.

https://aa.agkn.com/adscores/g.json?sid=9202507693
https://aa.agkn.com/adscores/g.pixel?sid=9211578608&_g=906&ex=56ada69c9eb83865d182cebdfa69c286
https://aa.agkn.com/adscores/g.pixel?sid=9212293438
https://aa.agkn.com/adscores/g.pixel?sid=9212293468
https://aa.agkn.com/adscores/g.pixel?sid=9312270958&tdid=b6561484-3074-4ff3-a702-cd32d50bdd17&&bounced=1
https://aa.agkn.com/adscores/g.pixel?sid=9312292258&mt=13f65afa-4e1c-4000-801e-e370d6ce628f

Defer parsing of JavaScript F (25) AVG SCORE: 70% JS HIGH

983.9KiB of JavaScript is parsed during initial page load. Defer parsing JavaScript to reduce blocking of page rendering.

Analyze your site at https://gtmetrix.com Page 30 of 59


PageSpeed Recommendations

https://imasdk.googleapis.com/js/core/bridge3.208.0_en.html (425.2KiB of inline JavaScript)


https://images.girlsaskguys.com/content/js/core.min.js?29912 (298.7KiB)
https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-2045593450925494&output=html&h=250&slotname=1623751017&adk=3149169305&adf=
3279755404&w=300&loeid=10583696&guci=2.2.0.0.2.2&format=300x250&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-
would-you-use-the-bitcoin-to-pay-your-bills&ea=0&flash=0&avail_w=300&wgl=1&dt=1526366242586&bpp=40&bdt=2140&fdt=41&idt=985&shv=r20180509
&cbv=r20180504&saldr=aa&correlator=4874975820298&frm=24&ga_vid=2018610630.1526366244&ga_sid=1526366244&ga_hid=489908666&ga_fc=0&
pv=2&iag=14&icsg=2&nhd=2&dssz=3&mdo=0&mso=0&u_tz=-420&u_his=3&u_java=0&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=24&u_nplug=
4&u_nmime=5&adx=0&ady=0&biw=-12245933&bih=-12245933&isw=300&ish=250&ifk=4241672993&scr_x=-12245933&scr_y=-12245933&eid=10593696
%2C21061122%2C21061782%2C62710015%2C62710017%2C21061995%2C188690903&oid=3&rx=0&eae=2&brdim=0%2C0%2C0%2C0%2C1367%2
C0%2C1366%2C857%2C300%2C250&vis=1&rsz=%7C%7CceE%7C&abl=NS&ppjl=u&pfx=0&fu=8208&bc=5&osw_key=2988443705&ifi=1&fsb=1&dtd=10
08 (81.0KiB of inline JavaScript)
https://tpc.googlesyndication.com/pagead/js/r20180509/r20110914/activeview/osd_listener.js (66.3KiB)
https://staticxx.facebook.com/connect/xd_arbiter/r/RQ7NiRXMcYA.js?version=42 (34.9KiB of inline JavaScript)
https://tpc.googlesyndication.com/pagead/js/r20180509/r20110914/abg_lite.js (27.8KiB)
https://cdn.digitru.st/prod/1.5.9/digitrust-server.min.js (15.1KiB)
https://s0.2mdn.net/4507622/1522960082624/HTML5_300x250_Generic_EN.html (8.8KiB of inline JavaScript)
https://tpc.googlesyndication.com/pagead/js/r20180509/r20110914/client/ext/m_qs_click_protection.js (8.3KiB)
https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills (5.6KiB of inline JavaScript)
https://banners.host.bannerflow.com/5a6ba42fbaae30223843aa5d.rSnrv6e2i5ev.html?cb=636535384512240084&clickpixel=%2F%2Ftracker.bannerflow.co
m%2Fapi%2Ftr%2Fclick%3Fdata%3D%257B%2522account%2522%253A%2522shutterstock%2522%252C%2522brand%2522%253A%2522589873bd5
a4e8749bce403ff%2522%252C%2522placement%2522%253A%25225a787825e314e03f581fcc26%2522%252C%2522ad%2522%253A%25225a6ba42f
baae30223843aa5e%2522%252C%2522bannerset%2522%253A%25225a6ba42cbaae30223843aa4b%2522%252C%2522banner%2522%253A%2522
5a6ba42fbaae30223843aa5d%2522%252C%2522cb%2522%253A705%252C%2522spotIndexes%2522%253A0%252C%2522bannerIds%2522%253A%
25225a6ba42fbaae30223843aa5d%2522%257D&targeturl=https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%3Fxai%3DAKAOjsuUmoKWsv3P
ME62aS6_LAzA4q6T3r10q4yWvXLqKsiy19Sjo4OugQgw0mC25PCu1RPPeY_rGRbQ0fnK0Y2U0KVVgeaj47dw5_veo2-8yST69ssznzXYNn_FIOoin-9hv7oGl5
DsVT7uSPxf7ReibwMWg3IaLYEoIt77q9xEqJS4FYfBoF2SJpqSYA0KIPUCme3N2xgVHUnsy_dnWI6iJOGQKL76Xm8BocKmXKxXOD6mYQpfzWnY2Cjbh4thHf
AetosE7TLpBeqjNZtMxZ2ISVpGotZfQT9GRDYdnd5ETQrFXckOX0cg7lAvrJO7s_3Xg3irynruBd5Jj55ByYTnw4RdToWxdCC9t1ZpK35Pi6RKiZSYwUiEA8yZgt_H
6vCWOenrLCYJVlVeyx5XHnmE7Mp8XVPkRRuxvLw3BKRi4vrZIMWZsT5886XJXmlKG8b2LQDT9EXt_-oi1ZnTOuE2kC9wHuJNauj_Lv_3B3QpDQkR70Z2CIKr
81Bg4T-lFB_39d58c3U9lIPyKhNNh6pa0vOg1niG7jDob0xXY6QOH-6sNLq8mM_dxv0C2VrIFNNBvy__sqlp5Ywe5wfOs2A_p3l_i1gl9igfgkfdQ26BNVHPkXSsBJ
4svQZDb4p1UDdWAziZ4L4CD5iCpt3NHCftHurufLbDfd7z0APxfVVESKGam6KNc-xDx3K3FTuEUlFAm1iZCBop72BQ21NPU0j4hK2Jgf2p9Ne1SmrBsRDEuK
TNmjHF33WpWWtciG76AJj0LS0emfh_lkc8w298hozNcAWHx2iQA-zTgRkx3JSacELAKg_lI1aokNmEJVBoIh1GHkPaeuXyWzW79Vg9qgo3WHDrgyjsiJkn2-4gw
lPjtsdWeomZzrTBO9EERCQjInzGrOTF8-dmSDZx9wjU8WF5dysLB_9IE9_uONvow-hNiapS-wJOaEKPSw%26sig%3DCg0ArKJSzO6_E0GhRtBLEAE%26urlfi
x%3D1%26rm_eid%3D4134037%26adurl%3Dhttps%253A%252F%252Fwww.shutterstock.com%253Fpl%253DGDNCAIM-lggeneric%2526cr%253Dgeneri
c%2526utm_source%253Dadwords%2526utm_campaign%253Dimage_ca_lggeneric%2526utm_term%253D1_topicsmallbusiness-gdn%2526utm_cont
ent%253Dgeneric_print_en_html5_diederick%2526utm_medium%253Dacq_display%2526dclid%253D%2525edclid!&targetwindow=_blank (3.0KiB of
inline JavaScript)
https://tpc.googlesyndication.com/safeframe/1-0-23/html/container.html (2.5KiB of inline JavaScript)
https://banners.host.bannerflow.com/5a6ba42fbaae30223843aa5d.html?cb=636535384496114351&clickpixel=%2F%2Ftracker.bannerflow.com%2Fapi%2
Ftr%2Fclick%3Fdata%3D%257B%2522account%2522%253A%2522shutterstock%2522%252C%2522brand%2522%253A%2522589873bd5a4e8749bce4
03ff%2522%252C%2522placement%2522%253A%25225a787825e314e03f581fcc26%2522%252C%2522ad%2522%253A%25225a6ba42fbaae3022384
3aa5e%2522%252C%2522bannerset%2522%253A%25225a6ba42cbaae30223843aa4b%2522%252C%2522banner%2522%253A%25225a6ba42fbaae
30223843aa5d%2522%252C%2522cb%2522%253A504%252C%2522spotIndexes%2522%253A0%252C%2522bannerIds%2522%253A%25225a6ba42f
baae30223843aa5d%2522%257D&targeturl=https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%3Fxai%3DAKAOjsuUmoKWsv3PME62aS6_LAz
A4q6T3r10q4yWvXLqKsiy19Sjo4OugQgw0mC25PCu1RPPeY_rGRbQ0fnK0Y2U0KVVgeaj47dw5_veo2-8yST69ssznzXYNn_FIOoin-9hv7oGl5DsVT7uSPxf7R
eibwMWg3IaLYEoIt77q9xEqJS4FYfBoF2SJpqSYA0KIPUCme3N2xgVHUnsy_dnWI6iJOGQKL76Xm8BocKmXKxXOD6mYQpfzWnY2Cjbh4thHfAetosE7TLpBe
qjNZtMxZ2ISVpGotZfQT9GRDYdnd5ETQrFXckOX0cg7lAvrJO7s_3Xg3irynruBd5Jj55ByYTnw4RdToWxdCC9t1ZpK35Pi6RKiZSYwUiEA8yZgt_H6vCWOenrLCY
JVlVeyx5XHnmE7Mp8XVPkRRuxvLw3BKRi4vrZIMWZsT5886XJXmlKG8b2LQDT9EXt_-oi1ZnTOuE2kC9wHuJNauj_Lv_3B3QpDQkR70Z2CIKr81Bg4T-lFB_39
d58c3U9lIPyKhNNh6pa0vOg1niG7jDob0xXY6QOH-6sNLq8mM_dxv0C2VrIFNNBvy__sqlp5Ywe5wfOs2A_p3l_i1gl9igfgkfdQ26BNVHPkXSsBJ4svQZDb4p1U
DdWAziZ4L4CD5iCpt3NHCftHurufLbDfd7z0APxfVVESKGam6KNc-xDx3K3FTuEUlFAm1iZCBop72BQ21NPU0j4hK2Jgf2p9Ne1SmrBsRDEuKTNmjHF33Wp
WWtciG76AJj0LS0emfh_lkc8w298hozNcAWHx2iQA-zTgRkx3JSacELAKg_lI1aokNmEJVBoIh1GHkPaeuXyWzW79Vg9qgo3WHDrgyjsiJkn2-4gwlPjtsdWeomZ
zrTBO9EERCQjInzGrOTF8-dmSDZx9wjU8WF5dysLB_9IE9_uONvow-hNiapS-wJOaEKPSw%26sig%3DCg0ArKJSzO6_E0GhRtBLEAE%26urlfix%3D1%26r
m_eid%3D4134037%26adurl%3Dhttps%253A%252F%252Fwww.shutterstock.com%253Fpl%253DGDNCAIM-lggeneric%2526cr%253Dgeneric%2526utm
_source%253Dadwords%2526utm_campaign%253Dimage_ca_lggeneric%2526utm_term%253D1_topicsmallbusiness-gdn%2526utm_content%253Dg
eneric_print_en_html5_diederick%2526utm_medium%253Dacq_display%2526dclid%253D%2525edclid!&targetwindow=_blank (2.1KiB of inline
JavaScript)
https://cdn.digitru.st/prod/1.5.9/dt.html (1.8KiB of inline JavaScript)
https://s0.2mdn.net/5546719/1517844523458/Diederick---Print-Example---B-300x600-English-US-animated-636534413223380290-5a787825e314e03f581
fcc26.html (1.2KiB of inline JavaScript)
https://pagead2.googlesyndication.com/pagead/s/cookie_push.html (898B of inline JavaScript)
https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-2045593450925494&output=html&h=90&slotname=7921566055&adk=2170461093&adf=3
279755405&w=728&loeid=10583696&guci=2.2.0.0.2.2&format=728x90&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-w
ould-you-use-the-bitcoin-to-pay-your-bills&ea=0&flash=0&wgl=1&dt=1526366242483&bpp=49&bdt=2052&fdt=55&idt=937&shv=r20180509&cbv=r2018050
4&saldr=aa&correlator=4281922991748&frm=24&ga_vid=699727079.1526366243&ga_sid=1526366243&ga_hid=1332454947&ga_fc=0&pv=2&iag=14&ic
sg=2&nhd=2&dssz=3&mdo=0&mso=0&u_tz=-420&u_his=3&u_java=0&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=24&u_nplug=4&u_nmime=5&
adx=0&ady=0&biw=-12245933&bih=-12245933&isw=728&ish=90&ifk=249314431&scr_x=-12245933&scr_y=-12245933&eid=10593696%2C21061122%2
C21061782%2C21061995&oid=3&rx=0&eae=2&brdim=0%2C0%2C0%2C0%2C1367%2C0%2C1366%2C857%2C728%2C90&vis=1&rsz=%7C%7CceE%
7C&abl=NS&ppjl=u&pfx=0&fu=8208&bc=5&osw_key=3665728787&ifi=1&fsb=1&dtd=1009 (320B of inline JavaScript)
https://bcp.crwdcntrl.net/5/c=9234/rand=418293130/pv=y/genp=cis130%3A73/genp=cis130%3A50/genp=cis130%3A72/genp=cis130%3A22/genp=cis130%
3A69/genp=cis130%3A70/genp=cis130%3A53/genp=cis130%3A71/genp=cis130%3A20/genp=cis130%3A103/genp=cis130%3A17/genp=cis130%3A91/ge
np=cis130%3A126/genp=cis130%3A89/genp=cis130%3A86/genp=cis130%3A129/genp=cis130%3A88/genp=cis130%3A85/genp=cis130%3A90/genp=cis
130%3A16/genp=cis130%3A117/genp=cis130%3A19/genp=cis130%3A84/int=%23OpR%2371882%23girlsaskguys%20%3A%20Total%20Site%20Traffic/i
nt=%23OpR%2371883%23girlsaskguys%20%3A%20Site%20Section%20%3A%20trending/rt=ifr (232B of inline JavaScript)

Analyze your site at https://gtmetrix.com Page 31 of 59


PageSpeed Recommendations

https://aa.agkn.com/adscores/g.json?sid=9202507693 (68B)

Optimize images D (60) AVG SCORE: 70% IMAGES HIGH

Optimize the following images to reduce their size by 48.4KiB (5% reduction).

Losslessly compressing https://images.girlsaskguys.com/users/3605fedd56ce30d37ade6b163147b940/thumb.jpg?34 could save 11.0KiB (84%


reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/users/c7e527792857f9de3689894ec4b36834/thumb.jpg?730 could save 8.3KiB (83%
reduction). See optimized version.
Losslessly compressing https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15251659200349305815.jpg&static=tru
e&pos=face&h=315&w=420&static=true&fmt=jpeg could save 4.7KiB (31% reduction). See optimized version.
Losslessly compressing https://imgg-cdn.mgid.com/2543/2543365_492x328.jpg could save 4.5KiB (12% reduction). See optimized version.
Losslessly compressing https://tpc.googlesyndication.com/daca_images/simgad/579286379986262663 could save 3.4KiB (21% reduction). See optimized
version.
Losslessly compressing https://ss3.zedo.com/utils/zplayer/wrapper/v8.7/HTML/app/assets/images/10k.gif could save 2.6KiB (26% reduction). See optimized
version.
Losslessly compressing https://aka-cdn-ns.adtechus.com/images/5205_adwords_300x250V1.jpg could save 949B (2% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/Content/images/desktop/icons/social_bar.png could save 868B (26% reduction). See optimized v
ersion.
Losslessly compressing https://images.girlsaskguys.com/Content/images/desktop/icons/ico-hdr-video.png could save 843B (62% reduction). See optimize
d version.
Losslessly compressing https://images.girlsaskguys.com/users/90046799048c380bf0db17c2b027428f/thumb.jpg?11 could save 843B (42% reduction).
See optimized version.
Losslessly compressing https://imgg-cdn.mgid.com/2591/2591379_492x328.jpg could save 837B (3% reduction). See optimized version.
Losslessly compressing https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/1502817721.jpg&static=true&pos=face&
h=315&w=420&static=true&fmt=jpeg could save 772B (4% reduction). See optimized version.
Losslessly compressing https://d3dytsf4vrjn5x.cloudfront.net/105614/300x250/c9127ce6e704a656ec453fb89c2c9c40.jpg could save 688B (8% reduction).
See optimized version.
Losslessly compressing https://imgg-cdn.mgid.com/2741/2741147_492x328.jpg could save 687B (5% reduction). See optimized version.
Losslessly compressing https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15262929340920703819.jpg&static=tru
e&pos=face&h=315&w=420&static=true&fmt=jpeg could save 597B (3% reduction). See optimized version.
Losslessly compressing https://d3dytsf4vrjn5x.cloudfront.net/79578/300x250/3a067d0e2548a891d8acc7ef4bea71a9.jpg could save 523B (4% reduction).
See optimized version.
Losslessly compressing https://cdn.video.playwire.com/1020169/videos/5428844/poster_0000.png could save 465B (1% reduction). See optimized version.
Losslessly compressing https://strips.vidible.tv/prod/5a7cc316cc912f2b46cda331/2018-02-08/5a7cc316cc912f2b46cda331_1920x1080_v1.mp4?c=10&r=1
0&h=116 could save 437B (1% reduction). See optimized version.
Losslessly compressing https://d3dytsf4vrjn5x.cloudfront.net/6279/300x250/aa5c21a395a124b874d248d14d4b1d86.jpg could save 436B (3% reduction).
See optimized version.
Losslessly compressing https://images.girlsaskguys.com/users/a2df52953b57078def3d37c5fa6efd41/thumb.jpg?2 could save 368B (13% reduction). See
optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/useravatars/bookworm.jpg could save 331B (15% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/useravatars/preppy.jpg could save 330B (16% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/useravatars/girly-girl.jpg could save 329B (14% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/useravatars/old-fashioned.jpg could save 323B (17% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/useravatars/daddys-girl.jpg could save 319B (15% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/useravatars/artistic.jpg could save 316B (15% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/useravatars/explorer.jpg could save 314B (16% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/howdoilook.jpg could save 263B (8% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/news.jpg could save 263B (9% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/religion.jpg could save 256B (10% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/other.jpg could save 248B (8% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/sports-new.jpg could save 234B (5% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/tech.jpg could save 204B (6% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/content/images/emoji-data/1f61e.png could save 195B (4% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/giftsforwomen.jpg could save 105B (2% reduction). See optimized version.
Losslessly compressing https://cm.g.doubleclick.net/pixel?google_nid=1024&google_ula=1641347&google_hm=MjExNTI4MjY3OTQyMjYzNjY5NA&google_
push=AHNF13JojzivWFqPOcr7lNcbbAbuG-JnwijDtnP2f8azHL0tDw could save 100B (58% reduction). See optimized version.
Losslessly compressing https://cm.g.doubleclick.net/pixel?google_nid=rp&google_hm=Skg3QjFZTTAtQy1FVkRP could save 100B (58% reduction). See opti
mized version.
Losslessly compressing https://cm.g.doubleclick.net/pixel?google_nid=xaxis_dev_dmp&google_push=AHNF13LbXjmhF2nMPQDwP5zhkliwkCLNe7p6mTw
3MZy3Temd&google_hm=MTE0NTkxOTgxNDg2NTgzMDQwMzQ could save 100B (58% reduction). See optimized version.
Losslessly compressing https://cm.g.doubleclick.net/pixel?google_ula=1293153&google_nid=ssc&google_push=AHNF13K1U0oHz3pO9YwYuBybTIrvkrJS
2KUfFPqT1hDigA&google_sc&google_hm=uxOcjG3dRxO_75e55HGqIg could save 100B (58% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/breakup.jpg could save 85B (2% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/flirting.jpg could save 85B (2% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/education.jpg could save 80B (2% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/girlsaskguys.jpg could save 65B (1% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/Content/images/desktop/icons/login.png could save 60B (13% reduction). See optimized version.

Analyze your site at https://gtmetrix.com Page 32 of 59


PageSpeed Recommendations

Losslessly compressing https://images.girlsaskguys.com/custom/topics/generalhealth.jpg could save 58B (2% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/travel.jpg could save 52B (1% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/marriage.jpg could save 38B (1% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/style.jpg could save 29B (1% reduction). See optimized version.
Losslessly compressing https://images.girlsaskguys.com/custom/topics/mensbehavior.jpg could save 26B (1% reduction). See optimized version.
Losslessly compressing https://tpc.googlesyndication.com/daca_images/simgad/111467612252394556?w=400&h=209 could save 5B (1% reduction). See
optimized version.
Losslessly compressing https://www.girlsaskguys.com/favicon.png could save 4B (1% reduction). See optimized version.
Losslessly compressing https://d32oduq093hvot.cloudfront.net/icons/sponsoredlinksby.png could save 1B (1% reduction). See optimized version.

Enable gzip compression D (69) AVG SCORE: 84% SERVER HIGH

Enable compression for the following resources to reduce their transfer size by 37.1KiB (62% reduction).

Compressing https://tags.bkrtx.com/js/bk-coretag.js could save 25.3KiB (66% reduction).


Compressing https://brand-ad-innovations.s3.amazonaws.com/intention-score/bai-intention-score.js could save 4.1KiB (59% reduction).
Compressing https://3787.tm.zedo.com/v1/eae01302-531c-41de-b573-22ad40de42e4/atm.js could save 3.5KiB (61% reduction).
Compressing https://js.agkn.com/prod/v0/tag.js could save 1.6KiB (56% reduction).
Compressing https://loadus.exelator.com/load/?p=233&g=001&j=d&xl8blockcheck=1 could save 1005B (50% reduction).
Compressing https://cdn.mgid.com/images/by_mgid_adc_logo_mini.svg could save 866B (49% reduction).
Compressing https://loadus.exelator.com/load//net.php?n=PGltZyB3aWR0aD0iMSIgYWx0PSJFeGVsYXRlRGF0YSIgc3R5bGU9ImRpc3BsYXk6bm9uZSIgc3J
jPSJodHRwczovL21hdGNoLmFkc3J2ci5vcmcvdHJhY2svY21mL2dlbmVyaWM%2FdHRkX3BpZD1leGVsYXRlIiBoZWlnaHQ9IjEiPjwvaW1nPjxpbWcgd2lkdGg9
IjEiIGFsdD0iRXhlbGF0ZURhdGEiIHN0eWxlPSJkaXNwbGF5Om5vbmUiIHNyYz0iaHR0cHM6Ly9jbS5nLmRvdWJsZWNsaWNrLm5ldC9waXhlbD9nb29nbGVf
bmlkPWV4ZWxhdGUmZ29vZ2xlX2NtJmdvb2dsZV9zYyIgaGVpZ2h0PSIxIj48L2ltZz48aW1nIHdpZHRoPSIxIiBhbHQ9IkV4ZWxhdGVEYXRhIiBzdHlsZT0iZGlzcGx
heTpub25lIiBzcmM9Imh0dHBzOi8vYWEuYWdrbi5jb20vYWRzY29yZXMvZy5waXhlbD9zaWQ9OTIxMTU3ODYwOCZfZz05MDYmZXg9NTZhZGE2OWM5ZWI4Mz
g2NWQxODJjZWJkZmE2OWMyODYiIGhlaWdodD0iMSI%2BPC9pbWc%2BaHR0cHM6Ly9zeW5jLmFscGhvbnNvLnR2L3N5bmM%2Fc3JjaWQ9MjAwJnB1aW
Q9NTZhZGE2OWM5ZWI4Mzg2NWQxODJjZWJkZmE2OWMyODY%3D&h=5e998ea83c17f6ec866445aeff81a992 could save 268B (48% reduction).
Compressing https://fastlane-adv.rubiconproject.com/v1/auction/video could save 191B (47% reduction).
Compressing https://d.agkn.com/iframe/8613/?che=705521044&c=%7B%22bpid%22%3A%22girlsaskguysus%22%2C%22loc%22%3A%22https%3A%2F
%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills%22%2C%22ref%22%3A%22-1%22%2C%22cid
%22%3A%22-1%22%2C%22sid%22%3A%22-1%22%2C%22gen%22%3A%22UnknownGender%22%2C%22age%22%3A%22%22%2C%22cat%22%3A
%22Trending%20%26amp%3B%20News%22%2C%22brd%22%3A%22-1%22%7D could save 184B (40% reduction).
Compressing https://config.playwire.com/1020169/videos/v2/5428844/manifest.f4m could save 175B (41% reduction).
Compressing https://aa.agkn.com/adscores/g.json?sid=9202507693 could save 32B (21% reduction).
Compressing https://optimized-by.rubiconproject.com/a/api/vast.xml?account_id=11406&site_id=134230&zone_id=861300&size_id=201&tg_c.language=&
p_window.depth=0&rf=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&p_window.u
rl=&p_window.w=697&p_window.h=392&p_aso.video.ext.ad.w=697&p_aso.video.ext.ad.h=392&width=697&height=392&p_aso.video.api=2&p_aso.video.m
imes=application/javascript,video/mp4&cb=6383734030743098&rp_secure=1 could save 12B (7% reduction).
Compressing https://www.girlsaskguys.com/home/vod?excludedVideos=&topicId=164 could save 12B (7% reduction).

Specify a cache validator C (71) AVG SCORE: 94% SERVER HIGH

The following resources are missing a cache validator. Resources that do not specify a cache validator cannot be refreshed efficiently.
Specify a Last-Modified or ETag header to enable cache validation for the following resources:

https://api.content-ad.net/px.gif
https://cm.mgid.com/i.js
https://connect.facebook.net/en_US/fbevents.js
https://connect.facebook.net/signals/config/781946178525195?v=2.8.14&r=stable
https://content.jwplatform.com/libraries/WLok6WPd.js
https://fastlane-adv.rubiconproject.com/v1/auction/video
https://imasdk.googleapis.com/js/sdkloader/ima3.js
https://pagead2.googlesyndication.com/pub-config/r20160913/ca-pub-2045593450925494.js
https://s0.2mdn.net/instream/html5/ima3.js
https://s0.2mdn.net/instream/video/client.js
https://sb.scorecardresearch.com/beacon.js
https://stags.bluekai.com/site/4448?id=13f65afa-4e1c-4000-801e-e370d6ce628f
https://www.girlsaskguys.com/brand-styles?v=1613
https://www.googletagmanager.com/gtm.js?id=GTM-5KMRGL

Optimize the order of styles and scripts B (83) AVG SCORE: 94% CSS/JS HIGH

Analyze your site at https://gtmetrix.com Page 33 of 59


PageSpeed Recommendations

The following inline script blocks were found in https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-


your-bills between an external CSS file and another resource. To allow parallel downloading, move the inline script before the external CSS
file, or after the next resource.

Inline script block #1

The following external CSS files were included after an external JavaScript file in https://www.girlsaskguys.com/trending-news/q2125533-
would-you-use-the-bitcoin-to-pay-your-bills. To ensure CSS files are downloaded in parallel, always include external CSS before external
JavaScript.

https://www.girlsaskguys.com/brand-styles?v=1613

M inify HTM L A (97) AVG SCORE: 98% CONTENT LOW

Minify HTML for the following resources to reduce their size by 3.8KiB (2% reduction).

Minifying https://imasdk.googleapis.com/js/core/bridge3.208.0_en.html could save 1.4KiB (1% reduction) after compression. See optimized version.
Minifying https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills could save 547B (3% reduction) after
compression. See optimized version.
Minifying https://banners.host.bannerflow.com/5a6ba42fbaae30223843aa5d.html?cb=636535384496114351&clickpixel=%2F%2Ftracker.bannerflow.com%
2Fapi%2Ftr%2Fclick%3Fdata%3D%257B%2522account%2522%253A%2522shutterstock%2522%252C%2522brand%2522%253A%2522589873bd5a4e
8749bce403ff%2522%252C%2522placement%2522%253A%25225a787825e314e03f581fcc26%2522%252C%2522ad%2522%253A%25225a6ba42fbaa
e30223843aa5e%2522%252C%2522bannerset%2522%253A%25225a6ba42cbaae30223843aa4b%2522%252C%2522banner%2522%253A%25225a6
ba42fbaae30223843aa5d%2522%252C%2522cb%2522%253A504%252C%2522spotIndexes%2522%253A0%252C%2522bannerIds%2522%253A%252
25a6ba42fbaae30223843aa5d%2522%257D&targeturl=https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%3Fxai%3DAKAOjsuUmoKWsv3PME6
2aS6_LAzA4q6T3r10q4yWvXLqKsiy19Sjo4OugQgw0mC25PCu1RPPeY_rGRbQ0fnK0Y2U0KVVgeaj47dw5_veo2-8yST69ssznzXYNn_FIOoin-9hv7oGl5DsVT
7uSPxf7ReibwMWg3IaLYEoIt77q9xEqJS4FYfBoF2SJpqSYA0KIPUCme3N2xgVHUnsy_dnWI6iJOGQKL76Xm8BocKmXKxXOD6mYQpfzWnY2Cjbh4thHfAetos
E7TLpBeqjNZtMxZ2ISVpGotZfQT9GRDYdnd5ETQrFXckOX0cg7lAvrJO7s_3Xg3irynruBd5Jj55ByYTnw4RdToWxdCC9t1ZpK35Pi6RKiZSYwUiEA8yZgt_H6vCW
OenrLCYJVlVeyx5XHnmE7Mp8XVPkRRuxvLw3BKRi4vrZIMWZsT5886XJXmlKG8b2LQDT9EXt_-oi1ZnTOuE2kC9wHuJNauj_Lv_3B3QpDQkR70Z2CIKr81Bg4
T-lFB_39d58c3U9lIPyKhNNh6pa0vOg1niG7jDob0xXY6QOH-6sNLq8mM_dxv0C2VrIFNNBvy__sqlp5Ywe5wfOs2A_p3l_i1gl9igfgkfdQ26BNVHPkXSsBJ4svQZ
Db4p1UDdWAziZ4L4CD5iCpt3NHCftHurufLbDfd7z0APxfVVESKGam6KNc-xDx3K3FTuEUlFAm1iZCBop72BQ21NPU0j4hK2Jgf2p9Ne1SmrBsRDEuKTNmjH
F33WpWWtciG76AJj0LS0emfh_lkc8w298hozNcAWHx2iQA-zTgRkx3JSacELAKg_lI1aokNmEJVBoIh1GHkPaeuXyWzW79Vg9qgo3WHDrgyjsiJkn2-4gwlPjtsd
WeomZzrTBO9EERCQjInzGrOTF8-dmSDZx9wjU8WF5dysLB_9IE9_uONvow-hNiapS-wJOaEKPSw%26sig%3DCg0ArKJSzO6_E0GhRtBLEAE%26urlfix%3D
1%26rm_eid%3D4134037%26adurl%3Dhttps%253A%252F%252Fwww.shutterstock.com%253Fpl%253DGDNCAIM-lggeneric%2526cr%253Dgeneric%25
26utm_source%253Dadwords%2526utm_campaign%253Dimage_ca_lggeneric%2526utm_term%253D1_topicsmallbusiness-gdn%2526utm_content%2
53Dgeneric_print_en_html5_diederick%2526utm_medium%253Dacq_display%2526dclid%253D%2525edclid!&targetwindow=_blank could save 274B
(6% reduction) after compression. See optimized version.
Minifying https://banners.host.bannerflow.com/5a6ba42fbaae30223843aa5d.rSnrv6e2i5ev.html?cb=636535384512240084&clickpixel=%2F%2Ftracker.ban
nerflow.com%2Fapi%2Ftr%2Fclick%3Fdata%3D%257B%2522account%2522%253A%2522shutterstock%2522%252C%2522brand%2522%253A%25225
89873bd5a4e8749bce403ff%2522%252C%2522placement%2522%253A%25225a787825e314e03f581fcc26%2522%252C%2522ad%2522%253A%252
25a6ba42fbaae30223843aa5e%2522%252C%2522bannerset%2522%253A%25225a6ba42cbaae30223843aa4b%2522%252C%2522banner%2522%25
3A%25225a6ba42fbaae30223843aa5d%2522%252C%2522cb%2522%253A705%252C%2522spotIndexes%2522%253A0%252C%2522bannerIds%252
2%253A%25225a6ba42fbaae30223843aa5d%2522%257D&targeturl=https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%3Fxai%3DAKAOjsuU
moKWsv3PME62aS6_LAzA4q6T3r10q4yWvXLqKsiy19Sjo4OugQgw0mC25PCu1RPPeY_rGRbQ0fnK0Y2U0KVVgeaj47dw5_veo2-8yST69ssznzXYNn_FIOoin
-9hv7oGl5DsVT7uSPxf7ReibwMWg3IaLYEoIt77q9xEqJS4FYfBoF2SJpqSYA0KIPUCme3N2xgVHUnsy_dnWI6iJOGQKL76Xm8BocKmXKxXOD6mYQpfzWnY2
Cjbh4thHfAetosE7TLpBeqjNZtMxZ2ISVpGotZfQT9GRDYdnd5ETQrFXckOX0cg7lAvrJO7s_3Xg3irynruBd5Jj55ByYTnw4RdToWxdCC9t1ZpK35Pi6RKiZSYwUiE
A8yZgt_H6vCWOenrLCYJVlVeyx5XHnmE7Mp8XVPkRRuxvLw3BKRi4vrZIMWZsT5886XJXmlKG8b2LQDT9EXt_-oi1ZnTOuE2kC9wHuJNauj_Lv_3B3QpDQkR
70Z2CIKr81Bg4T-lFB_39d58c3U9lIPyKhNNh6pa0vOg1niG7jDob0xXY6QOH-6sNLq8mM_dxv0C2VrIFNNBvy__sqlp5Ywe5wfOs2A_p3l_i1gl9igfgkfdQ26BNV
HPkXSsBJ4svQZDb4p1UDdWAziZ4L4CD5iCpt3NHCftHurufLbDfd7z0APxfVVESKGam6KNc-xDx3K3FTuEUlFAm1iZCBop72BQ21NPU0j4hK2Jgf2p9Ne1Smr
BsRDEuKTNmjHF33WpWWtciG76AJj0LS0emfh_lkc8w298hozNcAWHx2iQA-zTgRkx3JSacELAKg_lI1aokNmEJVBoIh1GHkPaeuXyWzW79Vg9qgo3WHDrgyjs
iJkn2-4gwlPjtsdWeomZzrTBO9EERCQjInzGrOTF8-dmSDZx9wjU8WF5dysLB_9IE9_uONvow-hNiapS-wJOaEKPSw%26sig%3DCg0ArKJSzO6_E0GhRtBLEA
E%26urlfix%3D1%26rm_eid%3D4134037%26adurl%3Dhttps%253A%252F%252Fwww.shutterstock.com%253Fpl%253DGDNCAIM-lggeneric%2526cr%2
53Dgeneric%2526utm_source%253Dadwords%2526utm_campaign%253Dimage_ca_lggeneric%2526utm_term%253D1_topicsmallbusiness-gdn%252
6utm_content%253Dgeneric_print_en_html5_diederick%2526utm_medium%253Dacq_display%2526dclid%253D%2525edclid!&targetwindow=_blank
could save 257B (14% reduction) after compression. See optimized version.
Minifying https://platform.twitter.com/widgets/widget_iframe.d383dc1d510865aceaa5e552afcf5663.html?origin=https%3A%2F%2Fwww.girlsaskguys.com&s
ettingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings could save 231B (4% reduction) after compression. See optimized version.
Minifying https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-2045593450925494&output=html&h=250&slotname=1623751017&adk=31491693
05&adf=3279755404&w=300&loeid=10583696&guci=2.2.0.0.2.2&format=300x250&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2
125533-would-you-use-the-bitcoin-to-pay-your-bills&ea=0&flash=0&avail_w=300&wgl=1&dt=1526366242586&bpp=40&bdt=2140&fdt=41&idt=985&shv=r20
180509&cbv=r20180504&saldr=aa&correlator=4874975820298&frm=24&ga_vid=2018610630.1526366244&ga_sid=1526366244&ga_hid=489908666&ga
_fc=0&pv=2&iag=14&icsg=2&nhd=2&dssz=3&mdo=0&mso=0&u_tz=-420&u_his=3&u_java=0&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=24&u_
nplug=4&u_nmime=5&adx=0&ady=0&biw=-12245933&bih=-12245933&isw=300&ish=250&ifk=4241672993&scr_x=-12245933&scr_y=-12245933&eid=10
593696%2C21061122%2C21061782%2C62710015%2C62710017%2C21061995%2C188690903&oid=3&rx=0&eae=2&brdim=0%2C0%2C0%2C0%2C1
367%2C0%2C1366%2C857%2C300%2C250&vis=1&rsz=%7C%7CceE%7C&abl=NS&ppjl=u&pfx=0&fu=8208&bc=5&osw_key=2988443705&ifi=1&fsb=1&
dtd=1008 could save 223B (1% reduction) after compression. See optimized version.

Analyze your site at https://gtmetrix.com Page 34 of 59


PageSpeed Recommendations

Minifying https://cdn.digitru.st/prod/1.5.9/dt.html could save 208B (23% reduction) after compression. See optimized version.
Minifying https://s0.2mdn.net/4507622/1522960082624/HTML5_300x250_Generic_EN.html could save 177B (1% reduction) after compression. See optimiz
ed version.
Minifying https://s0.2mdn.net/5546719/1517844523458/Diederick---Print-Example---B-300x600-English-US-animated-636534413223380290-5a787825e31
4e03f581fcc26.html could save 123B (13% reduction) after compression. See optimized version.
Minifying https://trends.revcontent.com/serve.js.php?w=95566&t=rc_718&c=1526366237833&width=1366&referer=https://www.girlsaskguys.com/trending-n
ews/q2125533-would-you-use-the-bitcoin-to-pay-your-bills could save 109B (9% reduction) after compression. See optimized version.
Minifying https://eus.rubiconproject.com/usync.html could save 68B (1% reduction) after compression. See optimized version.
Minifying https://tpc.googlesyndication.com/sodar/6uQTKQJz.html could save 48B (1% reduction) after compression. See optimized version.
Minifying https://bcp.crwdcntrl.net/5/c=9234/rand=418293130/pv=y/genp=cis130%3A73/genp=cis130%3A50/genp=cis130%3A72/genp=cis130%3A22/genp=
cis130%3A69/genp=cis130%3A70/genp=cis130%3A53/genp=cis130%3A71/genp=cis130%3A20/genp=cis130%3A103/genp=cis130%3A17/genp=cis130
%3A91/genp=cis130%3A126/genp=cis130%3A89/genp=cis130%3A86/genp=cis130%3A129/genp=cis130%3A88/genp=cis130%3A85/genp=cis130%3A90
/genp=cis130%3A16/genp=cis130%3A117/genp=cis130%3A19/genp=cis130%3A84/int=%23OpR%2371882%23girlsaskguys%20%3A%20Total%20Site%
20Traffic/int=%23OpR%2371883%23girlsaskguys%20%3A%20Site%20Section%20%3A%20trending/rt=ifr could save 46B (6% reduction) after
compression. See optimized version.
Minifying https://googleads.g.doubleclick.net/pagead/html/r20180509/r20180504/zrt_lookup.html could save 37B (1% reduction) after compression. See opti
mized version.
Minifying https://staticxx.facebook.com/connect/xd_arbiter/r/RQ7NiRXMcYA.js?version=42 could save 33B (1% reduction) after compression. See optimized v
ersion.
Minifying https://loadus.exelator.com/load//net.php?n=PGltZyB3aWR0aD0iMSIgYWx0PSJFeGVsYXRlRGF0YSIgc3R5bGU9ImRpc3BsYXk6bm9uZSIgc3JjPSJ
odHRwczovL21hdGNoLmFkc3J2ci5vcmcvdHJhY2svY21mL2dlbmVyaWM%2FdHRkX3BpZD1leGVsYXRlIiBoZWlnaHQ9IjEiPjwvaW1nPjxpbWcgd2lkdGg9IjEiI
GFsdD0iRXhlbGF0ZURhdGEiIHN0eWxlPSJkaXNwbGF5Om5vbmUiIHNyYz0iaHR0cHM6Ly9jbS5nLmRvdWJsZWNsaWNrLm5ldC9waXhlbD9nb29nbGVfbml
kPWV4ZWxhdGUmZ29vZ2xlX2NtJmdvb2dsZV9zYyIgaGVpZ2h0PSIxIj48L2ltZz48aW1nIHdpZHRoPSIxIiBhbHQ9IkV4ZWxhdGVEYXRhIiBzdHlsZT0iZGlzcGxheT
pub25lIiBzcmM9Imh0dHBzOi8vYWEuYWdrbi5jb20vYWRzY29yZXMvZy5waXhlbD9zaWQ9OTIxMTU3ODYwOCZfZz05MDYmZXg9NTZhZGE2OWM5ZWI4Mzg2N
WQxODJjZWJkZmE2OWMyODYiIGhlaWdodD0iMSI%2BPC9pbWc%2BaHR0cHM6Ly9zeW5jLmFscGhvbnNvLnR2L3N5bmM%2Fc3JjaWQ9MjAwJnB1aWQ9
NTZhZGE2OWM5ZWI4Mzg2NWQxODJjZWJkZmE2OWMyODY%3D&h=5e998ea83c17f6ec866445aeff81a992 could save 24B (5% reduction). See optimized
version.
Minifying https://pagead2.googlesyndication.com/pagead/s/cookie_push.html could save 19B (3% reduction) after compression. See optimized version.
Minifying https://d.agkn.com/iframe/8613/?che=705521044&c=%7B%22bpid%22%3A%22girlsaskguysus%22%2C%22loc%22%3A%22https%3A%2F%2F
www.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills%22%2C%22ref%22%3A%22-1%22%2C%22cid%22
%3A%22-1%22%2C%22sid%22%3A%22-1%22%2C%22gen%22%3A%22UnknownGender%22%2C%22age%22%3A%22%22%2C%22cat%22%3A%22
Trending%20%26amp%3B%20News%22%2C%22brd%22%3A%22-1%22%7D could save 12B (3% reduction). See optimized version.
Minifying https://cdn.playwire.com/bolt/js/zeus/frame-d554cf2ecd-f88fcb9b73.html could save 11B (4% reduction) after compression. See optimized version.
Minifying https://tpc.googlesyndication.com/safeframe/1-0-23/html/container.html could save 10B (1% reduction) after compression. See optimized version.
Minifying https://cdn.playwire.com/bolt/js/zeus/themes/orion/skins/orion-da503a7aa1.html could save 7B (1% reduction) after compression. See optimized ve
rsion.
Minifying https://stags.bluekai.com/site/51679?ret=html&phint=content_interests%3DEntertainment%2CEntertainment&phint=__bk_t%3DWould%20you%2
0use%20the%20Bitcoin%20to%20pay%20your%20bills%3F%20-%20GirlsAskGuys&phint=__bk_k%3D&phint=__bk_l%3Dhttps%3A%2F%2Fwww.girlsask
guys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&limit=10&bknms=ver=2.0,ua=7de6568bc0f4ae12338097d0e02f2bb
5,t=1526366245046,m=771e7900871147d0dd9026daa1e11b1c,k=1,lang=07ef608d8a7e9677f0b83775f0b83775,sr=1367x858x24,tzo=420,hss=true,hls=tr
ue,idb=true,addb=undefined,odb=function,cpu=4b4e4ecaab1f1c93ab1f1c93ab1f1c93,platform=1c17637dbf2f8edebf2f8edebf2f8ede,notrack=,plugins=4841
c73a9e54d579f2ba2327b834369f&r=15081578 could save 3B (5% reduction). See optimized version.
Minifying https://platform.twitter.com/jot.html could save 2B (3% reduction) after compression. See optimized version.
Minifying https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-2045593450925494&output=html&h=90&slotname=7921566055&adk=217046109
3&adf=3279755405&w=728&loeid=10583696&guci=2.2.0.0.2.2&format=728x90&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq212
5533-would-you-use-the-bitcoin-to-pay-your-bills&ea=0&flash=0&wgl=1&dt=1526366242483&bpp=49&bdt=2052&fdt=55&idt=937&shv=r20180509&cbv=r2
0180504&saldr=aa&correlator=4281922991748&frm=24&ga_vid=699727079.1526366243&ga_sid=1526366243&ga_hid=1332454947&ga_fc=0&pv=2&ia
g=14&icsg=2&nhd=2&dssz=3&mdo=0&mso=0&u_tz=-420&u_his=3&u_java=0&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=24&u_nplug=4&u_n
mime=5&adx=0&ady=0&biw=-12245933&bih=-12245933&isw=728&ish=90&ifk=249314431&scr_x=-12245933&scr_y=-12245933&eid=10593696%2C210
61122%2C21061782%2C21061995&oid=3&rx=0&eae=2&brdim=0%2C0%2C0%2C0%2C1367%2C0%2C1366%2C857%2C728%2C90&vis=1&rsz=%7C
%7CceE%7C&abl=NS&ppjl=u&pfx=0&fu=8208&bc=5&osw_key=3665728787&ifi=1&fsb=1&dtd=1009 could save 1B (1% reduction) after compression. See
optimized version.

Specify a character set early A (99) AVG SCORE: 100% CONTENT MEDIUM

The following resources have no character set specified in their HTTP headers. Specifying a character set in HTTP headers can speed up
browser rendering.

https://banners.host.bannerflow.com/5a6ba42fbaae30223843aa5d.html?cb=636535384496114351&clickpixel=%2F%2Ftracker.bannerflow.com%2Fapi%2
Ftr%2Fclick%3Fdata%3D%257B%2522account%2522%253A%2522shutterstock%2522%252C%2522brand%2522%253A%2522589873bd5a4e8749bce4
03ff%2522%252C%2522placement%2522%253A%25225a787825e314e03f581fcc26%2522%252C%2522ad%2522%253A%25225a6ba42fbaae3022384
3aa5e%2522%252C%2522bannerset%2522%253A%25225a6ba42cbaae30223843aa4b%2522%252C%2522banner%2522%253A%25225a6ba42fbaae
30223843aa5d%2522%252C%2522cb%2522%253A504%252C%2522spotIndexes%2522%253A0%252C%2522bannerIds%2522%253A%25225a6ba42f
baae30223843aa5d%2522%257D&targeturl=https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%3Fxai%3DAKAOjsuUmoKWsv3PME62aS6_LAz
A4q6T3r10q4yWvXLqKsiy19Sjo4OugQgw0mC25PCu1RPPeY_rGRbQ0fnK0Y2U0KVVgeaj47dw5_veo2-8yST69ssznzXYNn_FIOoin-9hv7oGl5DsVT7uSPxf7R
eibwMWg3IaLYEoIt77q9xEqJS4FYfBoF2SJpqSYA0KIPUCme3N2xgVHUnsy_dnWI6iJOGQKL76Xm8BocKmXKxXOD6mYQpfzWnY2Cjbh4thHfAetosE7TLpBe
qjNZtMxZ2ISVpGotZfQT9GRDYdnd5ETQrFXckOX0cg7lAvrJO7s_3Xg3irynruBd5Jj55ByYTnw4RdToWxdCC9t1ZpK35Pi6RKiZSYwUiEA8yZgt_H6vCWOenrLCY
JVlVeyx5XHnmE7Mp8XVPkRRuxvLw3BKRi4vrZIMWZsT5886XJXmlKG8b2LQDT9EXt_-oi1ZnTOuE2kC9wHuJNauj_Lv_3B3QpDQkR70Z2CIKr81Bg4T-lFB_39

Analyze your site at https://gtmetrix.com Page 35 of 59


PageSpeed Recommendations

d58c3U9lIPyKhNNh6pa0vOg1niG7jDob0xXY6QOH-6sNLq8mM_dxv0C2VrIFNNBvy__sqlp5Ywe5wfOs2A_p3l_i1gl9igfgkfdQ26BNVHPkXSsBJ4svQZDb4p1U
DdWAziZ4L4CD5iCpt3NHCftHurufLbDfd7z0APxfVVESKGam6KNc-xDx3K3FTuEUlFAm1iZCBop72BQ21NPU0j4hK2Jgf2p9Ne1SmrBsRDEuKTNmjHF33Wp
WWtciG76AJj0LS0emfh_lkc8w298hozNcAWHx2iQA-zTgRkx3JSacELAKg_lI1aokNmEJVBoIh1GHkPaeuXyWzW79Vg9qgo3WHDrgyjsiJkn2-4gwlPjtsdWeomZ
zrTBO9EERCQjInzGrOTF8-dmSDZx9wjU8WF5dysLB_9IE9_uONvow-hNiapS-wJOaEKPSw%26sig%3DCg0ArKJSzO6_E0GhRtBLEAE%26urlfix%3D1%26r
m_eid%3D4134037%26adurl%3Dhttps%253A%252F%252Fwww.shutterstock.com%253Fpl%253DGDNCAIM-lggeneric%2526cr%253Dgeneric%2526utm
_source%253Dadwords%2526utm_campaign%253Dimage_ca_lggeneric%2526utm_term%253D1_topicsmallbusiness-gdn%2526utm_content%253Dg
eneric_print_en_html5_diederick%2526utm_medium%253Dacq_display%2526dclid%253D%2525edclid!&targetwindow=_blank
https://banners.host.bannerflow.com/5a6ba42fbaae30223843aa5d.rSnrv6e2i5ev.html?cb=636535384512240084&clickpixel=%2F%2Ftracker.bannerflow.co
m%2Fapi%2Ftr%2Fclick%3Fdata%3D%257B%2522account%2522%253A%2522shutterstock%2522%252C%2522brand%2522%253A%2522589873bd5
a4e8749bce403ff%2522%252C%2522placement%2522%253A%25225a787825e314e03f581fcc26%2522%252C%2522ad%2522%253A%25225a6ba42f
baae30223843aa5e%2522%252C%2522bannerset%2522%253A%25225a6ba42cbaae30223843aa4b%2522%252C%2522banner%2522%253A%2522
5a6ba42fbaae30223843aa5d%2522%252C%2522cb%2522%253A705%252C%2522spotIndexes%2522%253A0%252C%2522bannerIds%2522%253A%
25225a6ba42fbaae30223843aa5d%2522%257D&targeturl=https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%3Fxai%3DAKAOjsuUmoKWsv3P
ME62aS6_LAzA4q6T3r10q4yWvXLqKsiy19Sjo4OugQgw0mC25PCu1RPPeY_rGRbQ0fnK0Y2U0KVVgeaj47dw5_veo2-8yST69ssznzXYNn_FIOoin-9hv7oGl5
DsVT7uSPxf7ReibwMWg3IaLYEoIt77q9xEqJS4FYfBoF2SJpqSYA0KIPUCme3N2xgVHUnsy_dnWI6iJOGQKL76Xm8BocKmXKxXOD6mYQpfzWnY2Cjbh4thHf
AetosE7TLpBeqjNZtMxZ2ISVpGotZfQT9GRDYdnd5ETQrFXckOX0cg7lAvrJO7s_3Xg3irynruBd5Jj55ByYTnw4RdToWxdCC9t1ZpK35Pi6RKiZSYwUiEA8yZgt_H
6vCWOenrLCYJVlVeyx5XHnmE7Mp8XVPkRRuxvLw3BKRi4vrZIMWZsT5886XJXmlKG8b2LQDT9EXt_-oi1ZnTOuE2kC9wHuJNauj_Lv_3B3QpDQkR70Z2CIKr
81Bg4T-lFB_39d58c3U9lIPyKhNNh6pa0vOg1niG7jDob0xXY6QOH-6sNLq8mM_dxv0C2VrIFNNBvy__sqlp5Ywe5wfOs2A_p3l_i1gl9igfgkfdQ26BNVHPkXSsBJ
4svQZDb4p1UDdWAziZ4L4CD5iCpt3NHCftHurufLbDfd7z0APxfVVESKGam6KNc-xDx3K3FTuEUlFAm1iZCBop72BQ21NPU0j4hK2Jgf2p9Ne1SmrBsRDEuK
TNmjHF33WpWWtciG76AJj0LS0emfh_lkc8w298hozNcAWHx2iQA-zTgRkx3JSacELAKg_lI1aokNmEJVBoIh1GHkPaeuXyWzW79Vg9qgo3WHDrgyjsiJkn2-4gw
lPjtsdWeomZzrTBO9EERCQjInzGrOTF8-dmSDZx9wjU8WF5dysLB_9IE9_uONvow-hNiapS-wJOaEKPSw%26sig%3DCg0ArKJSzO6_E0GhRtBLEAE%26urlfi
x%3D1%26rm_eid%3D4134037%26adurl%3Dhttps%253A%252F%252Fwww.shutterstock.com%253Fpl%253DGDNCAIM-lggeneric%2526cr%253Dgeneri
c%2526utm_source%253Dadwords%2526utm_campaign%253Dimage_ca_lggeneric%2526utm_term%253D1_topicsmallbusiness-gdn%2526utm_cont
ent%253Dgeneric_print_en_html5_diederick%2526utm_medium%253Dacq_display%2526dclid%253D%2525edclid!&targetwindow=_blank
https://cdn.digitru.st/prod/1.5.9/dt.html
https://cdn.playwire.com/bolt/js/zeus/themes/orion/skins/orion-da503a7aa1.html
https://imasdk.googleapis.com/js/core/bridge3.208.0_en.html
https://s0.2mdn.net/4507622/1522960082624/HTML5_300x250_Generic_EN.html
https://s0.2mdn.net/5546719/1517844523458/Diederick---Print-Example---B-300x600-English-US-animated-636534413223380290-5a787825e314e03f581
fcc26.html
https://tpc.googlesyndication.com/safeframe/1-0-23/html/container.html
https://tpc.googlesyndication.com/sodar/6uQTKQJz.html

Specify image dimensions A (99) AVG SCORE: 98% IMAGES MEDIUM

The following image(s) are missing width and/or height attributes.

https://bttrack.com/pixel/cookiesync?source=0b0edea9-c9fe-4b9c-9bcd-a51022f2873f&publisherid=MjcxNmQxZTgwMWU5YjNlZGZlY2VkZWNmZDViMzIwOG
Q=&pushdata=109&secure=1 (Dimensions: 1 x 1)
https://d32oduq093hvot.cloudfront.net/icons/c_ad_logo.png (Dimensions: 300 x 84) (2 uses)
https://g.cwkuki.com/cs/D8f2l?u=MjcxNmQxZTgwMWU5YjNlZGZlY2VkZWNmZDViMzIwOGQ= (Dimensions: 1 x 1)
https://images.girlsaskguys.com/custom/useravatars/girly-girl.jpg (Dimensions: 60 x 60)

M inify CSS A (99) AVG SCORE: 95% CSS HIGH

Minify CSS for the following resources to reduce their size by 312B (1% reduction).

Minifying https://fonts.googleapis.com/css?family=Roboto:100,400,700|Noto+Sans:400,400i,700,700i|Raleway&subset=latin,latin-ext could save 90B (8%


reduction) after compression. See optimized version.
Minifying https://fonts.googleapis.com/css?family=Roboto:300 could save 55B (11% reduction) after compression. See optimized version.
Minifying https://fonts.googleapis.com/css?family=Roboto:700 could save 55B (11% reduction) after compression. See optimized version.
Minifying https://fonts.googleapis.com/css?family=Fira+Sans could save 52B (11% reduction) after compression. See optimized version.
Minifying https://images.girlsaskguys.com/content/css/desktop.min.css?29912 could save 50B (1% reduction) after compression. See optimized version.
Minifying https://cdn.revcontent.com/build/css/rev2.min.css?v=c75d860790cfbd475402bedb463df89716d9b597 could save 4B (1% reduction) after
compression. See optimized version.
Minifying https://www.girlsaskguys.com/brand-styles?v=1613 could save 4B (1% reduction) after compression. See optimized version.
Minifying https://cdn.playwire.com/bolt/js/zeus/themes/orion/skins/orion-ca0ae891d2.css could save 1B (1% reduction) after compression. See optimized ver
sion.
Minifying https://images.girlsaskguys.com/content/css/desktop-question.min.css?29912 could save 1B (1% reduction) after compression. See optimized ver
sion.

Remove query strings from static resources F (40) AVG SCORE: 88% CONTENT LOW

Analyze your site at https://gtmetrix.com Page 36 of 59


PageSpeed Recommendations

Resources with a "?" in the URL are not cached by some proxy caching servers. Remove the query string and encode the parameters into
the URL for the following resources:

https://ad.lkqd.net/vpaid/formats.js?pid=323&sid=174302&apt=auto&volume=0&render=&controls=&support=&execution=outstream&placement=slider&trac
ki=&trackc=&c1=&c2=&c3=&rnd=85599948&m=&close=true&closedelay=15
https://ad.lkqd.net/vpaid/vpaid.js?fusion=1.0
https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/coverings/skin6.js?cb=17.21.1374
https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/skins/skin6.js?cb=17.21.1374
https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/vidible-min.js?embedtag=1
https://cdn.playwire.com/bolt/js/zeus/core-a160b37fa6.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/main.js?1526366245845
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/appearance_manager-1137985e12.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/controlbar-bb56ce11ba.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/preroll_screen-de6bb182df.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/scrubber-6af035d6af.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/titlebar-3af6709de6.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/volume-a2adcb71e7.js?noext
https://cdn.revcontent.com/build/css/rev2.min.css?v=c75d860790cfbd475402bedb463df89716d9b597
https://cdn.revcontent.com/build/js/rev2.min.js?v=c75d860790cfbd475402bedb463df89716d9b597&del=//trends.revcontent.com/&lg=//cdn.revcontent.com/a
ssets/img/rc-logo.png&ci=//cdn.revcontent.com/assets/img/icon-close.png&ab=//trends.revcontent.com/rc-about.php&ldr=//cdn.revcontent.com/assets/img/rc
-spinner-md.gif&ht=//trends.revcontent.com/rc-interests.php
https://connect.facebook.net/signals/config/781946178525195?v=2.8.14&r=stable
https://embed.bannerflow.com/5a787825e314e03f581fcc26?targetwindow=_blank&targeturl=https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%
3Fxai%3DAKAOjsuUmoKWsv3PME62aS6_LAzA4q6T3r10q4yWvXLqKsiy19Sjo4OugQgw0mC25PCu1RPPeY_rGRbQ0fnK0Y2U0KVVgeaj47dw5_veo2-8yST
69ssznzXYNn_FIOoin-9hv7oGl5DsVT7uSPxf7ReibwMWg3IaLYEoIt77q9xEqJS4FYfBoF2SJpqSYA0KIPUCme3N2xgVHUnsy_dnWI6iJOGQKL76Xm8BocKmX
KxXOD6mYQpfzWnY2Cjbh4thHfAetosE7TLpBeqjNZtMxZ2ISVpGotZfQT9GRDYdnd5ETQrFXckOX0cg7lAvrJO7s_3Xg3irynruBd5Jj55ByYTnw4RdToWxdCC9t1Z
pK35Pi6RKiZSYwUiEA8yZgt_H6vCWOenrLCYJVlVeyx5XHnmE7Mp8XVPkRRuxvLw3BKRi4vrZIMWZsT5886XJXmlKG8b2LQDT9EXt_-oi1ZnTOuE2kC9wHuJN
auj_Lv_3B3QpDQkR70Z2CIKr81Bg4T-lFB_39d58c3U9lIPyKhNNh6pa0vOg1niG7jDob0xXY6QOH-6sNLq8mM_dxv0C2VrIFNNBvy__sqlp5Ywe5wfOs2A_p3l_i
1gl9igfgkfdQ26BNVHPkXSsBJ4svQZDb4p1UDdWAziZ4L4CD5iCpt3NHCftHurufLbDfd7z0APxfVVESKGam6KNc-xDx3K3FTuEUlFAm1iZCBop72BQ21NPU0j4
hK2Jgf2p9Ne1SmrBsRDEuKTNmjHF33WpWWtciG76AJj0LS0emfh_lkc8w298hozNcAWHx2iQA-zTgRkx3JSacELAKg_lI1aokNmEJVBoIh1GHkPaeuXyWzW7
9Vg9qgo3WHDrgyjsiJkn2-4gwlPjtsdWeomZzrTBO9EERCQjInzGrOTF8-dmSDZx9wjU8WF5dysLB_9IE9_uONvow-hNiapS-wJOaEKPSw%26sig%3DCg0ArK
JSzO6_E0GhRtBLEAE%26urlfix%3D1%26rm_eid%3D4134037%26adurl%3Dhttps%253A%252F%252Fwww.shutterstock.com%253Fpl%253DGDNCAIM-l
ggeneric%2526cr%253Dgeneric%2526utm_source%253Dadwords%2526utm_campaign%253Dimage_ca_lggeneric%2526utm_term%253D1_topicsmal
lbusiness-gdn%2526utm_content%253Dgeneric_print_en_html5_diederick%2526utm_medium%253Dacq_display%2526dclid%253D%2525edclid!
https://images.girlsaskguys.com/Content/images/gag-icon-sprites_2x.png?29912
https://images.girlsaskguys.com/Content/images/gag-sprites_2x.png?29912
https://images.girlsaskguys.com/content/css/desktop-question.min.css?29912
https://images.girlsaskguys.com/content/css/desktop.min.css?29912
https://images.girlsaskguys.com/content/js/core.min.js?29912
https://images.girlsaskguys.com/content/js/desktop-question.min.js?29912
https://images.girlsaskguys.com/custom/vod.js?v=3
https://images.girlsaskguys.com/users/3605fedd56ce30d37ade6b163147b940/thumb.jpg?34
https://images.girlsaskguys.com/users/407a1fe82081edfe2142a1bd712333ae/thumb.jpg?103
https://images.girlsaskguys.com/users/5f4a019d7489907f1adbd4a5e958caaa/thumb.png?193
https://images.girlsaskguys.com/users/75ab76f760760bcef9de01fdfc18191a/thumb.jpg?32
https://images.girlsaskguys.com/users/90046799048c380bf0db17c2b027428f/thumb.jpg?11
https://images.girlsaskguys.com/users/91f236d7fed960c00c91938fb0fada60/thumb.jpg?178
https://images.girlsaskguys.com/users/a0f42d95421a6ab7113bbd6a848e5117/thumb.jpg?12
https://images.girlsaskguys.com/users/a2df52953b57078def3d37c5fa6efd41/thumb.jpg?2
https://images.girlsaskguys.com/users/a41f387573ffe9d087a039e6981af59d/thumb.jpg?23
https://images.girlsaskguys.com/users/c7e527792857f9de3689894ec4b36834/thumb.jpg?730
https://images.girlsaskguys.com/users/d7003ccb54f220dcf951cd593f321c56/thumb.jpg?3
https://images.girlsaskguys.com/users/ff7c902d0474dfa50e2ba891115e06a8/thumb.png?94
https://images.host.bannerflow.com/5a6ba42fbaae30223843aa5d.rSnrv6e2i5ev.jpg?cb=636535384508927248
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/1502817721.jpg&static=true&pos=face&h=315&w=420&static=tru
e&fmt=jpeg
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15251659200349305815.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15262929340920703819.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg
https://jsc.mgid.com/g/i/girlsaskguys.com.114115.js?t=11841423
https://resources.host.bannerflow.com/background-300x600-e476e3ae-d435-49eb-b881-8c3595b6ebfc-12Co258.png?v=636526008470000000
https://resources.host.bannerflow.com/hand2-300x600-1499395a-e1d0-4a41-8c98-d5d935c63aa1-FBo198.png?v=636526008830000000
https://resources.host.bannerflow.com/laptop-300x600-253098d8-7fee-4e89-8515-f207ee2f12bf-122o120.png?v=636526008880000000
https://resources.host.bannerflow.com/shutterstock-white-print-ee8ce1a0-d960-4b06-921e-301883159cb5-C8o1D.png?v=636233660500000000
https://ss3.zedo.com/gecko/tag/networkIds.js?3413964706
https://ss3.zedo.com/gecko/tag/networkIds.js?4022784076
https://ss3.zedo.com/gecko/util/tagutil.js?0.9061893410802477
https://strips.vidible.tv/prod/5a7cc316cc912f2b46cda331/2018-02-08/5a7cc316cc912f2b46cda331_1920x1080_v1.mp4?c=10&r=10&h=116
https://tags.crwdcntrl.net/c/9234/cc.js?ns=_cc9234
https://tpc.googlesyndication.com/daca_images/simgad/111467612252394556?w=400&h=209

Analyze your site at https://gtmetrix.com Page 37 of 59


PageSpeed Recommendations

https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-
would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.5301647826567564&7331981622
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:386}];et=387;eid=114;ai=RB%20Fastlane%5Erubicon%5E372688_1-6
40-480%5E%5E370;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.504325
710117083&9087452643
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:387}];et=388;eid=114;ai=RB%20Fastlane%5Erubicon_preroll%5E372
688_1-640-480%5E%5E371;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.
504325710117083&4083087879
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:5715},{%2258%22:4865},{%2229%22:4865}];eid=57;g=0;m=0;w=0;pu
=https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.13718164852373071&4426382426
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:726}];eid=99;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-
news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.8705402673723517&5354521700
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:850},{%2258%22:0}];et=851;eid=29;g=0;m=0;w=0;pu=https://www.girls
askguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.3228689037474104&4839259873
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:850}];eid=58;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-
news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.39588017330681624&8755066302
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-
would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.2927374370194238&8580108141
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000002;s=1;x=21760;met=[{%2228%22:5}];eid=99;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-ne
ws/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.6439502242755126&6573045409

Specify a Vary: Accept-Encoding header D (61) AVG SCORE: 96% SERVER LOW

The following publicly cacheable, compressible resources should have a "Vary: Accept-Encoding" header:

https://3787.tm.zedo.com/v1/eae01302-531c-41de-b573-22ad40de42e4/atm.js
https://ad.lkqd.net/mediafile/blocking_regex
https://ad.lkqd.net/vpaid/formats.js?pid=323&sid=174302&apt=auto&volume=0&render=&controls=&support=&execution=outstream&placement=slider&trac
ki=&trackc=&c1=&c2=&c3=&rnd=85599948&m=&close=true&closedelay=15
https://ad.lkqd.net/vpaid/vpaid.js?fusion=1.0
https://brand-ad-innovations.s3.amazonaws.com/intention-score/bai-intention-score.js
https://c.amazon-adsystem.com/aax2/amzn_ads.js
https://cdn.mgid.com/images/by_mgid_adc_logo_mini.svg
https://cdn.playwire.com/bolt/js/__pwhb__03082018.js
https://cdn.playwire.com/bolt/js/plow-2.6.1.js
https://cdn.playwire.com/bolt/js/zeus/core-a160b37fa6.js?noext
https://cdn.playwire.com/bolt/js/zeus/embed.js
https://cdn.playwire.com/bolt/js/zeus/iframe/libs/require.js
https://cdn.playwire.com/bolt/js/zeus/themes/orion/libs/shifty-4b401bda95.js
https://cdn.playwire.com/bolt/js/zeus/themes/orion/main.js?1526366245845
https://cdn.playwire.com/bolt/js/zeus/themes/orion/skins/orion-ca0ae891d2.css
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/appearance_manager-1137985e12.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/controlbar-bb56ce11ba.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/preroll_screen-de6bb182df.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/scrubber-6af035d6af.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/titlebar-3af6709de6.js?noext
https://cdn.playwire.com/bolt/js/zeus/themes/orion/ui/volume-a2adcb71e7.js?noext
https://cdn.playwire.com/bolt/js/zeus/zeus_boot-081af9499a-bcff0847d3.js
https://cdn.playwire.com/bolt/js/zeus/zeus_global-bb33b35511-b2f521c1ba.js
https://cdn.playwire.com/bolt/js/zeus/zeus_iframe-3658f262ba.js
https://cdn.revcontent.com/build/css/rev2.min.css?v=c75d860790cfbd475402bedb463df89716d9b597
https://cdn.revcontent.com/build/js/rev2.min.js?v=c75d860790cfbd475402bedb463df89716d9b597&del=//trends.revcontent.com/&lg=//cdn.revcontent.com/a
ssets/img/rc-logo.png&ci=//cdn.revcontent.com/assets/img/icon-close.png&ab=//trends.revcontent.com/rc-about.php&ldr=//cdn.revcontent.com/assets/img/rc
-spinner-md.gif&ht=//trends.revcontent.com/rc-interests.php
https://code.jquery.com/jquery-3.1.1.min.js
https://connect.facebook.net/en_US/fbevents.js
https://connect.facebook.net/signals/config/781946178525195?v=2.8.14&r=stable
https://content.jwplatform.com/libraries/WLok6WPd.js
https://embed.bannerflow.com/5a787825e314e03f581fcc26?targetwindow=_blank&targeturl=https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%
3Fxai%3DAKAOjsuUmoKWsv3PME62aS6_LAzA4q6T3r10q4yWvXLqKsiy19Sjo4OugQgw0mC25PCu1RPPeY_rGRbQ0fnK0Y2U0KVVgeaj47dw5_veo2-8yST
69ssznzXYNn_FIOoin-9hv7oGl5DsVT7uSPxf7ReibwMWg3IaLYEoIt77q9xEqJS4FYfBoF2SJpqSYA0KIPUCme3N2xgVHUnsy_dnWI6iJOGQKL76Xm8BocKmX
KxXOD6mYQpfzWnY2Cjbh4thHfAetosE7TLpBeqjNZtMxZ2ISVpGotZfQT9GRDYdnd5ETQrFXckOX0cg7lAvrJO7s_3Xg3irynruBd5Jj55ByYTnw4RdToWxdCC9t1Z
pK35Pi6RKiZSYwUiEA8yZgt_H6vCWOenrLCYJVlVeyx5XHnmE7Mp8XVPkRRuxvLw3BKRi4vrZIMWZsT5886XJXmlKG8b2LQDT9EXt_-oi1ZnTOuE2kC9wHuJN
auj_Lv_3B3QpDQkR70Z2CIKr81Bg4T-lFB_39d58c3U9lIPyKhNNh6pa0vOg1niG7jDob0xXY6QOH-6sNLq8mM_dxv0C2VrIFNNBvy__sqlp5Ywe5wfOs2A_p3l_i
1gl9igfgkfdQ26BNVHPkXSsBJ4svQZDb4p1UDdWAziZ4L4CD5iCpt3NHCftHurufLbDfd7z0APxfVVESKGam6KNc-xDx3K3FTuEUlFAm1iZCBop72BQ21NPU0j4
hK2Jgf2p9Ne1SmrBsRDEuKTNmjHF33WpWWtciG76AJj0LS0emfh_lkc8w298hozNcAWHx2iQA-zTgRkx3JSacELAKg_lI1aokNmEJVBoIh1GHkPaeuXyWzW7
9Vg9qgo3WHDrgyjsiJkn2-4gwlPjtsdWeomZzrTBO9EERCQjInzGrOTF8-dmSDZx9wjU8WF5dysLB_9IE9_uONvow-hNiapS-wJOaEKPSw%26sig%3DCg0ArK
JSzO6_E0GhRtBLEAE%26urlfix%3D1%26rm_eid%3D4134037%26adurl%3Dhttps%253A%252F%252Fwww.shutterstock.com%253Fpl%253DGDNCAIM-l
ggeneric%2526cr%253Dgeneric%2526utm_source%253Dadwords%2526utm_campaign%253Dimage_ca_lggeneric%2526utm_term%253D1_topicsmal

Analyze your site at https://gtmetrix.com Page 38 of 59


PageSpeed Recommendations

lbusiness-gdn%2526utm_content%253Dgeneric_print_en_html5_diederick%2526utm_medium%253Dacq_display%2526dclid%253D%2525edclid!
https://fastlane-adv.rubiconproject.com/v1/auction/video
https://js.agkn.com/prod/v0/tag.js
https://pagead2.googlesyndication.com/pub-config/r20160913/ca-pub-2045593450925494.js
https://rules.quantcount.com/rules-p-aD1qr93XuF6aC.js
https://scripts.host.bannerflow.com/1.0.7/bf.min.js
https://scripts.host.bannerflow.com/1.1.8/render.min.js
https://static.criteo.net/js/ld/publishertag.js
https://tags.bkrtx.com/js/bk-coretag.js

Avoid a character set in the meta tag A (95) AVG SCORE: 100% CONTENT LOW

The following resources have a character set specified in a meta tag. Specifying a character set in a meta tag disables the lookahead
downloader in IE8. To improve resource download parallelization, move the character set to the HTTP Content-Type response header.

https://banners.host.bannerflow.com/5a6ba42fbaae30223843aa5d.html?cb=636535384496114351&clickpixel=%2F%2Ftracker.bannerflow.com%2Fapi%2
Ftr%2Fclick%3Fdata%3D%257B%2522account%2522%253A%2522shutterstock%2522%252C%2522brand%2522%253A%2522589873bd5a4e8749bce4
03ff%2522%252C%2522placement%2522%253A%25225a787825e314e03f581fcc26%2522%252C%2522ad%2522%253A%25225a6ba42fbaae3022384
3aa5e%2522%252C%2522bannerset%2522%253A%25225a6ba42cbaae30223843aa4b%2522%252C%2522banner%2522%253A%25225a6ba42fbaae
30223843aa5d%2522%252C%2522cb%2522%253A504%252C%2522spotIndexes%2522%253A0%252C%2522bannerIds%2522%253A%25225a6ba42f
baae30223843aa5d%2522%257D&targeturl=https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%3Fxai%3DAKAOjsuUmoKWsv3PME62aS6_LAz
A4q6T3r10q4yWvXLqKsiy19Sjo4OugQgw0mC25PCu1RPPeY_rGRbQ0fnK0Y2U0KVVgeaj47dw5_veo2-8yST69ssznzXYNn_FIOoin-9hv7oGl5DsVT7uSPxf7R
eibwMWg3IaLYEoIt77q9xEqJS4FYfBoF2SJpqSYA0KIPUCme3N2xgVHUnsy_dnWI6iJOGQKL76Xm8BocKmXKxXOD6mYQpfzWnY2Cjbh4thHfAetosE7TLpBe
qjNZtMxZ2ISVpGotZfQT9GRDYdnd5ETQrFXckOX0cg7lAvrJO7s_3Xg3irynruBd5Jj55ByYTnw4RdToWxdCC9t1ZpK35Pi6RKiZSYwUiEA8yZgt_H6vCWOenrLCY
JVlVeyx5XHnmE7Mp8XVPkRRuxvLw3BKRi4vrZIMWZsT5886XJXmlKG8b2LQDT9EXt_-oi1ZnTOuE2kC9wHuJNauj_Lv_3B3QpDQkR70Z2CIKr81Bg4T-lFB_39
d58c3U9lIPyKhNNh6pa0vOg1niG7jDob0xXY6QOH-6sNLq8mM_dxv0C2VrIFNNBvy__sqlp5Ywe5wfOs2A_p3l_i1gl9igfgkfdQ26BNVHPkXSsBJ4svQZDb4p1U
DdWAziZ4L4CD5iCpt3NHCftHurufLbDfd7z0APxfVVESKGam6KNc-xDx3K3FTuEUlFAm1iZCBop72BQ21NPU0j4hK2Jgf2p9Ne1SmrBsRDEuKTNmjHF33Wp
WWtciG76AJj0LS0emfh_lkc8w298hozNcAWHx2iQA-zTgRkx3JSacELAKg_lI1aokNmEJVBoIh1GHkPaeuXyWzW79Vg9qgo3WHDrgyjsiJkn2-4gwlPjtsdWeomZ
zrTBO9EERCQjInzGrOTF8-dmSDZx9wjU8WF5dysLB_9IE9_uONvow-hNiapS-wJOaEKPSw%26sig%3DCg0ArKJSzO6_E0GhRtBLEAE%26urlfix%3D1%26r
m_eid%3D4134037%26adurl%3Dhttps%253A%252F%252Fwww.shutterstock.com%253Fpl%253DGDNCAIM-lggeneric%2526cr%253Dgeneric%2526utm
_source%253Dadwords%2526utm_campaign%253Dimage_ca_lggeneric%2526utm_term%253D1_topicsmallbusiness-gdn%2526utm_content%253Dg
eneric_print_en_html5_diederick%2526utm_medium%253Dacq_display%2526dclid%253D%2525edclid!&targetwindow=_blank
https://cdn.playwire.com/bolt/js/zeus/frame-d554cf2ecd-f88fcb9b73.html
https://s0.2mdn.net/4507622/1522960082624/HTML5_300x250_Generic_EN.html
https://tpc.googlesyndication.com/safeframe/1-0-23/html/container.html
https://tpc.googlesyndication.com/sodar/6uQTKQJz.html

Avoid bad requests A (100) AVG SCORE: 98% CONTENT HIGH

You scored 100% on this recommendation - nothing to do here!

Avoid landing page redirects A (100) AVG SCORE: 98% SERVER HIGH

You scored 100% on this recommendation - nothing to do here!

Inline small CSS A (100) AVG SCORE: 96% CSS HIGH

You scored 100% on this recommendation - nothing to do here!

Inline small JavaScript A (100) AVG SCORE: 94% JS HIGH

You scored 100% on this recommendation - nothing to do here!

Put CSS in the document head A (100) AVG SCORE: 100% CSS HIGH

Analyze your site at https://gtmetrix.com Page 39 of 59


PageSpeed Recommendations

You scored 100% on this recommendation - nothing to do here!

Combine images using CSS sprites A (100) AVG SCORE: 89% IMAGES HIGH

You scored 100% on this recommendation - nothing to do here!

Avoid CSS @import A (100) AVG SCORE: 98% CSS MEDIUM

You scored 100% on this recommendation - nothing to do here!

Prefer asynchronous resources A (100) AVG SCORE: 100% JS MEDIUM

You scored 100% on this recommendation - nothing to do here!

Analyze your site at https://gtmetrix.com Page 40 of 59


YSlow Recommendations

YSlow Recommendations
RECOMMENDATION GRADE RELATIVE TYPE PRIORITY

Add Expires headers F (0) AVG SCORE: 25% SERVER HIGH

There are 152 static components without a far-future expiration date.

https://fonts.googleapis.com/css?family=Roboto:100,400,700|Noto+Sans:400,400i,700,700i|Raleway&subset=latin,latin-ext
https://s.ntv.io/serve/load.js
https://delivery.vidible.tv/jsonp/pid=5952b3519e45102b384dc50e/57d325e276a6057ba4a05a00.js
https://js.agkn.com/prod/v0/tag.js
https://www.googletagservices.com/tag/js/gpt.js
https://www.googletagmanager.com/gtm.js?id=GTM-5KMRGL
https://adservice.google.ca/adsid/integrator.js?domain=www.girlsaskguys.com
https://adservice.google.com/adsid/integrator.js?domain=www.girlsaskguys.com
https://jadserve.postrelease.com/t?ntv_url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-yo
ur-bills
https://www.google-analytics.com/analytics.js
https://connect.facebook.net/en_US/fbevents.js
https://connect.facebook.net/en_US/sdk.js
https://d31qbv1cthcecs.cloudfront.net/atrk.js
https://apis.google.com/js/platform.js?onload=gpCallback
https://static.criteo.net/js/ld/publishertag.js
https://trk.vidible.tv/trk/impression.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&s=true&pv=17.21.1374&ifr=false&pt=html5&
sid=efdce8e2-3139-406f-ae35-d896bafed6d4&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-
pay-your-bills&cb=0.19348104656279563
https://trk.vidible.tv/trk/js-loaded.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&s=true&ifr=false&pt=html5&sid=efdce8e2-313
9-406f-ae35-d896bafed6d4&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&cb=
0.19348104656279563
https://gag.gagwebapi.com/api/webpush/script?token=&client=ChromeDesktop
https://platform.twitter.com/widgets.js
https://pagead2.googlesyndication.com/pagead/show_companion_ad.js
https://securepubads.g.doubleclick.net/gampad/ads?gdfp_req=1&correlator=962398745317386&output=json_html&callback=googletag.impl.pubads.callb
ackProxy1&impl=fifs&adsid=NT&json_a=1&hxva=1&scor=4434133215623769&eid=21061645%2C21061764&vrg=205&guci=2.2.0.0.2.2&sc=1&sfv=1-0-23
&iu_parts=281896196%2CGirlsAskGuys_Desktop_Masthead%2CGirlsAskGuys_Desktop_Right_1%2CGirlsAskGuys_Desktop_Right_2%2CGirlsAskGuys
_Desktop_AboveOpinions%2CGirlsAskGuys_Desktop_BetweenGender%2CGirlsAskGuys_Desktop_UnderOpinions%2CGirlsAskGuys_Desktop_Inter_1%
2CGirlsAskGuys_Desktop_EndOfPage%2CGirlsAskGuys_Desktop_Inter_2%2CGirlsAskGuys_Desktop_Inter_4&enc_prev_ius=%2F0%2F1%2C%2F0%2F
2%2C%2F0%2F3%2C%2F0%2F4%2C%2F0%2F5%2C%2F0%2F6%2C%2F0%2F7%2C%2F0%2F8%2C%2F0%2F9%2C%2F0%2F10&prev_iu_szs=320x
50%7C300x250%7C728x90%7C970x250%7C730x250%2C320x50%7C300x250%2C320x50%7C300x250%7C300x600%2C320x50%7C728x90%7C730x
400%7C300x250%7C336x280%7C730x250%2C320x50%7C728x90%7C730x400%7C300x250%7C336x280%7C730x250%2C320x50%7C728x90%7C73
0x400%7C730x500%7C300x250%7C336x280%7C730x250%2C1x1%2C320x50%7C728x90%7C730x400%7C300x250%7C336x280%7C730x250%2C1x1
%2C1x1&fluid=height%2Cheight%2Cheight%2Cheight%2Cheight%2Cheight%2C0%2Cheight%2C0%2C0&eri=4&cust_params=XperLevel%3D0%26utm_
source%3DNone%26utm_medium%3DNone%26utm_campaign%3DNone%26PostInfo%3Dq2125533%26Gender%3DUnknownGender%26Age%3DUnk
nownAge%26Topics%3Dtrending-news%26Mobile%3DMobileNo%26MarkedAs%3DFalse%26ShowAllAds%3DYes%26PageType%3DQuestion%26BrandI
d%3DGAG-0&cookie_enabled=1&bc=5&abxe=1&lmt=1526366238&dt=1526366238744&frm=20&biw=1366&bih=768&oid=3&adxs=0%2C908%2C908%2
C163%2C163%2C163%2C683%2C163%2C683%2C683&adys=0%2C786%2C1573%2C1584%2C4097%2C4817%2C5258%2C4917%2C5289%2C532
0&adks=2967190282%2C1923088448%2C3698094709%2C500454048%2C2910813795%2C2966204064%2C2385381749%2C1564585714%2C2376
667967%2C650677945&gut=v2&ifi=1&u_tz=-420&u_his=3&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=24&u_nplug=4&u_nmime=5&u_sd=1&fla
sh=0&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&dssz=54&icsg=3518495
2999936&std=0&vis=1&scr_x=0&scr_y=0&psz=1050x90%7C300x250%7C300x250%7C737x90%7C737x90%7C737x90%7C1366x21%7C737x90%7C136
6x21%7C1366x21&ga_vid=1652242376.1526366239&ga_sid=1526366239&ga_hid=1617319896
https://connect.facebook.net/signals/config/781946178525195?v=2.8.14&r=stable
https://certify.alexametrics.com/atrk.gif?frame_height=768&frame_width=1366&iframe=0&title=Would%20you%20use%20the%20Bitcoin%20to%20pay%20
your%20bills%3F%20-%20GirlsAskGuys&time=1526366238910&time_zone_offset=420&screen_params=1367x858x24&java_enabled=0&cookie_enabled
=1&ref_url=&host_url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&random_nu
mber=1086451737&sess_cookie=d8987d29163628478bcbc800343&sess_cookie_flag=1&user_cookie=d8987d29163628478bcbc800343&user_cookie_
flag=1&dynamic=true&domain=girlsaskguys.com&account=06A9i1aoZM00yc&jsv=20130128&user_lang=en-US
https://z.moatads.com/aolvidibleapi29384728347/moatapi.js
https://trk.vidible.tv/trk/js-started.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&s=true&ifr=false&pt=html5&sid=efdce8e2-313
9-406f-ae35-d896bafed6d4&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&cb=
0.19348104656279563
https://trk.vidible.tv/trk/minjs-loaded.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-3139-406f-ae35-d896bafed
6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&vvui
d=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&cb=0.16766071136148275
https://jadserve.postrelease.com/trk.gif?ntv_ui=5b70eaa9-a08b-47b7-a496-a6b4da384953&ntv_ht=HoD6WgA&ntv_hu=1580869101&ntv_at=303,302&ntv_a
=AAAAAAAAAAGVoDA&ord=1526366239235&ntv_dpl=1009,1011,1001,1003,1021,1006,1022,1007
https://brand-ad-innovations.s3.amazonaws.com/intention-score/bai-intention-score.js

Analyze your site at https://gtmetrix.com Page 41 of 59


YSlow Recommendations

https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadExtra&c1=activitysensor&cb=0.971382982906349
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadExtra&c1=nielsen_ocr&cb=0.5839162392637631
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadExtra&c1=intentionscore&cb=0.43957914758408556
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadExtra&c1=nielsen_dcr&cb=0.08363852176873499
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadExtra&c1=moat&cb=0.8245993901668431
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadExtra&c1=atp&cb=0.7405874732060163
https://www.facebook.com/impression.php/f1f096efafc38ec/?api_key=142488384519&lid=115&payload=%7B%22source%22%3A%22jssdk%22%7D
https://pagead2.googlesyndication.com/pagead/osd.js
https://api.content-ad.net/Scripts/widget2.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403809&cb=152
6366239821
https://ad.lkqd.net/vpaid/formats.js?pid=323&sid=174302&apt=auto&volume=0&render=&controls=&support=&execution=outstream&placement=slider&trac
ki=&trackc=&c1=&c2=&c3=&rnd=85599948&m=&close=true&closedelay=15
https://api.content-ad.net/Scripts/widget2.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403806&cb=1526
366239854
https://js.gumgum.com/services.js
https://www.facebook.com/tr/?id=781946178525195&ev=PageView&dl=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-y
ou-use-the-bitcoin-to-pay-your-bills&rl=&if=false&ts=1526366239913&sw=1367&sh=858&v=2.8.14&r=stable&ec=0&o=28&it=1526366238874
https://www.facebook.com/tr/?id=781946178525195&ev=ViewContent&dl=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-woul
d-you-use-the-bitcoin-to-pay-your-bills&rl=&if=false&ts=1526366239915&cd[content_name]=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%
2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&cd[content_type]=product&cd[content_category]=Trending%20%26amp%3B%20News&cd[content
_ids]=%2Fquestion%2F2125533&cd[gender]=None&cd[xper_level]=0&cd[topics_follow]=undefined&cd[visitor]=Guest&cd[mobile]=false&sw=1367&sh=858
&v=2.8.14&r=stable&ec=1&o=28&it=1526366238874
https://www.facebook.com/tr/?id=781946178525195&ev=ViewPage&dl=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-y
ou-use-the-bitcoin-to-pay-your-bills&rl=&if=false&ts=1526366239915&cd[PagePath]=%2Fquestion%2F2125533&cd[topic_link]=trending-news&cd[display_t
opic_link]=trending-news&sw=1367&sh=858&v=2.8.14&r=stable&ec=2&o=28&it=1526366238874
https://trk.vidible.tv/trk/abInfo.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&ab=0&cb=0.03224159962522788
https://px.moatads.com/pixel.gif?e=0&ac=1&bq=7&i=AOL_VIDIBLE_API1&t=1526366240027&de=292274780539&d=139%3A-%3A-%3A-&bo=girlsaskguys.
com&bd=girlsaskguys.com&f=0&cs=0
https://cdn.playwire.com/bolt/js/zeus/embed.js
https://trends.revcontent.com/serve.js.php?w=95566&t=rc_718&c=1526366237833&width=1366&referer=https%3A%2F%2Fwww.girlsaskguys.com%2Ftren
ding-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadSkin&c1=skin6&cb=0.39207793630966226
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadExtra&c1=comscorestreamsense&cb=0.77741327594
84902
https://cdn.playwire.com/bolt/js/zeus/zeus_global-bb33b35511-b2f521c1ba.js
https://api.content-ad.net/GetWidget.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403809&cb=1526366239821
&lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitco
in-to-pay-your-bills&ik=2018051423_2ae54fec8cdfd17bf81f1c875a7cd0be&ikb=2ae54fec8cdfd17bf81f1c875a7cd0be&duid=5500e9decd16c9a282497440
b08ed2c24dfa5c87e1c1069a843ccd1800662667&ls=ip-172-18-60-165&dstlload=true
https://api.content-ad.net/GetWidget.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403806&cb=1526366239854&
lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin
-to-pay-your-bills&ik=2018051423_104c4851332f25f9967af95a5fa2684d&ikb=104c4851332f25f9967af95a5fa2684d&duid=5500e9decd16c9a282497440b
08ed2c24dfa5c87e1c1069a843ccd1800662667&ls=ip-172-18-62-183&dstlload=true
https://ss3.zedo.com/gecko/util/tagutil.js?0.9061893410802477
https://cdn.revcontent.com/build/css/rev2.min.css?v=c75d860790cfbd475402bedb463df89716d9b597
https://cdn.revcontent.com/build/js/rev2.min.js?v=c75d860790cfbd475402bedb463df89716d9b597&del=//trends.revcontent.com/&lg=//cdn.revcontent.com/a
ssets/img/rc-logo.png&ci=//cdn.revcontent.com/assets/img/icon-close.png&ab=//trends.revcontent.com/rc-about.php&ldr=//cdn.revcontent.com/assets/img/rc
-spinner-md.gif&ht=//trends.revcontent.com/rc-interests.php
https://sb.scorecardresearch.com/beacon.js
https://pixel.quantserve.com/pixel/p-aD1qr93XuF6aC.gif?labels=Publishers.Publisher-88920,Widgets.Widget-95566
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/1502817721.jpg&static=true&pos=face&h=315&w=420&static=tru
e&fmt=jpeg
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15251659200349305815.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg

Analyze your site at https://gtmetrix.com Page 42 of 59


YSlow Recommendations

https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15262929340920703819.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg
https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js
https://s0.2mdn.net/879366/express_html_inpage_rendering_lib_200_232.js
https://s0.2mdn.net/879366/express_html_inpage_rendering_lib_200_234.js
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=ResourceLoaded&c1=ResourceLoaded&c2=https%3A%2F
%2Fcdn-ssl.vidible.tv%2Fprod%2Fplayer%2Fjs%2F17.21.1374%2Fcoverings%2Fskin6.js%3Fcb%3D17.21.1374&pv=17.21.1374&pt=html5&cb=0.7177081
151983296
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=ResourceLoaded&c1=ResourceLoaded&c2=https%3A%2F
%2Fcdn-ssl.vidible.tv%2Fprod%2Fplayer%2Fjs%2F17.21.1374%2Fskins%2Fskin6.js%3Fcb%3D17.21.1374&pv=17.21.1374&pt=html5&cb=0.8600708477
448507
https://trk.vidible.tv/trk/display.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&dt=2990&w=737&h=415&csid=58172559cc52c73a8537bbbf&cb=0.
1993353584265689
https://px.moatads.com/pixel.gif?e=0&ac=1&bq=7&i=AOL_VIDIBLE_API1&t=1526366241199&de=654568351511&d=209%3A-%3A-%3A-&bo=girlsaskguys.
com&bd=girlsaskguys.com&f=0&cs=0
https://tags.crwdcntrl.net/c/9234/cc.js?ns=_cc9234
https://cm.revcontent.com/pixel_sync?exchange_uid=MjcxNmQxZTgwMWU5YjNlZGZlY2VkZWNmZDViMzIwOGQ%3D&bidder=112&bidder_uid=6b74e3e0-58
0a-11e8-9230-0242ac110003
https://cm.revcontent.com/pixel_sync?bidder=109&bidder_uid=7a0fee80-a952-4541-acb1-4ee0fb72b6ed&exchange_uid=MjcxNmQxZTgwMWU5YjNlZGZlY2
VkZWNmZDViMzIwOGQ=
https://ad.lkqd.net/vpaid/vpaid.js?fusion=1.0
https://d32oduq093hvot.cloudfront.net/icons/sponsoredlinksby.png
https://d3dytsf4vrjn5x.cloudfront.net/105614/300x250/c9127ce6e704a656ec453fb89c2c9c40.jpg
https://d3dytsf4vrjn5x.cloudfront.net/6279/300x250/aa5c21a395a124b874d248d14d4b1d86.jpg
https://d3dytsf4vrjn5x.cloudfront.net/79578/300x250/3a067d0e2548a891d8acc7ef4bea71a9.jpg
https://api.content-ad.net/pixel.gif?s=ip-172-18-60-165&ip=204.187.14.71&wid=403809&cb=1526366240866&c=CA&d=&ik=2018051423_2ae54fec8cdfd17
bf81f1c875a7cd0be
https://api.content-ad.net/px.gif
https://d32oduq093hvot.cloudfront.net/icons/c_ad_logo.png
https://api.content-ad.net/pixel.gif?s=ip-172-18-62-86&ip=204.187.14.71&wid=403806&cb=1526366240870&c=CA&d=&ik=2018051423_104c4851332f25f9
967af95a5fa2684d
https://ss3.zedo.com/gecko/tag/Gecko.min.js
https://rules.quantcount.com/rules-p-aD1qr93XuF6aC.js
https://cdn.digitru.st/prod/1/digitrust.min.js
https://pagead2.googlesyndication.com/pagead/js/lidar.js
https://z.moatads.com/initiativeusrbcdcm920745044517/moatad.js
https://loadus.exelator.com/load/?p=233&g=001&j=d&xl8blockcheck=1
https://jsc.mgid.com/g/i/girlsaskguys.com.114115.js?t=11841423
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&m.intentionScore=0.8011660071792719&m.sizeScore=0.2915437
0272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.9825142245395608&m.version=0.2.0&action
=user-intention&ct=0&c1=0.8011660071792719&c2=%7B%22sizeScore%22%3A0.29154370272083946%2C%22soundScore%22%3A1%2C%22viewport
SizeScore%22%3A1%2C%22playersNumberScore%22%3A1%2C%22performanceScore%22%3A1.9825142245395608%2C%22version%22%3A%220.2.
0%22%7D&cb=0.4240267043506345
https://pixel.quantserve.com/pixel;r=1664670909;labels=Publishers.Publisher-88920%2CWidgets.Widget-95566;rf=0;a=p-aD1qr93XuF6aC;url=https%3A%
2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills;fpan=1;fpa=P0-1446014040-1526366242221;n
s=0;ce=1;cm=;ref=;je=0;sr=1367x858x24;enc=n;dst=1;et=1526366242220;tzo=420;ogl=title.Would%20you%20use%20the%20Bitcoin%20to%20pay%20you
r%20bills%3F%2Cdescription.If%20you're%20wondering%20what%20is%20a%20Bitcoin%252C%20it's%20basically%20digital%20money%20and%20p
aying%20s%2Ctype.article%2Curl.https%3A%2F%2Fwww%252Egirlsaskguys%252Ecom%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to%
2Csite_name.GirlsAskGuys%2Cimage.https%3A%2F%2Fimages%252Egirlsaskguys%252Ecom%2Fcustom%2Ftopics%2Fnews-sh%252Ejpg%2Cimage
%3Awidth.1200%2Cimage%3Aheight.630
https://pixel.mathtag.com/sync/img/?mt_exid=10009&mt_exuid=263990302691003025065
https://ss3.zedo.com/gecko/core/v6.8/fmgt.min.js
https://adservice.google.ca/adsid/integrator.js?domain=tpc.googlesyndication.com
https://adservice.google.com/adsid/integrator.js?domain=tpc.googlesyndication.com
https://pagead2.googlesyndication.com/pub-config/r20160913/ca-pub-2045593450925494.js
https://px.moatads.com/pixel.gif?e=17&i=INITIATIVE_US_RBC_DCM1&hp=1&kq=1&hq=0&hs=0&hu=0&hr=0&ht=1&bq=0&f=1&nh=1&tw=null&j=https%3A%
2F%2Fwww.girlsaskguys.com&lp=https%3A%2F%2Fwww.girlsaskguys.com&o=3&t=1526366242816&de=824247734094&m=0&ar=4c90a2e-clean&q=2&
cb=0&cu=1526366242816&ll=3&lm=1&ln=1&r=0&em=0&en=0&d=20969168%3A1310366%3A218534727%3A99952620&qs=1&zGSRC=1&gu=https%3A
%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&bo=girlsaskguys.com&bd=girlsaskguys.com
&zMoatOrigSlicer1=N%2FA&zMoatOrigSlicer2=N%2FA&gw=initiativeusrbcdcm920745044517&fd=1&ac=1&it=500&fs=143783&na=1911003440&cs=0
https://cm.g.doubleclick.net/pixel?google_ula=1293153&google_nid=ssc&google_push=AHNF13K1U0oHz3pO9YwYuBybTIrvkrJS2KUfFPqT1hDigA&google
_sc&google_hm=uxOcjG3dRxO_75e55HGqIg
https://d.agkn.com/pixel/2610/?che=1526366242&sk=263990302691003025065&pd=&puid=b6561484-3074-4ff3-a702-cd32d50bdd17
https://trk.vidible.tv/trk/page-info.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8

Analyze your site at https://gtmetrix.com Page 43 of 59


YSlow Recommendations

e2-3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-t
he-bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&m.intentionScore=0.8011660071792719&m.sizeScore=0.29154
370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.9825142245395608&m.version=0.2.0&it=
Omniture&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&rd=www.girlsaskguys.com&cb=0.027163775232410092
https://trk.vidible.tv/trk/video-impression.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid
=efdce8e2-3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-yo
u-use-the-bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&m.intentionScore=0.8011660071792719&m.sizeScore=0
.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.9825142245395608&m.version=0.
2.0&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq212553
3-would-you-use-the-bitcoin-to-pay-your-bills&vid=5a7cc316cc912f2b46cda331&cb=0.7323749059776155
https://trk.vidible.tv/trk/context-intent.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efd
ce8e2-3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-u
se-the-bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&m.intentionScore=0.8011660071792719&m.sizeScore=0.29
154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.9825142245395608&m.version=0.2.0
&vid=5a7cc316cc912f2b46cda331&cb=0.16155621010539623
https://trk.vidible.tv/trk/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&
pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid=efdc
e8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&at=preroll&ps=html5-vpaid&vid=5a7cc316cc912f2b46cda331&p
.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&cb=0.26240617210195905
https://servicer.mgid.com/114115/1?w=730&h=107&cols=4&pv=6&cbuster=1526366243888535292670&ref=https%3A%2F%2Fwww.girlsaskguys.com%2F
trending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&iframe=1&pageView=1&pvid=16362848c328f8e4fcd
https://cm.g.doubleclick.net/pixel?google_nid=1024&google_ula=1641347&google_hm=MjExNTI4MjY3OTQyMjYzNjY5NA&google_push=AHNF13JojzivWFq
POcr7lNcbbAbuG-JnwijDtnP2f8azHL0tDw
https://cdn.digitru.st/prod/1.5.9/digitrust-server.min.js
https://px.moatads.com/pixel.gif?e=0&q=0&hp=1&kq=1&lo=0&qs=1&ak=https%3A%2F%2Fs0.2mdn.net%2F4507622%2F1522960082624%2FHTML5_300
x250_Generic_EN.html&i=INITIATIVE_US_RBC_DCM1&ud=0&ue=0&uu=0&qm=420&qn=(%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbv
U37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3Deu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B
*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=00000110
0000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3
MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFeBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCC
DCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=0&g=0&hq=0&hs=0&hu=0&hr=0&ht=1&h=250&w=300&zGSRC=1&gu=https
%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&f=1&j=https%3A%2F%2Fwww.girlsaskg
uys.com&lp=https%3A%2F%2Fwww.girlsaskguys.com&o=3&t=1526366242816&de=824247734094&cu=1526366242816&m=283&ar=4c90a2e-clean&cb
=0&ll=3&lm=1&ln=1&r=0&dl=0&dm=1000&nh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=300&qe=250&qh=1366&qg=857&lk=undefined&lb
=255&le=1&gm=1&io=1&ct=undefined&aa=0&ad=0&cn=0&gk=0&gl=0&ic=0&im=0&in=0&pd=0&em=0&en=0&st=0&su=1&of=1&oz=1&bu=106&cd=0&ah=1
06&am=0&rf=0&re=1&wb=1&cl=0&at=0&d=20969168%3A1310366%3A218534727%3A99952620&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=initiat
iveusrbcdcm920745044517&zMoatOrigSlicer1=N%2FA&zMoatOrigSlicer2=N%2FA&ab=2&ac=1&fd=1&kt=sframe&it=500&oq=0&ot=0&zMoatJS=0%3A0%3A
1366%3A857%3A0&fs=143783&na=1593598114&cs=0
https://ss3.zedo.com/gecko/tag/networkIds.js?4022784076
https://c.amazon-adsystem.com/aax2/amzn_ads.js
https://as-sec.casalemedia.com/cygnus?v=8&fn=__pwhbjs__.handleCygnusResponse&s=241978&r=%7B%22id%22%3A%2233f8586f99e7b7%22%2C%
22imp%22%3A%5B%7B%22id%22%3A%2249d5989f8bfaa3%22%2C%22ext%22%3A%7B%22siteID%22%3A241978%2C%22sid%22%3A%22pr_1_1_s
%22%7D%2C%22video%22%3A%7B%22protocols%22%3A%5B2%2C5%2C3%2C6%5D%2C%22maxduration%22%3A300%2C%22minduration%22%3
A5%2C%22mimes%22%3A%5B%22video%2Fmp4%22%2C%22video%2Fwebm%22%5D%2C%22startdelay%22%3A0%2C%22linearity%22%3A1%2C
%22w%22%3A640%2C%22h%22%3A480%7D%7D%5D%2C%22site%22%3A%7B%22page%22%3A%22https%3A%2F%2Fwww.girlsaskguys.com%2Ft
rending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills%22%7D%7D
https://embed.bannerflow.com/5a787825e314e03f581fcc26?targetwindow=_blank&targeturl=https%3A%2F%2Fadclick.g.doubleclick.net%2Fpcs%2Fclick%
3Fxai%3DAKAOjsuUmoKWsv3PME62aS6_LAzA4q6T3r10q4yWvXLqKsiy19Sjo4OugQgw0mC25PCu1RPPeY_rGRbQ0fnK0Y2U0KVVgeaj47dw5_veo2-8yST
69ssznzXYNn_FIOoin-9hv7oGl5DsVT7uSPxf7ReibwMWg3IaLYEoIt77q9xEqJS4FYfBoF2SJpqSYA0KIPUCme3N2xgVHUnsy_dnWI6iJOGQKL76Xm8BocKmX
KxXOD6mYQpfzWnY2Cjbh4thHfAetosE7TLpBeqjNZtMxZ2ISVpGotZfQT9GRDYdnd5ETQrFXckOX0cg7lAvrJO7s_3Xg3irynruBd5Jj55ByYTnw4RdToWxdCC9t1Z
pK35Pi6RKiZSYwUiEA8yZgt_H6vCWOenrLCYJVlVeyx5XHnmE7Mp8XVPkRRuxvLw3BKRi4vrZIMWZsT5886XJXmlKG8b2LQDT9EXt_-oi1ZnTOuE2kC9wHuJN
auj_Lv_3B3QpDQkR70Z2CIKr81Bg4T-lFB_39d58c3U9lIPyKhNNh6pa0vOg1niG7jDob0xXY6QOH-6sNLq8mM_dxv0C2VrIFNNBvy__sqlp5Ywe5wfOs2A_p3l_i
1gl9igfgkfdQ26BNVHPkXSsBJ4svQZDb4p1UDdWAziZ4L4CD5iCpt3NHCftHurufLbDfd7z0APxfVVESKGam6KNc-xDx3K3FTuEUlFAm1iZCBop72BQ21NPU0j4
hK2Jgf2p9Ne1SmrBsRDEuKTNmjHF33WpWWtciG76AJj0LS0emfh_lkc8w298hozNcAWHx2iQA-zTgRkx3JSacELAKg_lI1aokNmEJVBoIh1GHkPaeuXyWzW7
9Vg9qgo3WHDrgyjsiJkn2-4gwlPjtsdWeomZzrTBO9EERCQjInzGrOTF8-dmSDZx9wjU8WF5dysLB_9IE9_uONvow-hNiapS-wJOaEKPSw%26sig%3DCg0ArK
JSzO6_E0GhRtBLEAE%26urlfix%3D1%26rm_eid%3D4134037%26adurl%3Dhttps%253A%252F%252Fwww.shutterstock.com%253Fpl%253DGDNCAIM-l
ggeneric%2526cr%253Dgeneric%2526utm_source%253Dadwords%2526utm_campaign%253Dimage_ca_lggeneric%2526utm_term%253D1_topicsmal
lbusiness-gdn%2526utm_content%253Dgeneric_print_en_html5_diederick%2526utm_medium%253Dacq_display%2526dclid%253D%2525edclid!
https://s0.2mdn.net/instream/html5/ima3.js
https://px.moatads.com/pixel.gif?e=9&q=0&hp=1&kq=1&lo=0&qs=1&ak=-&i=INITIATIVE_US_RBC_DCM1&ud=0&ue=0&uu=0&qm=420&qn=(%2BIb%7Cj8o
%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3Deu!LfBB2%2B
%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD%7BMx5%3
C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0lBg1SBBBB
BBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFeBCBBblBwx
BHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=0&g=1&hq=0&hs=0&hu
=0&hr=0&ht=1&h=250&w=300&zGSRC=1&gu=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pa
y-your-bills&f=1&j=https%3A%2F%2Fwww.girlsaskguys.com&lp=https%3A%2F%2Fwww.girlsaskguys.com&o=3&t=1526366242816&de=824247734094&c
u=1526366242816&m=1925&ar=4c90a2e-clean&cb=0&ll=3&lm=1&ln=1&r=0&dl=0&dm=1000&nh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&
qf=300&qe=250&qh=1366&qg=857&lk=undefined&lb=255&le=1&gm=1&io=1&fa=1&ct=undefined&aa=0&ad=0&cn=0&gk=0&gl=0&ic=0&im=0&in=0&pd=0&
em=0&en=0&st=0&su=1&of=1&oz=1&bu=1860&cd=106&ah=1860&am=106&rf=0&re=1&wb=1&cl=0&at=0&d=20969168%3A1310366%3A218534727%3A
99952620&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=initiativeusrbcdcm920745044517&zMoatOrigSlicer1=N%2FA&zMoatOrigSlicer2=N%2FA&ab=
2&ac=1&fd=1&kt=sframe&it=500&oq=0&ot=0&zMoatJS=0%3A0%3A1366%3A857%3A0&fs=143783&na=97559087&cs=0

Analyze your site at https://gtmetrix.com Page 44 of 59


YSlow Recommendations

https://fonts.googleapis.com/css?family=Roboto:700
https://fonts.googleapis.com/css?family=Roboto:300
https://cdn.mirs.com/js/wglibs/mgWidget_1.7.19.js
https://cm.mgid.com/i.js
https://load77.exelator.com/pixel.gif
https://s0.2mdn.net/instream/video/client.js
https://trk.vidible.tv/trk/action.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv=1
7.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid=efdce8e2
-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&action=Resource
Loaded&vid=5a7cc316cc912f2b46cda331&c1=ResourceLoaded&c2=https%3A%2F%2Fs0.2mdn.net%2Finstream%2Fhtml5%2Fima3.js&pv=17.21.1374&
pt=html5&cb=0.22059476225513763
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&
sid=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at=
preroll&adIdx=-1&aen=FROS%20-%20CO%20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps=
html5-vpaid&rcid=551440471146fb0d084da510&rid=572a5079e4b0fb7d4078f6b5&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4ae
d-b888-511ca9cd86d7&v=56a11164e4b05fb5460fcca3&vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415&c
b=0.22375541741757354
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid
=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&at=preroll&adIdx=-1&aen=FROS%20-%20CO%20-%20He
arst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps=html5-vpaid&rcid=551440471146fb0d084da510&rid=57
2a5079e4b0fb7d4078f6b5&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511ca9cd86d7&v=56a11164e4b05fb5460fcca3
&vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://cdn.playwire.com/bolt/js/zeus/iframe/libs/require.js
https://cdn.playwire.com/bolt/js/zeus/zeus_boot-081af9499a-bcff0847d3.js
https://ads.rubiconproject.com/header/11406.js?ns=11406
https://aax.amazon-adsystem.com/e/dtb/bid?src=3308&u=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bi
tcoin-to-pay-your-bills&cb=6891796&mt=V
https://cm.steepto.com/setmuidn/?muidn=i4eoV9HUAHBn
https://g2.gumgum.com/visitor/digitrust?dti=gOvq46B2AmzYG4FRTcuGzG4ksaTZmn9BvcgUhUJ1rcn6BoReqyvwBJgSLHsZqtKlKG7Kr9N5V51efIMQAIa4tSBf
19CID%2Bj0o2pMPdCuAIRMQe9X728n2kuJGetPM9S70odTQpg5Jvtt3%2FCjl8mldXQ%2FJN4T31C89HxrntbjWNoFJmzJ3dxntFskk1DSfsVe5kARbGLqChDc
llsOaH%2BbIck3%2BKFvR89P9xZ3k7jpEZxNspAWZptB7ksPW4VkIntPxtBJ4kNMrlUE6GFawEl3POgduQajNarJxArTlWIzqtVUlAaxuuPJb1mFuBvnTgzES0DwD
I3ID0z12c0IqZPIUA%3D%3D&dtk=4&domain=www.girlsaskguys.com
https://tracker.bannerflow.com//api/tr/v1/pixel?data=%7B%22u%22%3A%7B%22d%22%3A%7B%22r%22%3A%22858x1367%22%7D%2C%22tz%22%3A%
22-0700%22%2C%22r%22%3A%22https%3A%2F%2Ftpc.googlesyndication.com%2Fsafeframe%2F1-0-23%2Fhtml%2Fcontainer.html%22%2C%22s%2
2%3A%221526366245708_67542%22%7D%2C%22a%22%3A%7B%22a%22%3A%22shutterstock%22%2C%22br%22%3A%22589873bd5a4e8749bce
403ff%22%2C%22c%22%3A%225a6ba42cbaae30223843aa4b%22%2C%22ad%22%3A%225a6ba42fbaae30223843aa5e%22%2C%22p%22%3A%225
a787825e314e03f581fcc26%22%2C%22b%22%3A%225a6ba42fbaae30223843aa5d%22%2C%22pl%22%3A1%2C%22r%22%3A0%2C%22an%22%3A
1%2C%22s%22%3A%2258aeef6cbd8d3e2308a2d09b%22%2C%22t%22%3A%225a6ba42cbaae30223843aa4f%22%2C%22l%22%3A%22589873bd5a
4e8749bce403fe%22%2C%22bf%22%3A%225a6ba42fbaae30223843aa5b%22%7D%2C%22e%22%3A%5B%7B%22t%22%3A1%2C%22v%22%3A%7B
%22vw%22%3A1%2C%22s%22%3A0%7D%7D%5D%7D
https://pagead2.googlesyndication.com/pcs/activeview?xai=AKAOjss_mzO3ZGDuOso2HwP9eatLRJ_mpEKul8QGUvYk0r7DSDefGQu6gccPw8nFZaVpPBZU
NuP92p9is7CJHm4Ahhlm0bj8qHbnPno&sig=Cg0ArKJSzBeJ045gn2NvEAE&id=osdim&ti=1&adk=2967190282&tt=4935&bs=1366,768&mtos=3058,3058,3
058,3058,3058&tos=3058,0,0,0,0&p=115,319,205,1047&mraid_race=1&mcvt=3058&rs=3&ht=0&tfs=1876&tls=4934&mc=1&lte=1&bas=0&bac=0&avms=g
eo&bos=1366,857&ps=1366,7003&ss=1367,858&pt=-1&deb=1-0-10-40-14--1-147-4&tvt=4804&op=1&r=v&uc=1&tgt=INS&cl=1&cec=8&clc=1&cac=0&cd=7
28x90&v=r20180509
https://cdn.playwire.com/bolt/js/zeus/themes/orion/main.js?1526366245845
https://bcp.crwdcntrl.net/map/ct=y/c=9380/tp=MGID/tpid=i4eoV9HUAHBn
http://load77.exelator.com/pixel.gif
https://images.host.bannerflow.com/5a6ba42fbaae30223843aa5d.rSnrv6e2i5ev.jpg?cb=636535384508927248
https://cdn.playwire.com/bolt/js/zeus/zeus_iframe-3658f262ba.js
https://c.mgid.com/c?pv=2&f=1&v=175|117|40|_xCiQvIHIZVKxd4kCJ1hVH2vteKohlvoKwCsHz4D8KQBZeSa_XAK0-xWwEGLelyg&fw=1&v=175|117|8|_xCiQvI
HIZVKxd4kCJ1hVNZGOVzxUQOZ_8qMogHxZpiIrdDWZx65CUubAtlfDiDX&v=175|117|8|_xCiQvIHIZVKxd4kCJ1hVCkShrTRYCsuS-nx8rsCh-s4knch-2zEUf3n4z
gQarDq&v=175|117|24|_xCiQvIHIZVKxd4kCJ1hVFD6Di1r6RJcvvLwPDcJHOXLbY-FVVUeOwD18PrLcBlY&tt=Direct&cid=114115&h2=i6dDxqFYAGENzktqx-W
UzbXB6o71t44bIfJ2ThSkKus*
https://imasdk.googleapis.com/js/sdkloader/ima3.js
https://cm.g.doubleclick.net/pixel?google_nid=xaxis_dev_dmp&google_push=AHNF13LbXjmhF2nMPQDwP5zhkliwkCLNe7p6mTw3MZy3Temd&google_hm
=MTE0NTkxOTgxNDg2NTgzMDQwMzQ
https://cdn.playwire.com/bolt/js/zeus/core-a160b37fa6.js?noext
https://cdn.mgid.com/js/perfect-scrollbar.js
https://sdk.amazonaws.com/js/aws-sdk-2.129.0.min.js
https://video-ads.rubiconproject.com/video/bridge-30638.js
https://content.jwplatform.com/libraries/WLok6WPd.js
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true
&sid=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at
=preroll&adIdx=-1&aen=FROS%20-%20CO%20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps
=html5-vpaid&rcid=551440471146fb0d084da510&rid=572a5079e4b0fb7d4078f6b5&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4a
ed-b888-511ca9cd86d7&v=56a11164e4b05fb5460fcca3&vid=5a7cc316cc912f2b46cda331&w=737&aert=2384&ar=no&fo=0&ft=0&h=415&cb=0.594544845
6967419
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt

Analyze your site at https://gtmetrix.com Page 45 of 59


YSlow Recommendations

=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&
sid=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at=
preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20VAN%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5
-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade879442b071692878a4c7&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b
888-511ca9cd86d7&v=569fa372e4b0e41110650e54&vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415&cb=
0.7371263420469534
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid
=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-
%20VAN%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade8
79442b071692878a4c7&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511ca9cd86d7&v=569fa372e4b0e41110650e54&
vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://trk.vidible.tv/trk/ad-issue.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv
=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid=efdce8
e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at=preroll&adId
x=-1&aen=FROS%20-%20CO%20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps=html5-vpaid&
rcid=551440471146fb0d084da510&rid=572a5079e4b0fb7d4078f6b5&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511c
a9cd86d7&v=56a11164e4b05fb5460fcca3&vid=5a7cc316cc912f2b46cda331&curl=https%3A%2F%2Fpubads.g.doubleclick.net%2Fgampad%2Fads%3Fsz
%3D3x3%26iu%3D%2F36117602%2Fhdm-aolpreroll%2Fonnetwork%26impl%3Ds%26gdfp_req%3D1%26env%3Dvp%26output%3Dvast%26unviewed_p
osition_start%3D1%26url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Ftrending-news%252Fq2125533-would-you-use-the-bitcoin-to-pay-yo
ur-bills%26description_url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Ftrending-news%252Fq2125533-would-you-use-the-bitcoin-to-pay-y
our-bills%26correlator%3D1526366247652&stg=loaded&crl=IMA&dt=Failed%20to%20initialize%20GoogleIMA3%20adManager.%20The%20response%20
does%20not%20contain%20any%20valid%20ads.&et=901&st=9571&cb=0.444508295265825
https://stats.aws.rubiconproject.com/stats/video/bridge-loaded/js/11406/134230/861300/201
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true
&sid=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at
=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20VAN%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html
5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade879442b071692878a4c7&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-
b888-511ca9cd86d7&v=569fa372e4b0e41110650e54&vid=5a7cc316cc912f2b46cda331&w=737&aert=482&ar=no&fo=0&ft=0&h=415&cb=0.38773477525
92293
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&
sid=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at=
preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20Rest%20of%20Brands%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&
pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade830747fd696c810db0b7&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9
ab94-e5cc-4aed-b888-511ca9cd86d7&v=569fa372e4b0e41110650e54&vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&v
wm=0&h=415&cb=0.145234632629474
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid
=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-
%20Rest%20of%20Brands%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e0
72da23&rid=5ade830747fd696c810db0b7&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511ca9cd86d7&v=569fa372e4b
0e41110650e54&vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://scripts.host.bannerflow.com/1.0.7/bf.min.js
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true
&sid=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at
=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20Rest%20of%20Brands%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll
&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade830747fd696c810db0b7&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c
9ab94-e5cc-4aed-b888-511ca9cd86d7&v=569fa372e4b0e41110650e54&vid=5a7cc316cc912f2b46cda331&w=737&aert=168&ar=no&fo=0&ft=0&h=415&c
b=0.8573335624870353
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&
sid=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at=
preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20VAN%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&r
cid=5512a39b09eab108e072da23&rid=5ade94d85c6617767c385912&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511
ca9cd86d7&v=569fa372e4b0e41110650e54&vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415&cb=0.19175
956715162834
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid
=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-
%20VAN%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade94d85c6
617767c385912&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511ca9cd86d7&v=569fa372e4b0e41110650e54&vid=5a7
M akecc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
fewer HTTP requests F (0) AVG SCORE: 32% CONTENT HIGH

This page has 100 external Javascript scripts. Try combining them into one.

This page has 8 external stylesheets. Try combining them into one.

Analyze your site at https://gtmetrix.com Page 46 of 59


YSlow Recommendations

Use a Content Delivery Network (CDN) F (0) AVG SCORE: 21% SERVER MEDIUM

Using a CDN YSlow doesn't recognize? Specify your CDNs in your User Settings.

There are 81 static components that are not on CDN.

https://www.girlsaskguys.com/brand-styles?v=1613
https://delivery.vidible.tv/jsonp/pid=5952b3519e45102b384dc50e/57d325e276a6057ba4a05a00.js
https://jadserve.postrelease.com/t?ntv_url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-yo
ur-bills
https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/vidible-min.js?embedtag=1
https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/html5/player-hls-latest-min.js
https://trk.vidible.tv/trk/impression.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&s=true&pv=17.21.1374&ifr=false&pt=html5&
sid=efdce8e2-3139-406f-ae35-d896bafed6d4&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-
pay-your-bills&cb=0.19348104656279563
https://trk.vidible.tv/trk/js-loaded.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&s=true&ifr=false&pt=html5&sid=efdce8e2-313
9-406f-ae35-d896bafed6d4&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&cb=
0.19348104656279563
https://gag.gagwebapi.com/api/webpush/script?token=&client=ChromeDesktop
https://trk.vidible.tv/trk/js-started.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&s=true&ifr=false&pt=html5&sid=efdce8e2-313
9-406f-ae35-d896bafed6d4&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&cb=
0.19348104656279563
https://trk.vidible.tv/trk/minjs-loaded.gif?pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-3139-406f-ae35-d896bafed
6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&vvui
d=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&cb=0.16766071136148275
https://jadserve.postrelease.com/trk.gif?ntv_ui=5b70eaa9-a08b-47b7-a496-a6b4da384953&ntv_ht=HoD6WgA&ntv_hu=1580869101&ntv_at=303,302&ntv_a
=AAAAAAAAAAGVoDA&ord=1526366239235&ntv_dpl=1009,1011,1001,1003,1021,1006,1022,1007
https://brand-ad-innovations.s3.amazonaws.com/intention-score/bai-intention-score.js
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadExtra&c1=activitysensor&cb=0.971382982906349
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadExtra&c1=nielsen_ocr&cb=0.5839162392637631
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadExtra&c1=intentionscore&cb=0.43957914758408556
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadExtra&c1=nielsen_dcr&cb=0.08363852176873499
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadExtra&c1=moat&cb=0.8245993901668431
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadExtra&c1=atp&cb=0.7405874732060163
https://api.content-ad.net/Scripts/widget2.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403809&cb=152
6366239821
https://api.content-ad.net/Scripts/widget2.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403806&cb=1526
366239854
https://trk.vidible.tv/trk/abInfo.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&ab=0&cb=0.03224159962522788
https://trends.revcontent.com/serve.js.php?w=95566&t=rc_718&c=1526366237833&width=1366&referer=https%3A%2F%2Fwww.girlsaskguys.com%2Ftren
ding-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills
https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/coverings/skin6.js?cb=17.21.1374
https://cdn-ssl.vidible.tv/prod/player/js/17.21.1374/skins/skin6.js?cb=17.21.1374
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadSkin&c1=skin6&cb=0.39207793630966226
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=LoadExtra&c1=comscorestreamsense&cb=0.77741327594
84902
https://api.content-ad.net/GetWidget.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403809&cb=1526366239821
&lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitco
in-to-pay-your-bills&ik=2018051423_2ae54fec8cdfd17bf81f1c875a7cd0be&ikb=2ae54fec8cdfd17bf81f1c875a7cd0be&duid=5500e9decd16c9a282497440
b08ed2c24dfa5c87e1c1069a843ccd1800662667&ls=ip-172-18-60-165&dstlload=true
https://api.content-ad.net/GetWidget.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403806&cb=1526366239854&
lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin

Analyze your site at https://gtmetrix.com Page 47 of 59


YSlow Recommendations

-to-pay-your-bills&ik=2018051423_104c4851332f25f9967af95a5fa2684d&ikb=104c4851332f25f9967af95a5fa2684d&duid=5500e9decd16c9a282497440b
08ed2c24dfa5c87e1c1069a843ccd1800662667&ls=ip-172-18-62-183&dstlload=true
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=ResourceLoaded&c1=ResourceLoaded&c2=https%3A%2F
%2Fcdn-ssl.vidible.tv%2Fprod%2Fplayer%2Fjs%2F17.21.1374%2Fcoverings%2Fskin6.js%3Fcb%3D17.21.1374&pv=17.21.1374&pt=html5&cb=0.7177081
151983296
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&action=ResourceLoaded&c1=ResourceLoaded&c2=https%3A%2F
%2Fcdn-ssl.vidible.tv%2Fprod%2Fplayer%2Fjs%2F17.21.1374%2Fskins%2Fskin6.js%3Fcb%3D17.21.1374&pv=17.21.1374&pt=html5&cb=0.8600708477
448507
https://trk.vidible.tv/trk/display.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&dt=2990&w=737&h=415&csid=58172559cc52c73a8537bbbf&cb=0.
1993353584265689
https://cm.revcontent.com/pixel_sync?exchange_uid=MjcxNmQxZTgwMWU5YjNlZGZlY2VkZWNmZDViMzIwOGQ%3D&bidder=112&bidder_uid=6b74e3e0-58
0a-11e8-9230-0242ac110003
https://cm.revcontent.com/pixel_sync?bidder=109&bidder_uid=7a0fee80-a952-4541-acb1-4ee0fb72b6ed&exchange_uid=MjcxNmQxZTgwMWU5YjNlZGZlY2
VkZWNmZDViMzIwOGQ=
https://api.content-ad.net/pixel.gif?s=ip-172-18-60-165&ip=204.187.14.71&wid=403809&cb=1526366240866&c=CA&d=&ik=2018051423_2ae54fec8cdfd17
bf81f1c875a7cd0be
https://api.content-ad.net/px.gif
https://api.content-ad.net/pixel.gif?s=ip-172-18-62-86&ip=204.187.14.71&wid=403806&cb=1526366240870&c=CA&d=&ik=2018051423_104c4851332f25f9
967af95a5fa2684d
https://cdn.digitru.st/prod/1/digitrust.min.js
https://loadus.exelator.com/load/?p=233&g=001&j=d&xl8blockcheck=1
https://jsc.mgid.com/g/i/girlsaskguys.com.114115.js?t=11841423
https://trk.vidible.tv/trk/action.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8e2-
3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-
bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&m.intentionScore=0.8011660071792719&m.sizeScore=0.2915437
0272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.9825142245395608&m.version=0.2.0&action
=user-intention&ct=0&c1=0.8011660071792719&c2=%7B%22sizeScore%22%3A0.29154370272083946%2C%22soundScore%22%3A1%2C%22viewport
SizeScore%22%3A1%2C%22playersNumberScore%22%3A1%2C%22performanceScore%22%3A1.9825142245395608%2C%22version%22%3A%220.2.
0%22%7D&cb=0.4240267043506345
https://d.agkn.com/pixel/2610/?che=1526366242&sk=263990302691003025065&pd=&puid=b6561484-3074-4ff3-a702-cd32d50bdd17
https://trk.vidible.tv/trk/page-info.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efdce8
e2-3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-t
he-bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&m.intentionScore=0.8011660071792719&m.sizeScore=0.29154
370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.9825142245395608&m.version=0.2.0&it=
Omniture&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&rd=www.girlsaskguys.com&cb=0.027163775232410092
https://trk.vidible.tv/trk/video-impression.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid
=efdce8e2-3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-yo
u-use-the-bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&m.intentionScore=0.8011660071792719&m.sizeScore=0
.29154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.9825142245395608&m.version=0.
2.0&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq212553
3-would-you-use-the-bitcoin-to-pay-your-bills&vid=5a7cc316cc912f2b46cda331&cb=0.7323749059776155
https://trk.vidible.tv/trk/context-intent.gif?bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&bcid=57d325e276a6057ba4a05a00&sid=efd
ce8e2-3139-406f-ae35-d896bafed6d4&s=true&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-u
se-the-bitcoin-to-pay-your-bills&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&pt=html5&m.intentionScore=0.8011660071792719&m.sizeScore=0.29
154370272083946&m.soundScore=1&m.viewportSizeScore=1&m.playersNumberScore=1&m.performanceScore=1.9825142245395608&m.version=0.2.0
&vid=5a7cc316cc912f2b46cda331&cb=0.16155621010539623
https://trk.vidible.tv/trk/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&
pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid=efdc
e8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&at=preroll&ps=html5-vpaid&vid=5a7cc316cc912f2b46cda331&p
.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&cb=0.26240617210195905
https://servicer.mgid.com/114115/1?w=730&h=107&cols=4&pv=6&cbuster=1526366243888535292670&ref=https%3A%2F%2Fwww.girlsaskguys.com%2F
trending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&iframe=1&pageView=1&pvid=16362848c328f8e4fcd
https://cdn.digitru.st/prod/1.5.9/digitrust-server.min.js
https://cdn.mirs.com/js/wglibs/mgWidget_1.7.19.js
https://cm.mgid.com/i.js
https://imgg-cdn.mgid.com/2543/2543365_492x328.jpg
https://imgg-cdn.mgid.com/2591/2591379_492x328.jpg
https://imgg-cdn.mgid.com/2560/2560061_492x328.jpg
https://imgg-cdn.mgid.com/2741/2741147_492x328.jpg
https://x.dlx.addthis.com/e/exelate_sync.xgi?na_exid=56ada69c9eb83865d182cebdfa69c286
https://trk.vidible.tv/trk/action.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv=1
7.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid=efdce8e2
-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&action=Resource
Loaded&vid=5a7cc316cc912f2b46cda331&c1=ResourceLoaded&c2=https%3A%2F%2Fs0.2mdn.net%2Finstream%2Fhtml5%2Fima3.js&pv=17.21.1374&
pt=html5&cb=0.22059476225513763
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt

Analyze your site at https://gtmetrix.com Page 48 of 59


YSlow Recommendations

=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&
sid=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at=
preroll&adIdx=-1&aen=FROS%20-%20CO%20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps=
html5-vpaid&rcid=551440471146fb0d084da510&rid=572a5079e4b0fb7d4078f6b5&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4ae
d-b888-511ca9cd86d7&v=56a11164e4b05fb5460fcca3&vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415&c
b=0.22375541741757354
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid
=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&at=preroll&adIdx=-1&aen=FROS%20-%20CO%20-%20He
arst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps=html5-vpaid&rcid=551440471146fb0d084da510&rid=57
2a5079e4b0fb7d4078f6b5&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511ca9cd86d7&v=56a11164e4b05fb5460fcca3
&vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-
would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.5301647826567564&7331981622
https://aax.amazon-adsystem.com/e/dtb/bid?src=3308&u=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bi
tcoin-to-pay-your-bills&cb=6891796&mt=V
https://cm.steepto.com/setmuidn/?muidn=i4eoV9HUAHBn
https://g2.gumgum.com/visitor/digitrust?dti=gOvq46B2AmzYG4FRTcuGzG4ksaTZmn9BvcgUhUJ1rcn6BoReqyvwBJgSLHsZqtKlKG7Kr9N5V51efIMQAIa4tSBf
19CID%2Bj0o2pMPdCuAIRMQe9X728n2kuJGetPM9S70odTQpg5Jvtt3%2FCjl8mldXQ%2FJN4T31C89HxrntbjWNoFJmzJ3dxntFskk1DSfsVe5kARbGLqChDc
llsOaH%2BbIck3%2BKFvR89P9xZ3k7jpEZxNspAWZptB7ksPW4VkIntPxtBJ4kNMrlUE6GFawEl3POgduQajNarJxArTlWIzqtVUlAaxuuPJb1mFuBvnTgzES0DwD
I3ID0z12c0IqZPIUA%3D%3D&dtk=4&domain=www.girlsaskguys.com
https://tracker.bannerflow.com//api/tr/v1/pixel?data=%7B%22u%22%3A%7B%22d%22%3A%7B%22r%22%3A%22858x1367%22%7D%2C%22tz%22%3A%
22-0700%22%2C%22r%22%3A%22https%3A%2F%2Ftpc.googlesyndication.com%2Fsafeframe%2F1-0-23%2Fhtml%2Fcontainer.html%22%2C%22s%2
2%3A%221526366245708_67542%22%7D%2C%22a%22%3A%7B%22a%22%3A%22shutterstock%22%2C%22br%22%3A%22589873bd5a4e8749bce
403ff%22%2C%22c%22%3A%225a6ba42cbaae30223843aa4b%22%2C%22ad%22%3A%225a6ba42fbaae30223843aa5e%22%2C%22p%22%3A%225
a787825e314e03f581fcc26%22%2C%22b%22%3A%225a6ba42fbaae30223843aa5d%22%2C%22pl%22%3A1%2C%22r%22%3A0%2C%22an%22%3A
1%2C%22s%22%3A%2258aeef6cbd8d3e2308a2d09b%22%2C%22t%22%3A%225a6ba42cbaae30223843aa4f%22%2C%22l%22%3A%22589873bd5a
4e8749bce403fe%22%2C%22bf%22%3A%225a6ba42fbaae30223843aa5b%22%7D%2C%22e%22%3A%5B%7B%22t%22%3A1%2C%22v%22%3A%7B
%22vw%22%3A1%2C%22s%22%3A0%7D%7D%5D%7D
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:386}];et=387;eid=114;ai=RB%20Fastlane%5Erubicon%5E372688_1-6
40-480%5E%5E370;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.504325
710117083&9087452643
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:387}];et=388;eid=114;ai=RB%20Fastlane%5Erubicon_preroll%5E372
688_1-640-480%5E%5E371;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.
504325710117083&4083087879
https://bcp.crwdcntrl.net/map/ct=y/c=9380/tp=MGID/tpid=i4eoV9HUAHBn
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:726}];eid=99;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-
news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.8705402673723517&5354521700
https://c.mgid.com/c?pv=2&f=1&v=175|117|40|_xCiQvIHIZVKxd4kCJ1hVH2vteKohlvoKwCsHz4D8KQBZeSa_XAK0-xWwEGLelyg&fw=1&v=175|117|8|_xCiQvI
HIZVKxd4kCJ1hVNZGOVzxUQOZ_8qMogHxZpiIrdDWZx65CUubAtlfDiDX&v=175|117|8|_xCiQvIHIZVKxd4kCJ1hVCkShrTRYCsuS-nx8rsCh-s4knch-2zEUf3n4z
gQarDq&v=175|117|24|_xCiQvIHIZVKxd4kCJ1hVFD6Di1r6RJcvvLwPDcJHOXLbY-FVVUeOwD18PrLcBlY&tt=Direct&cid=114115&h2=i6dDxqFYAGENzktqx-W
UzbXB6o71t44bIfJ2ThSkKus*
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:850}];eid=58;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-
news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.39588017330681624&8755066302
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:850},{%2258%22:0}];et=851;eid=29;g=0;m=0;w=0;pu=https://www.girls
askguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.3228689037474104&4839259873
https://cdn.mgid.com/js/perfect-scrollbar.js
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true
&sid=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at
=preroll&adIdx=-1&aen=FROS%20-%20CO%20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps
=html5-vpaid&rcid=551440471146fb0d084da510&rid=572a5079e4b0fb7d4078f6b5&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4a
ed-b888-511ca9cd86d7&v=56a11164e4b05fb5460fcca3&vid=5a7cc316cc912f2b46cda331&w=737&aert=2384&ar=no&fo=0&ft=0&h=415&cb=0.594544845
6967419
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&
sid=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at=
preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20VAN%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5
-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade879442b071692878a4c7&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b
888-511ca9cd86d7&v=569fa372e4b0e41110650e54&vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415&cb=
0.7371263420469534
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid
=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-
%20VAN%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade8
79442b071692878a4c7&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511ca9cd86d7&v=569fa372e4b0e41110650e54&
vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://trk.vidible.tv/trk/ad-issue.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=html5&pv
=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid=efdce8
e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at=preroll&adId
x=-1&aen=FROS%20-%20CO%20-%20Hearst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps=html5-vpaid&
rcid=551440471146fb0d084da510&rid=572a5079e4b0fb7d4078f6b5&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511c

Analyze your site at https://gtmetrix.com Page 49 of 59


YSlow Recommendations

a9cd86d7&v=56a11164e4b05fb5460fcca3&vid=5a7cc316cc912f2b46cda331&curl=https%3A%2F%2Fpubads.g.doubleclick.net%2Fgampad%2Fads%3Fsz
%3D3x3%26iu%3D%2F36117602%2Fhdm-aolpreroll%2Fonnetwork%26impl%3Ds%26gdfp_req%3D1%26env%3Dvp%26output%3Dvast%26unviewed_p
osition_start%3D1%26url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Ftrending-news%252Fq2125533-would-you-use-the-bitcoin-to-pay-yo
ur-bills%26description_url%3Dhttps%253A%252F%252Fwww.girlsaskguys.com%252Ftrending-news%252Fq2125533-would-you-use-the-bitcoin-to-pay-y
our-bills%26correlator%3D1526366247652&stg=loaded&crl=IMA&dt=Failed%20to%20initialize%20GoogleIMA3%20adManager.%20The%20response%20
does%20not%20contain%20any%20valid%20ads.&et=901&st=9571&cb=0.444508295265825
https://stats.aws.rubiconproject.com/stats/video/bridge-loaded/js/11406/134230/861300/201
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true
&sid=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at
=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20VAN%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html
5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade879442b071692878a4c7&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-
b888-511ca9cd86d7&v=569fa372e4b0e41110650e54&vid=5a7cc316cc912f2b46cda331&w=737&aert=482&ar=no&fo=0&ft=0&h=415&cb=0.38773477525
92293
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&
sid=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at=
preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20Rest%20of%20Brands%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&
pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade830747fd696c810db0b7&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9
ab94-e5cc-4aed-b888-511ca9cd86d7&v=569fa372e4b0e41110650e54&vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&v
wm=0&h=415&cb=0.145234632629474
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid
=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-
%20Rest%20of%20Brands%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e0
72da23&rid=5ade830747fd696c810db0b7&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511ca9cd86d7&v=569fa372e4b
0e41110650e54&vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://trk.vidible.tv/trk/ad-engine-response.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&
pt=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true
&sid=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at
=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20Rest%20of%20Brands%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll
&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade830747fd696c810db0b7&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c
9ab94-e5cc-4aed-b888-511ca9cd86d7&v=569fa372e4b0e41110650e54&vid=5a7cc316cc912f2b46cda331&w=737&aert=168&ar=no&fo=0&ft=0&h=415&c
b=0.8573335624870353
https://trk.vidible.tv/trk/ad-engine-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt
=html5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&
sid=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&apid=O26d4fbf05-580a-11e8-88f1-0242223bf707&at=
preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-%20VAN%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&r
cid=5512a39b09eab108e072da23&rid=5ade94d85c6617767c385912&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511
ca9cd86d7&v=569fa372e4b0e41110650e54&vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415&cb=0.19175
956715162834
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid
=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-
%20VAN%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade94d85c6
617767c385912&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511ca9cd86d7&v=569fa372e4b0e41110650e54&vid=5a7
cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415

Compress components with gzip F (45) AVG SCORE: 85% SERVER HIGH

There are 5 plain text components that should be sent compressed

https://js.agkn.com/prod/v0/tag.js
https://brand-ad-innovations.s3.amazonaws.com/intention-score/bai-intention-score.js
https://loadus.exelator.com/load/?p=233&g=001&j=d&xl8blockcheck=1
https://loadus.exelator.com/load//net.php?n=PGltZyB3aWR0aD0iMSIgYWx0PSJFeGVsYXRlRGF0YSIgc3R5bGU9ImRpc3BsYXk6bm9uZSIgc3JjPSJodHRwcz
ovL21hdGNoLmFkc3J2ci5vcmcvdHJhY2svY21mL2dlbmVyaWM%2FdHRkX3BpZD1leGVsYXRlIiBoZWlnaHQ9IjEiPjwvaW1nPjxpbWcgd2lkdGg9IjEiIGFsdD0i
RXhlbGF0ZURhdGEiIHN0eWxlPSJkaXNwbGF5Om5vbmUiIHNyYz0iaHR0cHM6Ly9jbS5nLmRvdWJsZWNsaWNrLm5ldC9waXhlbD9nb29nbGVfbmlkPWV4Z
WxhdGUmZ29vZ2xlX2NtJmdvb2dsZV9zYyIgaGVpZ2h0PSIxIj48L2ltZz48aW1nIHdpZHRoPSIxIiBhbHQ9IkV4ZWxhdGVEYXRhIiBzdHlsZT0iZGlzcGxheTpub25lIi
BzcmM9Imh0dHBzOi8vYWEuYWdrbi5jb20vYWRzY29yZXMvZy5waXhlbD9zaWQ9OTIxMTU3ODYwOCZfZz05MDYmZXg9NTZhZGE2OWM5ZWI4Mzg2NWQxOD
JjZWJkZmE2OWMyODYiIGhlaWdodD0iMSI%2BPC9pbWc%2BaHR0cHM6Ly9zeW5jLmFscGhvbnNvLnR2L3N5bmM%2Fc3JjaWQ9MjAwJnB1aWQ9NTZhZG
E2OWM5ZWI4Mzg2NWQxODJjZWJkZmE2OWMyODY%3D&h=5e998ea83c17f6ec866445aeff81a992
https://tags.bkrtx.com/js/bk-coretag.js

Avoid URL redirects F (0) AVG SCORE: 88% CONTENT MEDIUM

There are 58 redirects

Analyze your site at https://gtmetrix.com Page 50 of 59


YSlow Recommendations

https://px.c1exchange.com/pubpixel/1234844 redirects to https://cms.c1exchange.com/cookie/match/adv/adx/seed?...


https://cms.c1exchange.com/cookie/match/adv/adx/seed?... redirects to https://cm.g.doubleclick.net/pixel?...
https://cm.g.doubleclick.net/pixel?... redirects to https://cm.g.doubleclick.net/pixel?...
https://sb.scorecardresearch.com/b?... redirects to https://sb.scorecardresearch.com/b2?...
https://cm.g.doubleclick.net/pixel?... redirects to https://cm.c1exchange.com/cookie/match?...
https://cm.c1exchange.com/cookie/match?... redirects to https://cms.c1exchange.com/cookie/match/adv/apn/seed?...
https://cms.c1exchange.com/cookie/match/adv/apn/seed?... redirects to https://ib.adnxs.com/getuid?...
https://ib.adnxs.com/getuid?... redirects to https://ib.adnxs.com/bounce?...
https://aa.agkn.com/adscores/g.pixel?... redirects to https://match.adsrvr.org/track/cmf/generic?...
https://aa.agkn.com/adscores/g.pixel?... redirects to https://pixel.mathtag.com/sync/img?...
https://ib.adnxs.com/bounce?... redirects to https://cms.c1exchange.com/cookie/match/appnexus?...
https://cms.c1exchange.com/cookie/match/appnexus?... redirects to https://pixel.mathtag.com/sync/img?...
https://match.adsrvr.org/track/cmf/generic?... redirects to https://match.adsrvr.org/track/cmb/generic?...
https://pixel.mathtag.com/sync/img?... redirects to https://pixel.mathtag.com/sync/img?...
https://bttrack.com/pixel/cookiesync?... redirects to https://cm.revcontent.com/pixel_sync?...
https://g.cwkuki.com/cs/D8f2l?... redirects to https://cm.revcontent.com/pixel_sync?...
https://pixel.mathtag.com/sync/img?... redirects to https://cms.c1exchange.com/cookie/match/mm?...
https://match.adsrvr.org/track/cmb/generic?... redirects to https://adadvisor.net/adscores/g.pixel?...
https://pixel.mathtag.com/sync/img?... redirects to https://aa.agkn.com/adscores/g.pixel?...
https://cms.c1exchange.com/cookie/match/mm?... redirects to https://s6-pixel.c1exchange.com/pubpixel/dmp/1234844?...
https://adadvisor.net/adscores/g.pixel?... redirects to https://aa.agkn.com/adscores/g.pixel?...
https://loadus.exelator.com/load/?... redirects to https://loadus.exelator.com/load/?...
https://aa.agkn.com/adscores/g.pixel?... redirects to https://pixel.mathtag.com/sync/img/?...
https://syndication.twitter.com/i/jot redirects to https://platform.twitter.com/jot.html
https://pixel-a.sitescout.com/dmp/pixelSync?... redirects to https://cm.g.doubleclick.net/pixel?...
https://aa.agkn.com/adscores/g.pixel?... redirects to https://d.agkn.com/pixel/2610/?...
https://c1.adform.net/serving/cookie/match/?... redirects to https://c1.adform.net/serving/cookie/match/?...
https://c1.adform.net/serving/cookie/match/?... redirects to https://cm.g.doubleclick.net/pixel?...
https://ib.adnxs.com/getuidnb?... redirects to https://loadm.exelator.com/load/?...
https://loadm.exelator.com/load/?... redirects to https://d.turn.com/.../?...
https://idsync.rlcdn.com/397416.gif?... redirects to https://idsync.rlcdn.com/397416.gif?...
https://loadm.exelator.com/load/?... redirects to https://loadm.exelator.com/load/?...
https://d.turn.com/.../?... redirects to https://loadm.exelator.com/load/?...
https://idsync.rlcdn.com/397416.gif?... redirects to https://usermatch.krxd.net/um/v2?...
https://pixel.tapad.com/idsync/ex/receive?... redirects to https://pixel.tapad.com/idsync/ex/receive/check?...
https://rtb.adentifi.com/CookieSyncLKQD redirects to https://rtb.adentifi.com/CookieSyncLKQD&cuidcheck
https://x.bidswitch.net/sync?... redirects to https://x.bidswitch.net/ul_cb/sync?...
https://match.adsrvr.org/track/cmf/generic?... redirects to https://cs.lkqd.net/cs?...
https://sync.tidaltv.com/genericusersync.ashx?... redirects to https://sync.tidaltv.com/genericusersync.ashx?...
https://p.adsymptotic.com/d/px?... redirects to https://p.adsymptotic.com/d/px?...
https://stags.bluekai.com/site/37030?... redirects to https://stags.bluekai.com/site/37030?...
https://media.sabio.us/imp_pixel?... redirects to https://cs.lkqd.net/cs?...
https://loadm.exelator.com/load/?... redirects to https://e.nexac.com/e/exelate_sync.xgi?...
https://usermatch.krxd.net/um/v2?... redirects to https://beacon.krxd.net/usermatch.gif?...
https://loadm.exelator.com/load/?... redirects to https://load77.exelator.com/pixel.gif
https://match.adsrvr.org/track/cmf/generic?... redirects to https://loadm.exelator.com/load/?...
https://cm.g.doubleclick.net/pixel?... redirects to https://loadm.exelator.com/load/?...
https://aa.agkn.com/adscores/g.pixel?... redirects to http://loadus.exelator.com/load/?...
https://e.nexac.com/e/exelate_sync.xgi?... redirects to https://x.dlx.addthis.com/e/exelate_sync.xgi?...
https://loadm.exelator.com/load/?... redirects to https://load77.exelator.com/pixel.gif
https://loadm.exelator.com/load/?... redirects to https://load77.exelator.com/pixel.gif
http://loadus.exelator.com/load/?... redirects to http://dpm.demdex.net/ibs:dpid=3&dpuuid=56ada69c9eb83865d182c...
http://dpm.demdex.net/ibs:dpid=3&dpuuid=56ada69c9eb83865d182cebdfa69c286&redir=ht... redirects to http://dpm.demdex.net/demconf.jpg?...
https://bcp.crwdcntrl.net/map/c=9380/tp=MGID/tpid=i4eoV9HUAHBn redirects to https://bcp.crwdcntrl.net/.../tpid=i4eoV9HUAHBn
http://dpm.demdex.net/demconf.jpg?... redirects to http://loadm.exelator.com/load/?...
http://loadm.exelator.com/load/?... redirects to http://load77.exelator.com/pixel.gif
https://odr.mookie1.com/t/v2/sync?... redirects to https://cm.g.doubleclick.net/pixel?...
https://www.facebook.com/connect/ping?... redirects to https://staticxx.facebook.com/.../RQ7NiRXMcYA.js?...

Use cookie-free domains F (0) AVG SCORE: 49% COOKIE LOW

There are 138 components that are not cookie-free

https://images.girlsaskguys.com/content/css/desktop.min.css?29912
https://images.girlsaskguys.com/content/css/desktop-question.min.css?29912
https://www.girlsaskguys.com/brand-styles?v=1613
https://images.girlsaskguys.com/content/images/desktop/gag-logo@2x.png
https://images.girlsaskguys.com/custom/topics/sports-new.jpg
https://images.girlsaskguys.com/custom/topics/womensbehavior.jpg

Analyze your site at https://gtmetrix.com Page 51 of 59


YSlow Recommendations

https://images.girlsaskguys.com/custom/topics/mensbehavior.jpg
https://images.girlsaskguys.com/custom/topics/flirting.jpg
https://images.girlsaskguys.com/custom/topics/dating.jpg
https://images.girlsaskguys.com/custom/topics/relationships.jpg
https://images.girlsaskguys.com/custom/topics/style.jpg
https://images.girlsaskguys.com/custom/topics/generalhealth.jpg
https://images.girlsaskguys.com/custom/topics/marriage.jpg
https://images.girlsaskguys.com/custom/topics/breakup.jpg
https://images.girlsaskguys.com/custom/topics/education.jpg
https://images.girlsaskguys.com/custom/topics/arts.jpg
https://images.girlsaskguys.com/custom/topics/parents-family.jpg
https://images.girlsaskguys.com/custom/topics/food-beverage.jpg
https://images.girlsaskguys.com/custom/topics/girlsaskguys.jpg
https://images.girlsaskguys.com/custom/topics/howdoilook.jpg
https://images.girlsaskguys.com/custom/topics/other.jpg
https://images.girlsaskguys.com/custom/topics/religion.jpg
https://images.girlsaskguys.com/custom/topics/giftsforwomen.jpg
https://images.girlsaskguys.com/custom/topics/politics.jpg
https://images.girlsaskguys.com/custom/topics/tech.jpg
https://images.girlsaskguys.com/custom/topics/travel.jpg
https://images.girlsaskguys.com/custom/topics/news.jpg
https://images.girlsaskguys.com/users/5f4a019d7489907f1adbd4a5e958caaa/thumb.png?193
https://images.girlsaskguys.com/users/a2df52953b57078def3d37c5fa6efd41/thumb.jpg?2
https://images.girlsaskguys.com/users/91f236d7fed960c00c91938fb0fada60/thumb.jpg?178
https://images.girlsaskguys.com/users/c7e527792857f9de3689894ec4b36834/thumb.jpg?730
https://images.girlsaskguys.com/custom/useravatars/artistic.jpg
https://images.girlsaskguys.com/custom/useravatars/old-fashioned.jpg
https://images.girlsaskguys.com/users/a0f42d95421a6ab7113bbd6a848e5117/thumb.jpg?12
https://images.girlsaskguys.com/custom/useravatars/preppy.jpg
https://images.girlsaskguys.com/custom/useravatars/explorer.jpg
https://images.girlsaskguys.com/users/a41f387573ffe9d087a039e6981af59d/thumb.jpg?23
https://images.girlsaskguys.com/users/407a1fe82081edfe2142a1bd712333ae/thumb.jpg?103
https://images.girlsaskguys.com/custom/useravatars/bookworm.jpg
https://images.girlsaskguys.com/users/75ab76f760760bcef9de01fdfc18191a/thumb.jpg?32
https://images.girlsaskguys.com/users/ff7c902d0474dfa50e2ba891115e06a8/thumb.png?94
https://images.girlsaskguys.com/users/3605fedd56ce30d37ade6b163147b940/thumb.jpg?34
https://images.girlsaskguys.com/users/90046799048c380bf0db17c2b027428f/thumb.jpg?11
https://images.girlsaskguys.com/custom/useravatars/anonymous_guy.png
https://images.girlsaskguys.com/users/d7003ccb54f220dcf951cd593f321c56/thumb.jpg?3
https://images.girlsaskguys.com/custom/useravatars/daddys-girl.jpg
https://delivery.vidible.tv/jsonp/pid=5952b3519e45102b384dc50e/57d325e276a6057ba4a05a00.js
https://images.girlsaskguys.com/custom/vod.js?v=3
https://images.girlsaskguys.com/custom/Logos/gag-signup-1.gif
https://images.girlsaskguys.com/custom/useravatars/girly-girl.jpg
https://images.girlsaskguys.com/content/js/core.min.js?29912
https://images.girlsaskguys.com/content/js/desktop-question.min.js?29912
https://images.girlsaskguys.com/Content/images/gag-icon-sprites_2x.png?29912
https://images.girlsaskguys.com/Content/images/desktop/icons/login.png
https://images.girlsaskguys.com/Content/images/gag-sprites_2x.png?29912
https://jadserve.postrelease.com/t?ntv_url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-yo
ur-bills
https://apis.google.com/js/platform.js?onload=gpCallback
https://images.girlsaskguys.com/Content/images/desktop/nocover-girl.png
https://images.girlsaskguys.com/Content/images/desktop/icons/ico-hdr-video.png
https://images.girlsaskguys.com/Content/images/desktop/icons/social_bar.png
https://gag.gagwebapi.com/api/webpush/script?token=&client=ChromeDesktop
https://images.girlsaskguys.com/content/images/emoji-data/1f61e.png
https://securepubads.g.doubleclick.net/gampad/ads?gdfp_req=1&correlator=962398745317386&output=json_html&callback=googletag.impl.pubads.callb
ackProxy1&impl=fifs&adsid=NT&json_a=1&hxva=1&scor=4434133215623769&eid=21061645%2C21061764&vrg=205&guci=2.2.0.0.2.2&sc=1&sfv=1-0-23
&iu_parts=281896196%2CGirlsAskGuys_Desktop_Masthead%2CGirlsAskGuys_Desktop_Right_1%2CGirlsAskGuys_Desktop_Right_2%2CGirlsAskGuys
_Desktop_AboveOpinions%2CGirlsAskGuys_Desktop_BetweenGender%2CGirlsAskGuys_Desktop_UnderOpinions%2CGirlsAskGuys_Desktop_Inter_1%
2CGirlsAskGuys_Desktop_EndOfPage%2CGirlsAskGuys_Desktop_Inter_2%2CGirlsAskGuys_Desktop_Inter_4&enc_prev_ius=%2F0%2F1%2C%2F0%2F
2%2C%2F0%2F3%2C%2F0%2F4%2C%2F0%2F5%2C%2F0%2F6%2C%2F0%2F7%2C%2F0%2F8%2C%2F0%2F9%2C%2F0%2F10&prev_iu_szs=320x
50%7C300x250%7C728x90%7C970x250%7C730x250%2C320x50%7C300x250%2C320x50%7C300x250%7C300x600%2C320x50%7C728x90%7C730x
400%7C300x250%7C336x280%7C730x250%2C320x50%7C728x90%7C730x400%7C300x250%7C336x280%7C730x250%2C320x50%7C728x90%7C73
0x400%7C730x500%7C300x250%7C336x280%7C730x250%2C1x1%2C320x50%7C728x90%7C730x400%7C300x250%7C336x280%7C730x250%2C1x1
%2C1x1&fluid=height%2Cheight%2Cheight%2Cheight%2Cheight%2Cheight%2C0%2Cheight%2C0%2C0&eri=4&cust_params=XperLevel%3D0%26utm_
source%3DNone%26utm_medium%3DNone%26utm_campaign%3DNone%26PostInfo%3Dq2125533%26Gender%3DUnknownGender%26Age%3DUnk
nownAge%26Topics%3Dtrending-news%26Mobile%3DMobileNo%26MarkedAs%3DFalse%26ShowAllAds%3DYes%26PageType%3DQuestion%26BrandI
d%3DGAG-0&cookie_enabled=1&bc=5&abxe=1&lmt=1526366238&dt=1526366238744&frm=20&biw=1366&bih=768&oid=3&adxs=0%2C908%2C908%2
C163%2C163%2C163%2C683%2C163%2C683%2C683&adys=0%2C786%2C1573%2C1584%2C4097%2C4817%2C5258%2C4917%2C5289%2C532
0&adks=2967190282%2C1923088448%2C3698094709%2C500454048%2C2910813795%2C2966204064%2C2385381749%2C1564585714%2C2376

Analyze your site at https://gtmetrix.com Page 52 of 59


YSlow Recommendations

667967%2C650677945&gut=v2&ifi=1&u_tz=-420&u_his=3&u_h=858&u_w=1367&u_ah=858&u_aw=1367&u_cd=24&u_nplug=4&u_nmime=5&u_sd=1&fla
sh=0&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&dssz=54&icsg=3518495
2999936&std=0&vis=1&scr_x=0&scr_y=0&psz=1050x90%7C300x250%7C300x250%7C737x90%7C737x90%7C737x90%7C1366x21%7C737x90%7C136
6x21%7C1366x21&ga_vid=1652242376.1526366239&ga_sid=1526366239&ga_hid=1617319896
https://securepubads.g.doubleclick.net/gpt/pubads_impl_rendering_205.js
https://jadserve.postrelease.com/trk.gif?ntv_ui=5b70eaa9-a08b-47b7-a496-a6b4da384953&ntv_ht=HoD6WgA&ntv_hu=1580869101&ntv_at=303,302&ntv_a
=AAAAAAAAAAGVoDA&ord=1526366239235&ntv_dpl=1009,1011,1001,1003,1021,1006,1022,1007
https://api.content-ad.net/Scripts/widget2.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403809&cb=152
6366239821
https://api.content-ad.net/Scripts/widget2.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403806&cb=1526
366239854
https://www.facebook.com/tr/?id=781946178525195&ev=PageView&dl=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-y
ou-use-the-bitcoin-to-pay-your-bills&rl=&if=false&ts=1526366239913&sw=1367&sh=858&v=2.8.14&r=stable&ec=0&o=28&it=1526366238874
https://www.facebook.com/tr/?id=781946178525195&ev=ViewContent&dl=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-woul
d-you-use-the-bitcoin-to-pay-your-bills&rl=&if=false&ts=1526366239915&cd[content_name]=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%
2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&cd[content_type]=product&cd[content_category]=Trending%20%26amp%3B%20News&cd[content
_ids]=%2Fquestion%2F2125533&cd[gender]=None&cd[xper_level]=0&cd[topics_follow]=undefined&cd[visitor]=Guest&cd[mobile]=false&sw=1367&sh=858
&v=2.8.14&r=stable&ec=1&o=28&it=1526366238874
https://www.facebook.com/tr/?id=781946178525195&ev=ViewPage&dl=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-y
ou-use-the-bitcoin-to-pay-your-bills&rl=&if=false&ts=1526366239915&cd[PagePath]=%2Fquestion%2F2125533&cd[topic_link]=trending-news&cd[display_t
opic_link]=trending-news&sw=1367&sh=858&v=2.8.14&r=stable&ec=2&o=28&it=1526366238874
https://trends.revcontent.com/serve.js.php?w=95566&t=rc_718&c=1526366237833&width=1366&referer=https%3A%2F%2Fwww.girlsaskguys.com%2Ftren
ding-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills
https://api.content-ad.net/GetWidget.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403809&cb=1526366239821
&lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitco
in-to-pay-your-bills&ik=2018051423_2ae54fec8cdfd17bf81f1c875a7cd0be&ikb=2ae54fec8cdfd17bf81f1c875a7cd0be&duid=5500e9decd16c9a282497440
b08ed2c24dfa5c87e1c1069a843ccd1800662667&ls=ip-172-18-60-165&dstlload=true
https://api.content-ad.net/GetWidget.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ==&wid=403806&cb=1526366239854&
lazyLoad=false&server=api.content-ad.net&title=&url=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin
-to-pay-your-bills&ik=2018051423_104c4851332f25f9967af95a5fa2684d&ikb=104c4851332f25f9967af95a5fa2684d&duid=5500e9decd16c9a282497440b
08ed2c24dfa5c87e1c1069a843ccd1800662667&ls=ip-172-18-62-183&dstlload=true
https://cdn.revcontent.com/build/css/rev2.min.css?v=c75d860790cfbd475402bedb463df89716d9b597
https://cdn.revcontent.com/build/js/rev2.min.js?v=c75d860790cfbd475402bedb463df89716d9b597&del=//trends.revcontent.com/&lg=//cdn.revcontent.com/a
ssets/img/rc-logo.png&ci=//cdn.revcontent.com/assets/img/icon-close.png&ab=//trends.revcontent.com/rc-about.php&ldr=//cdn.revcontent.com/assets/img/rc
-spinner-md.gif&ht=//trends.revcontent.com/rc-interests.php
https://sb.scorecardresearch.com/beacon.js
https://pixel.quantserve.com/pixel/p-aD1qr93XuF6aC.gif?labels=Publishers.Publisher-88920,Widgets.Widget-95566
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/1502817721.jpg&static=true&pos=face&h=315&w=420&static=tru
e&fmt=jpeg
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15251659200349305815.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg
https://img.revcontent.com/?url=https://revcontent-p0.s3.amazonaws.com/content/images/15262929340920703819.jpg&static=true&pos=face&h=315&w=4
20&static=true&fmt=jpeg
https://cm.revcontent.com/pixel_sync?exchange_uid=MjcxNmQxZTgwMWU5YjNlZGZlY2VkZWNmZDViMzIwOGQ%3D&bidder=112&bidder_uid=6b74e3e0-58
0a-11e8-9230-0242ac110003
https://cm.revcontent.com/pixel_sync?bidder=109&bidder_uid=7a0fee80-a952-4541-acb1-4ee0fb72b6ed&exchange_uid=MjcxNmQxZTgwMWU5YjNlZGZlY2
VkZWNmZDViMzIwOGQ=
https://ad.lkqd.net/vpaid/vpaid.js?fusion=1.0
https://api.content-ad.net/pixel.gif?s=ip-172-18-60-165&ip=204.187.14.71&wid=403809&cb=1526366240866&c=CA&d=&ik=2018051423_2ae54fec8cdfd17
bf81f1c875a7cd0be
https://api.content-ad.net/px.gif
https://api.content-ad.net/pixel.gif?s=ip-172-18-62-86&ip=204.187.14.71&wid=403806&cb=1526366240870&c=CA&d=&ik=2018051423_104c4851332f25f9
967af95a5fa2684d
https://loadus.exelator.com/load/?p=233&g=001&j=d&xl8blockcheck=1
https://pixel.quantserve.com/pixel;r=1664670909;labels=Publishers.Publisher-88920%2CWidgets.Widget-95566;rf=0;a=p-aD1qr93XuF6aC;url=https%3A%
2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills;fpan=1;fpa=P0-1446014040-1526366242221;n
s=0;ce=1;cm=;ref=;je=0;sr=1367x858x24;enc=n;dst=1;et=1526366242220;tzo=420;ogl=title.Would%20you%20use%20the%20Bitcoin%20to%20pay%20you
r%20bills%3F%2Cdescription.If%20you're%20wondering%20what%20is%20a%20Bitcoin%252C%20it's%20basically%20digital%20money%20and%20p
aying%20s%2Ctype.article%2Curl.https%3A%2F%2Fwww%252Egirlsaskguys%252Ecom%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to%
2Csite_name.GirlsAskGuys%2Cimage.https%3A%2F%2Fimages%252Egirlsaskguys%252Ecom%2Fcustom%2Ftopics%2Fnews-sh%252Ejpg%2Cimage
%3Awidth.1200%2Cimage%3Aheight.630
https://pixel.mathtag.com/sync/img/?mt_exid=10009&mt_exuid=263990302691003025065
https://adservice.google.com/adsid/integrator.js?domain=tpc.googlesyndication.com
https://cm.g.doubleclick.net/pixel?google_ula=1293153&google_nid=ssc&google_push=AHNF13K1U0oHz3pO9YwYuBybTIrvkrJS2KUfFPqT1hDigA&google
_sc&google_hm=uxOcjG3dRxO_75e55HGqIg
https://d.agkn.com/pixel/2610/?che=1526366242&sk=263990302691003025065&pd=&puid=b6561484-3074-4ff3-a702-cd32d50bdd17
https://servicer.mgid.com/114115/1?w=730&h=107&cols=4&pv=6&cbuster=1526366243888535292670&ref=https%3A%2F%2Fwww.girlsaskguys.com%2F
trending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&iframe=1&pageView=1&pvid=16362848c328f8e4fcd
https://cm.g.doubleclick.net/pixel?google_nid=1024&google_ula=1641347&google_hm=MjExNTI4MjY3OTQyMjYzNjY5NA&google_push=AHNF13JojzivWFq
POcr7lNcbbAbuG-JnwijDtnP2f8azHL0tDw
https://ss3.zedo.com/gecko/tag/networkIds.js?4022784076
https://as-sec.casalemedia.com/cygnus?v=8&fn=__pwhbjs__.handleCygnusResponse&s=241978&r=%7B%22id%22%3A%2233f8586f99e7b7%22%2C%

Analyze your site at https://gtmetrix.com Page 53 of 59


YSlow Recommendations

22imp%22%3A%5B%7B%22id%22%3A%2249d5989f8bfaa3%22%2C%22ext%22%3A%7B%22siteID%22%3A241978%2C%22sid%22%3A%22pr_1_1_s
%22%7D%2C%22video%22%3A%7B%22protocols%22%3A%5B2%2C5%2C3%2C6%5D%2C%22maxduration%22%3A300%2C%22minduration%22%3
A5%2C%22mimes%22%3A%5B%22video%2Fmp4%22%2C%22video%2Fwebm%22%5D%2C%22startdelay%22%3A0%2C%22linearity%22%3A1%2C
%22w%22%3A640%2C%22h%22%3A480%7D%7D%5D%2C%22site%22%3A%7B%22page%22%3A%22https%3A%2F%2Fwww.girlsaskguys.com%2Ft
rending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills%22%7D%7D
https://tpc.googlesyndication.com/daca_images/simgad/111467612252394556?w=400&h=209
https://tpc.googlesyndication.com/daca_images/simgad/579286379986262663
https://tpc.googlesyndication.com/pagead/js/r20180509/r20110914/client/ext/m_qs_click_protection.js
https://cm.mgid.com/i.js
https://imgg-cdn.mgid.com/2543/2543365_492x328.jpg
https://imgg-cdn.mgid.com/2591/2591379_492x328.jpg
https://imgg-cdn.mgid.com/2560/2560061_492x328.jpg
https://imgg-cdn.mgid.com/2741/2741147_492x328.jpg
https://load77.exelator.com/pixel.gif
https://x.dlx.addthis.com/e/exelate_sync.xgi?na_exid=56ada69c9eb83865d182cebdfa69c286
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid
=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&at=preroll&adIdx=-1&aen=FROS%20-%20CO%20-%20He
arst%20Magazine%20-%20All%20Geos%20-%20All%20Platforms%20-%20Network&pbl=true&ps=html5-vpaid&rcid=551440471146fb0d084da510&rid=57
2a5079e4b0fb7d4078f6b5&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511ca9cd86d7&v=56a11164e4b05fb5460fcca3
&vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-
would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.5301647826567564&7331981622
https://cm.steepto.com/setmuidn/?muidn=i4eoV9HUAHBn
https://g2.gumgum.com/visitor/digitrust?dti=gOvq46B2AmzYG4FRTcuGzG4ksaTZmn9BvcgUhUJ1rcn6BoReqyvwBJgSLHsZqtKlKG7Kr9N5V51efIMQAIa4tSBf
19CID%2Bj0o2pMPdCuAIRMQe9X728n2kuJGetPM9S70odTQpg5Jvtt3%2FCjl8mldXQ%2FJN4T31C89HxrntbjWNoFJmzJ3dxntFskk1DSfsVe5kARbGLqChDc
llsOaH%2BbIck3%2BKFvR89P9xZ3k7jpEZxNspAWZptB7ksPW4VkIntPxtBJ4kNMrlUE6GFawEl3POgduQajNarJxArTlWIzqtVUlAaxuuPJb1mFuBvnTgzES0DwD
I3ID0z12c0IqZPIUA%3D%3D&dtk=4&domain=www.girlsaskguys.com
https://tracker.bannerflow.com//api/tr/v1/pixel?data=%7B%22u%22%3A%7B%22d%22%3A%7B%22r%22%3A%22858x1367%22%7D%2C%22tz%22%3A%
22-0700%22%2C%22r%22%3A%22https%3A%2F%2Ftpc.googlesyndication.com%2Fsafeframe%2F1-0-23%2Fhtml%2Fcontainer.html%22%2C%22s%2
2%3A%221526366245708_67542%22%7D%2C%22a%22%3A%7B%22a%22%3A%22shutterstock%22%2C%22br%22%3A%22589873bd5a4e8749bce
403ff%22%2C%22c%22%3A%225a6ba42cbaae30223843aa4b%22%2C%22ad%22%3A%225a6ba42fbaae30223843aa5e%22%2C%22p%22%3A%225
a787825e314e03f581fcc26%22%2C%22b%22%3A%225a6ba42fbaae30223843aa5d%22%2C%22pl%22%3A1%2C%22r%22%3A0%2C%22an%22%3A
1%2C%22s%22%3A%2258aeef6cbd8d3e2308a2d09b%22%2C%22t%22%3A%225a6ba42cbaae30223843aa4f%22%2C%22l%22%3A%22589873bd5a
4e8749bce403fe%22%2C%22bf%22%3A%225a6ba42fbaae30223843aa5b%22%7D%2C%22e%22%3A%5B%7B%22t%22%3A1%2C%22v%22%3A%7B
%22vw%22%3A1%2C%22s%22%3A0%7D%7D%5D%7D
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:386}];et=387;eid=114;ai=RB%20Fastlane%5Erubicon%5E372688_1-6
40-480%5E%5E370;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.504325
710117083&9087452643
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:387}];et=388;eid=114;ai=RB%20Fastlane%5Erubicon_preroll%5E372
688_1-640-480%5E%5E371;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.
504325710117083&4083087879
https://ss3.zedo.com/utils/zplayer/wrapper/v8.7/wrapper.js
https://ss3.zedo.com/jsc/images/zplayer/inarticle-Watch-Text-Btn-rbg.png
https://ss3.zedo.com/jsc/images/zplayer/inarticle-Play-Btn.png
https://bcp.crwdcntrl.net/map/ct=y/c=9380/tp=MGID/tpid=i4eoV9HUAHBn
http://load77.exelator.com/pixel.gif
https://ss3.zedo.com/utils/zplayer/wrapper/v8.7/HTML/app/assets/images/10k.gif
https://images.host.bannerflow.com/5a6ba42fbaae30223843aa5d.rSnrv6e2i5ev.jpg?cb=636535384508927248
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:726}];eid=99;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-
news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.8705402673723517&5354521700
https://c.mgid.com/c?pv=2&f=1&v=175|117|40|_xCiQvIHIZVKxd4kCJ1hVH2vteKohlvoKwCsHz4D8KQBZeSa_XAK0-xWwEGLelyg&fw=1&v=175|117|8|_xCiQvI
HIZVKxd4kCJ1hVNZGOVzxUQOZ_8qMogHxZpiIrdDWZx65CUubAtlfDiDX&v=175|117|8|_xCiQvIHIZVKxd4kCJ1hVCkShrTRYCsuS-nx8rsCh-s4knch-2zEUf3n4z
gQarDq&v=175|117|24|_xCiQvIHIZVKxd4kCJ1hVFD6Di1r6RJcvvLwPDcJHOXLbY-FVVUeOwD18PrLcBlY&tt=Direct&cid=114115&h2=i6dDxqFYAGENzktqx-W
UzbXB6o71t44bIfJ2ThSkKus*
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:850}];eid=58;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-
news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.39588017330681624&8755066302
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:850},{%2258%22:0}];et=851;eid=29;g=0;m=0;w=0;pu=https://www.girls
askguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.3228689037474104&4839259873
https://ss3.zedo.com/utils/zplayer/wrapper/v8.7/HTML/app/scripts/all.min.js
https://cm.g.doubleclick.net/pixel?google_nid=xaxis_dev_dmp&google_push=AHNF13LbXjmhF2nMPQDwP5zhkliwkCLNe7p6mTw3MZy3Temd&google_hm
=MTE0NTkxOTgxNDg2NTgzMDQwMzQ
https://ss3.zedo.com/utils/zplayer/wrapper/v8.7/HTML/app/styles/themes/default/videogular.min.css
https://ss3.zedo.com/jsc/images/zplayer/inarticle-Pause-Btn.png
https://cdn.mgid.com/js/perfect-scrollbar.js
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid
=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-
%20VAN%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade8
79442b071692878a4c7&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511ca9cd86d7&v=569fa372e4b0e41110650e54&
vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h

Analyze your site at https://gtmetrix.com Page 54 of 59


YSlow Recommendations

tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid
=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-
%20Rest%20of%20Brands%20VIP%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e0
72da23&rid=5ade830747fd696c810db0b7&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511ca9cd86d7&v=569fa372e4b
0e41110650e54&vid=5a7cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://scripts.host.bannerflow.com/1.0.7/bf.min.js
https://resources.host.bannerflow.com/background-300x600-e476e3ae-d435-49eb-b881-8c3595b6ebfc-12Co258.png?v=636526008470000000
https://resources.host.bannerflow.com/shutterstock-white-print-ee8ce1a0-d960-4b06-921e-301883159cb5-C8o1D.png?v=636233660500000000
https://resources.host.bannerflow.com/laptop-300x600-253098d8-7fee-4e89-8515-f207ee2f12bf-122o120.png?v=636526008880000000
https://resources.host.bannerflow.com/hand2-300x600-1499395a-e1d0-4a41-8c98-d5d935c63aa1-FBo198.png?v=636526008830000000
https://ads-trk.vidible.tv/ads/ad-request.gif?bcid=57d325e276a6057ba4a05a00&bid=5af590c35f18350001ddd0cc&pid=5952b3519e45102b384dc50e&pt=h
tml5&pv=17.21.1374&r=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&s=true&sid
=efdce8e2-3139-406f-ae35-d896bafed6d4&vvuid=431A4B9F-8A65-454E-8A8F-CC1C771A5E25&at=preroll&adIdx=-1&aen=Oath%201V%20-%20AOL%20-
%20VAN%20-%20CA%20-%20Desktop%20-%20VPAID%20-%20Preroll&pbl=true&ps=html5-vpaid&rcid=5512a39b09eab108e072da23&rid=5ade94d85c6
617767c385912&txid=2f10fb3b-99ff-43a7-9072-210ac852c9f2&usid=96c9ab94-e5cc-4aed-b888-511ca9cd86d7&v=569fa372e4b0e41110650e54&vid=5a7
cc316cc912f2b46cda331&w=737&p.vw.active=1&p.vw.sound=0&vwa=0&vwm=0&h=415
https://sb.scorecardresearch.com/c2/6035391/cs.js
Reduce DNS lookups F (0) AVG SCORE: 69% CONTENT LOW

The components are split over more than 4 domains

www.girlsaskguys.com: 4 components, 116.9K (25.8K GZip)


fonts.googleapis.com: 4 components, 25.4K (2.5K GZip)
images.girlsaskguys.com: 57 components, 1231.6K (173.3K GZip)
s.ntv.io: 1 component, 236.7K (68.8K GZip)
delivery.vidible.tv: 1 component, 48.2K (11.4K GZip)
js.agkn.com: 1 component, 2.9K
px.c1exchange.com: 1 component, 0.0K
www.googletagservices.com: 1 component, 14.6K (5.8K GZip)
www.googletagmanager.com: 1 component, 57.2K (21.7K GZip)
cms.c1exchange.com: 4 components, 0.0K
trends.revcontent.com: 3 components, 33.8K (11.4K GZip)
adservice.google.ca: 2 components, 0.2K (0.2K GZip)
adservice.google.com: 3 components, 0.3K (0.3K GZip)
securepubads.g.doubleclick.net: 11 components, 309.6K (105.3K GZip)
jadserve.postrelease.com: 2 components, 0.8K (0.4K GZip)
cm.g.doubleclick.net: 10 components, 2.6K
www.google-analytics.com: 1 component, 35.1K (14.3K GZip)
connect.facebook.net: 3 components, 311.3K (90.5K GZip)
d31qbv1cthcecs.cloudfront.net: 1 component, 4.2K (1.2K GZip)
apis.google.com: 1 component, 44.0K (16.9K GZip)
sb.scorecardresearch.com: 7 components, 1.6K (0.9K GZip)
static.criteo.net: 1 component, 71.3K (20.1K GZip)
cdn-ssl.vidible.tv: 5 components, 1708.6K (498.4K GZip)
trk.vidible.tv: 85 components, 3.6K
api.facebook.com: 1 component, 0.3K (0.2K GZip)
gag.gagwebapi.com: 1 component, 0.1K (0.2K GZip)
cm.c1exchange.com: 1 component, 0.0K
d.agkn.com: 2 components, 0.5K
platform.twitter.com: 3 components, 141.2K (42.2K GZip)
pagead2.googlesyndication.com: 12 components, 661.6K (244.2K GZip)
tpc.googlesyndication.com: 16 components, 266.8K (87.5K GZip)
certify.alexametrics.com: 1 component, 0.04K
z.moatads.com: 3 components, 674.0K (208.1K GZip)
cdn.vidible.tv: 1 component, 0.01K (0.03K GZip)
brand-ad-innovations.s3.amazonaws.com: 1 component, 7.0K
www.facebook.com: 6 components, 0.1K (0.05K GZip)
ib.adnxs.com: 5 components, 0.08K
api.content-ad.net: 7 components, 92.7K (19.5K GZip)
ad.lkqd.net: 3 components, 523.1K (149.6K GZip)
js.gumgum.com: 1 component, 76.9K (32.3K GZip)
px.moatads.com: 20 components, 0.8K
cdn.playwire.com: 19 components, 1007.7K (273.5K GZip)
staticxx.facebook.com: 2 components, 83.6K (25.6K GZip)
aa.agkn.com: 6 components, 0.1K
g2.gumgum.com: 3 components, 0.5K (0.3K GZip)
ss3.zedo.com: 12 components, 1693.4K (381.9K GZip)
v.lkqd.net: 6 components, 35.3K (13.2K GZip)
match.adsrvr.org: 8 components, 2.2K
pixel.mathtag.com: 4 components, 0.04K
cdn.revcontent.com: 2 components, 257.1K (83.6K GZip)

Analyze your site at https://gtmetrix.com Page 55 of 59


YSlow Recommendations

secure.quantserve.com: 1 component, 11.0K (4.7K GZip)


bttrack.com: 1 component, 0.2K
g.cwkuki.com: 1 component, 0.0K
pixel.quantserve.com: 2 components, 0.07K
img.revcontent.com: 3 components, 70.3K
syndication.twitter.com: 2 components, 0.07K (0.09K GZip)
s0.2mdn.net: 6 components, 592.7K (208.5K GZip)
googleads4.g.doubleclick.net: 2 components, 0.0K
tags.crwdcntrl.net: 1 component, 30.2K (9.1K GZip)
cm.revcontent.com: 2 components, 0.07K
t.lkqd.net: 14 components, 0.0K
d32oduq093hvot.cloudfront.net: 2 components, 4.0K
d3dytsf4vrjn5x.cloudfront.net: 3 components, 43.6K
rules.quantcount.com: 1 component, 0.0K
adadvisor.net: 1 component, 0.0K
loadus.exelator.com: 4 components, 2.5K
cdn.digitru.st: 3 components, 43.5K (13.2K GZip)
aka-cdn-ns.adtechus.com: 1 component, 69.8K
echo.intergient.com: 26 components, 0.0K
pixel-a.sitescout.com: 1 component, 0.0K
jsc.mgid.com: 1 component, 111.3K (30.0K GZip)
c1.adform.net: 2 components, 0.0K
googleads.g.doubleclick.net: 4 components, 146.2K (49.0K GZip)
config.playwire.com: 2 components, 14.8K (1.6K GZip)
loadm.exelator.com: 9 components, 0.0K
idsync.rlcdn.com: 4 components, 0.08K
video.adaptv.advertising.com: 2 components, 19.9K (4.1K GZip)
servicer.mgid.com: 1 component, 16.4K (3.6K GZip)
tags.bkrtx.com: 1 component, 39.1K
cdn.video.playwire.com: 1 component, 308.1K
d.turn.com: 1 component, 0.0K
pixel.tapad.com: 2 components, 0.0K
rtb.adentifi.com: 1 component, 0.0K
x.bidswitch.net: 3 components, 0.0K
sync.tidaltv.com: 5 components, 0.0K
gu.dyntrk.com: 3 components, 0.0K
p.adsymptotic.com: 4 components, 0.0K
stags.bluekai.com: 4 components, 0.1K
media.sabio.us: 1 component, 0.2K
saxp.zedo.com: 4 components, 140.5K (11.5K GZip)
c.amazon-adsystem.com: 1 component, 11.9K (4.0K GZip)
as-sec.casalemedia.com: 1 component, 0.05K (0.07K GZip)
embed.bannerflow.com: 1 component, 4.8K (2.1K GZip)
usermatch.krxd.net: 1 component, 0.0K
e.nexac.com: 1 component, 0.1K
cdn.mirs.com: 1 component, 752.4K (189.6K GZip)
cm.mgid.com: 1 component, 0.2K (0.1K GZip)
imgg-cdn.mgid.com: 4 components, 135.0K
load77.exelator.com: 2 components, 0.08K
x.dlx.addthis.com: 1 component, 0.04K
imasdk.googleapis.com: 6 components, 2816.4K (941.9K GZip)
ads-trk.vidible.tv: 8 components, 0.3K
scripts.host.bannerflow.com: 2 components, 48.5K (16.3K GZip)
ads.rubiconproject.com: 1 component, 78.6K (24.5K GZip)
tt1.zedo.com: 9 components, 0.3K
dpm.demdex.net: 4 components, 0.0K
aax.amazon-adsystem.com: 1 component, 0.03K
cm.steepto.com: 1 component, 0.04K
bcp.crwdcntrl.net: 6 components, 2.1K (0.8K GZip)
banners.host.bannerflow.com: 2 components, 42.0K (6.7K GZip)
tracker.bannerflow.com: 1 component, 0.04K
fastlane-adv.rubiconproject.com: 1 component, 0.4K
odr.mookie1.com: 1 component, 0.0K
images.host.bannerflow.com: 1 component, 21.1K
c.mgid.com: 1 component, 0.04K
video-ads.rubiconproject.com: 2 components, 56.7K (17.2K GZip)
code.jquery.com: 1 component, 86.7K (35.1K GZip)
pubads.g.doubleclick.net: 6 components, 14.8K (2.3K GZip)
cdn.mgid.com: 1 component, 44.7K (8.6K GZip)
api.ipify.org: 1 component, 0.01K
sdk.amazonaws.com: 1 component, 1480.4K (219.5K GZip)
content.jwplatform.com: 1 component, 164.9K (50.3K GZip)

Analyze your site at https://gtmetrix.com Page 56 of 59


YSlow Recommendations

ads.adaptv.advertising.com: 9 components, 13.5K (7.2K GZip)


optimized-by.rubiconproject.com: 1 component, 0.1K
stats.aws.rubiconproject.com: 1 component, 0.04K
resources.host.bannerflow.com: 4 components, 50.0K
track.eyeviewads.com: 1 component, 0.0K
us-u.openx.net: 2 components, 0.0K
sync-tm.everesttech.net: 3 components, 0.0K
bh.contextweb.com: 2 components, 0.0K
cookie.brealtime.com: 1 component, 0.0K
image8.pubmatic.com: 3 components, 0.5K
cs.lkqd.net: 19 components, 0.7K
acds.prod.vidible.tv: 1 component, 15.8K (6.3K GZip)
px.surveywall-api.survata.com: 1 component, 0.0K
x.skimresources.com: 1 component, 0.0K
ml314.com: 1 component, 0.04K
t.sharethis.com: 1 component, 0.0K
tags.bluekai.com: 2 components, 0.0K
pixeltrack.eyeviewads.com: 1 component, 0.0K
sync.crwdcntrl.net: 1 component, 0.04K
sync.mathtag.com: 2 components, 0.0K
tt3.zedo.com: 1 component, 0.04K
secure.adnxs.com: 1 component, 0.0K
pr-bh.ybp.yahoo.com: 2 components, 0.0K
image2.pubmatic.com: 1 component, 0.3K
image4.pubmatic.com: 1 component, 0.4K
p.skimresources.com: 1 component, 0.04K
dtm.advertising.com: 1 component, 2.4K (1.4K GZip)
log.adaptv.advertising.com: 5 components, 0.0K
tap-secure.rubiconproject.com: 1 component, 0.2K (0.2K GZip)
eus.rubiconproject.com: 1 component, 24.5K (6.8K GZip)
token.rubiconproject.com: 2 components, 0.0K
usync.aws.rubiconproject.com: 1 component, 0.1K
um.simpli.fi: 1 component, 0.1K
pixel.rubiconproject.com: 6 components, 0.2K
ads.yahoo.com: 1 component, 0.0K
cookiex.ngd.yahoo.com: 1 component, 0.0K
ads.intergi.com: 5 components, 0.0K
ade.googlesyndication.com: 4 components, 0.1K

Configure entity tags (ETags) F (0) AVG SCORE: 91% SERVER LOW

There are 14 components with misconfigured ETags

https://px.moatads.com/pixel.gif?e=0&ac=1&bq=7&i=AOL_VIDIBLE_API1&t=1526366240027&de=292274780539&d=139%3A-%3A-%3A-&bo=girlsaskguys.
com&bd=girlsaskguys.com&f=0&cs=0
https://px.moatads.com/pixel.gif?e=0&ac=1&bq=7&i=AOL_VIDIBLE_API1&t=1526366241199&de=654568351511&d=209%3A-%3A-%3A-&bo=girlsaskguys.
com&bd=girlsaskguys.com&f=0&cs=0
https://px.moatads.com/pixel.gif?e=17&i=INITIATIVE_US_RBC_DCM1&hp=1&kq=1&hq=0&hs=0&hu=0&hr=0&ht=1&bq=0&f=1&nh=1&tw=null&j=https%3A%
2F%2Fwww.girlsaskguys.com&lp=https%3A%2F%2Fwww.girlsaskguys.com&o=3&t=1526366242816&de=824247734094&m=0&ar=4c90a2e-clean&q=2&
cb=0&cu=1526366242816&ll=3&lm=1&ln=1&r=0&em=0&en=0&d=20969168%3A1310366%3A218534727%3A99952620&qs=1&zGSRC=1&gu=https%3A
%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&bo=girlsaskguys.com&bd=girlsaskguys.com
&zMoatOrigSlicer1=N%2FA&zMoatOrigSlicer2=N%2FA&gw=initiativeusrbcdcm920745044517&fd=1&ac=1&it=500&fs=143783&na=1911003440&cs=0
https://tags.bkrtx.com/js/bk-coretag.js
https://px.moatads.com/pixel.gif?e=0&q=0&hp=1&kq=1&lo=0&qs=1&ak=https%3A%2F%2Fs0.2mdn.net%2F4507622%2F1522960082624%2FHTML5_300
x250_Generic_EN.html&i=INITIATIVE_US_RBC_DCM1&ud=0&ue=0&uu=0&qm=420&qn=(%2BIb%7Cj8o%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbv
U37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3Deu!LfBB2%2B%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B
*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD%7BMx5%3C1%3B(Oy%2CUy%3CD&qp=10000&qq=00000110
0000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0lBg1SBBBBBBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3
MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFeBCBBblBwxBHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCC
DCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=0&g=0&hq=0&hs=0&hu=0&hr=0&ht=1&h=250&w=300&zGSRC=1&gu=https
%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pay-your-bills&f=1&j=https%3A%2F%2Fwww.girlsaskg
uys.com&lp=https%3A%2F%2Fwww.girlsaskguys.com&o=3&t=1526366242816&de=824247734094&cu=1526366242816&m=283&ar=4c90a2e-clean&cb
=0&ll=3&lm=1&ln=1&r=0&dl=0&dm=1000&nh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&qf=300&qe=250&qh=1366&qg=857&lk=undefined&lb
=255&le=1&gm=1&io=1&ct=undefined&aa=0&ad=0&cn=0&gk=0&gl=0&ic=0&im=0&in=0&pd=0&em=0&en=0&st=0&su=1&of=1&oz=1&bu=106&cd=0&ah=1
06&am=0&rf=0&re=1&wb=1&cl=0&at=0&d=20969168%3A1310366%3A218534727%3A99952620&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=initiat
iveusrbcdcm920745044517&zMoatOrigSlicer1=N%2FA&zMoatOrigSlicer2=N%2FA&ab=2&ac=1&fd=1&kt=sframe&it=500&oq=0&ot=0&zMoatJS=0%3A0%3A
1366%3A857%3A0&fs=143783&na=1593598114&cs=0
https://px.moatads.com/pixel.gif?e=9&q=0&hp=1&kq=1&lo=0&qs=1&ak=-&i=INITIATIVE_US_RBC_DCM1&ud=0&ue=0&uu=0&qm=420&qn=(%2BIb%7Cj8o
%3FJ(jkkeL07ta_*JRM!6t9B%2CN%3Ey)%2ChXbvU37_*NhSfBghz%5D%5B%3B1RX%25lQMV9%22W6~P6Jn)s)%3Ee3wW0uC%2BA5%3Deu!LfBB2%2B
%7BLT7%25%40qwMoI3%2B%3BggqhB3U4(%5B*rUo8rY2baurI%5Dxbm!jVS2f%25.U%2BM!HJEkgSS%3F(KA.E%24C%23Z.yB%3AU!%2FoD%7BMx5%3
C1%3B(Oy%2CUy%3CD&qp=10000&qq=000001100000&qr=0&is=BmCCkSyp7G4BbBBBBq6YYNCu3NB8Qwk0Bv34mCeCC4g6miE2wif6W0lBg1SBBBB

Analyze your site at https://gtmetrix.com Page 57 of 59


YSlow Recommendations

BBBBeUIBCyBMBBvBUtBWB6jHdBBfXB8kBPB2kB3MMpFBTaBBBBBBBBBBBtsWaSqBHCZ5iWeWSBM31KJPlglCCFMWFpcxaBCNBZnuBBOFeBCBBblBwx
BHryaIGoXjTr93nNa0B3BBJBBzBPBBBkDDVCDCCDCDDCCCC0GuBaEES8DDBqBCKqeMFB&iv=5&gz=1&hh=0&hn=0&qt=0&bq=0&g=1&hq=0&hs=0&hu
=0&hr=0&ht=1&h=250&w=300&zGSRC=1&gu=https%3A%2F%2Fwww.girlsaskguys.com%2Ftrending-news%2Fq2125533-would-you-use-the-bitcoin-to-pa
y-your-bills&f=1&j=https%3A%2F%2Fwww.girlsaskguys.com&lp=https%3A%2F%2Fwww.girlsaskguys.com&o=3&t=1526366242816&de=824247734094&c
u=1526366242816&m=1925&ar=4c90a2e-clean&cb=0&ll=3&lm=1&ln=1&r=0&dl=0&dm=1000&nh=1&tw=null&td=1&qa=1367&qb=858&qi=1367&qj=858&
qf=300&qe=250&qh=1366&qg=857&lk=undefined&lb=255&le=1&gm=1&io=1&fa=1&ct=undefined&aa=0&ad=0&cn=0&gk=0&gl=0&ic=0&im=0&in=0&pd=0&
em=0&en=0&st=0&su=1&of=1&oz=1&bu=1860&cd=106&ah=1860&am=106&rf=0&re=1&wb=1&cl=0&at=0&d=20969168%3A1310366%3A218534727%3A
99952620&bo=girlsaskguys.com&bd=girlsaskguys.com&gw=initiativeusrbcdcm920745044517&zMoatOrigSlicer1=N%2FA&zMoatOrigSlicer2=N%2FA&ab=
2&ac=1&fd=1&kt=sframe&it=500&oq=0&ot=0&zMoatJS=0%3A0%3A1366%3A857%3A0&fs=143783&na=97559087&cs=0
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[];eid=28;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-
would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.5301647826567564&7331981622
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:386}];et=387;eid=114;ai=RB%20Fastlane%5Erubicon%5E372688_1-6
40-480%5E%5E370;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.504325
710117083&9087452643
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:387}];et=388;eid=114;ai=RB%20Fastlane%5Erubicon_preroll%5E372
688_1-640-480%5E%5E371;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.
504325710117083&4083087879
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:726}];eid=99;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-
news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.8705402673723517&5354521700
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:850}];eid=58;g=0;m=0;w=0;pu=https://www.girlsaskguys.com/trending-
news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.39588017330681624&8755066302
https://tt1.zedo.com/log/p.gif?n=3787;c=3787000001;s=1;x=21760;met=[{%2228%22:850},{%2258%22:0}];et=851;eid=29;g=0;m=0;w=0;pu=https://www.girls
askguys.com/trending-news/q2125533-would-you-use-the-bitcoin-to-pay-your-bills;e=e;z=0.3228689037474104&4839259873
https://video-ads.rubiconproject.com/video/bridge-30638.js
https://sb.scorecardresearch.com/c2/6035391/cs.js

M inify JavaScript and CSS D (60) AVG SCORE: 71% CSS/JS MEDIUM

There are 4 components that can be minified

https://images.girlsaskguys.com/custom/vod.js?v=3
https://api.content-ad.net/Scripts/widget2.aspx?id=cefb84ef-f210-4056-a3b7-54c1cbe57a1b&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403809&cb=152
6366239821
https://api.content-ad.net/Scripts/widget2.aspx?id=f6fad47f-c60f-4336-b5eb-f283b27e88d7&d=Z2lybHNhc2tndXlzLmNvbQ%3D%3D&wid=403806&cb=1526
366239854
https://rules.quantcount.com/rules-p-aD1qr93XuF6aC.js

Reduce the number of DOM elements D (69) AVG SCORE: 92% CONTENT LOW

There are 1488 DOM elements on the page

M ake AJAX cacheable A (100) AVG SCORE: 100% JS MEDIUM

You scored 100% on this recommendation - nothing to do here!

Remove duplicate JavaScript and CSS A (100) AVG SCORE: 100% CSS/JS MEDIUM

You scored 100% on this recommendation - nothing to do here!

Avoid AlphaImageLoader filter A (100) AVG SCORE: 99% CSS MEDIUM

You scored 100% on this recommendation - nothing to do here!

Avoid HTTP 404 (Not Found) error A (100) AVG SCORE: 98% CONTENT MEDIUM

You scored 100% on this recommendation - nothing to do here!

Analyze your site at https://gtmetrix.com Page 58 of 59


YSlow Recommendations

Use GET for AJAX requests A (100) AVG SCORE: 100% JS LOW

You scored 100% on this recommendation - nothing to do here!

Avoid CSS expressions A (100) AVG SCORE: 99% CSS LOW

You scored 100% on this recommendation - nothing to do here!

Reduce cookie size A (100) AVG SCORE: 100% COOKIE LOW

You scored 100% on this recommendation - nothing to do here!

M ake favicon small and cacheable A (100) AVG SCORE: 100% IMAGES LOW

You scored 100% on this recommendation - nothing to do here!

M ake JavaScript and CSS external (n/a) CSS/JS MEDIUM

Only consider this if your property is a common user home page.

There is a total of 20 inline scripts

Analyze your site at https://gtmetrix.com Page 59 of 59

Anda mungkin juga menyukai