Overview

URLhttp://lifestyle.ca.msn.com
IP65.55.206.199
ASNAS8075 Microsoft Corp
Location United States
Report completed2012-11-11 02:45:00 CET
StatusLoading report..
urlQuery Alerts No alerts detected


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-11 02:44:16 94.245.71.182 urlQuery Client3FILEMAGIC Macromedia Flash data,
Snort /w Sourcefire VRT No alerts detected


Recent reports on same IP/ASN/Domain

Last 6 reports on IP: 65.55.206.199

Date Alerts / IDS URL IP
2012-11-16 14:20:480 / 0http://glo.br.msn.com/issue_11_09_2012.aspx?glodl=beauty_video_25264837865.55.206.199
2012-11-11 05:34:240 / 2http://autos.ar.msn.com/65.55.206.199
2012-11-11 05:07:310 / 3http://salud.latam.msn.com/65.55.206.199
2012-11-11 04:52:210 / 2http://disney.prodigy.msn.com65.55.206.199
2012-11-11 03:04:490 / 0http://extra.ca.msn.com65.55.206.199
2012-11-11 02:55:150 / 5http://tech.ca.msn.com65.55.206.199

Last 6 reports on ASN: AS8075 Microsoft Corp

Date Alerts / IDS URL IP
2013-04-04 09:07:160 / 2http://allmyapps.blob.core.windows.net/public/f2ac7a45ebff237a317fff2a3c5a46a8_SplashLite_downl (...)213.199.180.206
2013-04-04 07:44:080 / 2http://activex.microsoft.com/activex/controls/agent2/lhttsspe.exe65.55.13.243
2013-04-04 07:19:000 / 1http://go.microsoft.com/fwlink/p/?LinkId=26187164.4.11.25
2013-04-04 06:09:240 / 2http://images2.store.microsoft.com/prod/clustera/framework/w7udt/1.0/en-us/Windows7-USB-DVD-too (...)94.245.71.139
2013-04-04 02:52:150 / 2http://www.microsoft.com/es-es/download/confirmation.aspx?id=4364.4.11.42
2013-04-04 02:10:410 / 4http://grz971.com/09.php131.253.18.12



JavaScript

Executed Scripts (100)


Executed Evals (3)

#1 JavaScript::Eval (size: 2014, repeated: 1)

window["MsnVideoAdModelModule"] = function(id) {
    var that = this;
    var nextId = 1;

    this.generateFlashNodeId = function() {
        return "MsnVideoAdModelModule" + nextId++;
    }

    this.discoverAdDivs = function(id) {
        var container = getFlashNodeById(id);
        if (container) {
            while (container.parentElement) {
                container = container.parentElement;
                var adDiv = document.getElementById(container.id + "_a");
                if (adDiv) return adDiv.id;
            }
        }
        return null;
    }

    function getFlashNodeById(id) {
        var node = getFlashNodeByNameAndId("OBJECT", id);
        return node ? node : getFlashNodeByNameAndId("EMBED", id);
    }

    function getFlashNodeByNameAndId(name, id) {
        var objects = document.getElementsByTagName(name);
        var len = objects.length;
        for (var i = 0; i < len; i++) {
            if ("function" == typeof(objects[i].getAdModelId) && id == objects[i].getAdModelId()) {
                return objects[i];
            }
        }
        return null;
    }
}

MsnVideoAdModelModule.Instance = new MsnVideoAdModelModule();

#2 JavaScript::Eval (size: 91, repeated: 1)

window["vapOpenUrl"] = function(url) {
    window.open(url);
};

#3 JavaScript::Eval (size: 16212, repeated: 1)

/*Widget Framework 2.0*/
if ('undefined' == typeof(MsnVideo2) || null == MsnVideo2) {
    MsnVideo2 = new function() {
        this.messageListeners = {}; //array of message listeners
        this.propertyProviders = {}; //array of property providers
        this.nextWidgetId = 1;

        //utility functions

        //normalize empty text to null
        this.normalizeString = function(s) {
            return MsnVideo2.checkString(s) ? s : null;
        }
        this.checkFunction = function(f) {
            return typeof(f) == "function";
        }
        this.checkDefined = function(o) {
            return typeof(o) != "undefined" && null != o;
        }
        this.checkString = function(s) {
            return typeof(s) == "string" && s.length > 0;
        }

        //the listener datatype
        this.listener = function(widgetId, widgetGroup, listenerFunc) {
            //normalize empty strings to null
            this.widgetId = MsnVideo2.normalizeString(widgetId);
            this.widgetGroup = MsnVideo2.normalizeString(widgetGroup);
            this.listenerFunc = listenerFunc;
        }

        //calls the js and rich widget listeners
        this.safeListenerCall = function(listenerItem, msg) {
            var eventType = msg.type;
            var sourceId = msg.sourceId;
            var sourceGroup = msg.sourceGroup;
            var targetId = msg.targetId;
            var targetGroup = msg.targetGroup;
            var param = msg.param;

            if (!MsnVideo2.checkFunction(listenerItem.listenerFunc)) //rich widget function
            {
                var node = MsnVideo2.getRichWidgetNodeById(listenerItem.widgetId);

                if (MsnVideo2.checkDefined(node)) {
                    //Call flash external interface function
                    if (MsnVideo2.checkFunction(node.MsnVideoCallback)) {
                        node.MsnVideoCallback(eventType, param, sourceId, targetId);
                    }
                    //Call silverlight bridge
                    else if (node.Content && node.Content.JSCommunicator) {
                        var convertedMsg = MsnVideo2.createSLObject(node, "Message", msg);

                        node.Content.JSCommunicator.ReceiveMessageJS(convertedMsg);
                    }
                }
            } else //Call javascript listener
            {
                listenerItem.listenerFunc(msg);
            }
        }

        //Converts a javascript object to silverlight
        this.createSLObject = function(slNode, className, jsonObj) {
            var obj;
            //already a sl object
            if ("unknown" == typeof(jsonObj.hasOwnProperty)) {
                obj = jsonObj;
            } else {
                obj = slNode.Content.services.createObject(className);
                for (var prop in jsonObj) {
                    if ("unknown" != typeof(obj[prop])) {
                        obj[prop] = jsonObj[prop];
                    }
                }
            }
            return obj;
        }

        this.getRichWidget = function(id, nodes) {
            var richWidget = null;

            var len = nodes.length;
            for (var i = 0; i < len; i++) {
                try {
                    //We don't check nodes[i].Content.JScommunicator.GetWidgetId, because it will throw a "Invalid InvokeType"
                    if ((MsnVideo2.checkFunction(nodes[i].GetWidgetId) && id == nodes[i].GetWidgetId()) // flash
                    || (nodes[i].Content && nodes[i].Content.JSCommunicator && id == nodes[i].Content.JSCommunicator.GetWidgetId())) // SL
                    {
                        richWidget = nodes[i];
                        break;
                    }
                } catch (e) {
                    var exception = "caught exception in MsnVideo2.getRichWidget: " + e.description;
                    // this.log(exception); FIXME
                }
            }

            return richWidget;
        }

        //gets the rich widget node by widgetId
        this.getRichWidgetNodeById = function(id) {
            var nodes = document.getElementsByTagName("OBJECT");
            var richWidget = MsnVideo2.getRichWidget(id, nodes);

            if (null == richWidget) {
                nodes = document.getElementsByTagName("EMBED");
                richWidget = MsnVideo2.getRichWidget(id, nodes);
            }

            return richWidget;
        }

        //used to generate a id for rich widgets, since sometimes embed code
        //does not always have id specified
        this.generateWidgetId = function() {
            return "" + MsnVideo2.nextWidgetId++;
        }

        //  Removes all listeners for a given widgetId
        this.removeAllReceivers = function(id) {
            MsnVideo2.removeReceivers(id, MsnVideo2.messageListeners);
            MsnVideo2.removeReceivers(id, MsnVideo2.propertyProviders);
        }

        this.removeReceivers = function(id, listeners) {
            for (var key in listeners) {
                var arr = listeners[key];

                if (arr && (arr.length > 0)) {
                    for (var idx = 0; idx < arr.length;) {
                        if (arr[idx].widgetId == id) {
                            delete arr[idx];
                            arr[idx] = null;

                            if (arr.length > 1) {
                                arr.splice(idx, 1);
                            } else {
                                listeners[key] = null;
                                break;
                            }
                        } else idx++;
                    }
                }
            }
        }

        //handles adding listeners to data structures for properties and messages
        this.addHandler = function(eventType, listeners, listenerItem) {
            eventType = eventType.toLowerCase();

            //Creates the widget listener collection for event type
            if (null == listeners[eventType]) {
                listeners[eventType] = new Array();
            }

            //Looks to see if the widget is already in the collection
            var match = false;
            var arr = listeners[eventType];
            var len = arr.length;

            for (var i = 0; i < len; i++) {
                if (arr[i].widgetId == listenerItem.widgetId && arr[i].widgetGroup == listenerItem.widgetGroup) {
                    match = true;
                    break;
                }
            }

            //Adds the widget to the collection if not found
            if (!match) {
                arr.push(listenerItem);
            }
        }

        this.removeHandler = function(eventType, listeners, widgetId, widgetGroup) {
            eventType = eventType.toLowerCase();

            if (MsnVideo2.checkDefined(listeners[eventType])) {
                //remove the widget from the collection
                var arr = listeners[eventType];
                var len = arr.length;

                for (var i = 0; i < len; i++) {
                    if (arr[i].widgetId == widgetId && arr[i].widgetGroup == widgetGroup) {
                        delete arr[i];
                        arr[i] = null;
                        arr.splice(i, 1)
                        break;
                    }
                }
            }
        }

        //adds message listeneners
        //eventType, widgetId, widgetGroup, funcCb
        this.addMessageReceiver = function(receiver) {
            MsnVideo2.addHandler(receiver.eventType, MsnVideo2.messageListeners, new MsnVideo2.listener(receiver.widgetId, receiver.widgetGroup, receiver.funcCb));
        };

        //removes message listeners
        this.removeMessageReceiver = function(receiver) {
            MsnVideo2.removeHandler(receiver.eventType, MsnVideo2.messageListeners, receiver.widgetId, receiver.widgetGroup);
        }

        //Sends a message in js and rich widgets
        this.sendMessage = function(msg) {
            var eventType = msg.type.toLowerCase();

            if (MsnVideo2.checkDefined(MsnVideo2.messageListeners[eventType])) {
                var sourceGroup = MsnVideo2.normalizeString(msg.sourceGroup);
                var targetId = MsnVideo2.normalizeString(msg.targetId);
                var targetGroup = MsnVideo2.normalizeString(msg.targetGroup);

                //If the param is coming from Silverlight, we take the json notation in order
                //to convert it to a actual JS object
                if (MsnVideo2.checkDefined(msg.paramJson)) {
                    var slMsg = msg;
                    var paramJson = eval("(" + msg.paramJson + ")");
                    msg = {
                        type: slMsg.type,
                        sourceId: slMsg.sourceId,
                        sourceGroup: slMsg.sourceGroup,
                        targetId: slMsg.targetId,
                        targetGroup: slMsg.targetGroup,
                        param: paramJson
                    };
                }

                var arr = MsnVideo2.messageListeners[eventType];
                var len = arr.length;

                for (var n = 0; n < len; n++) {
                    // if one of the listeners fails, we want to continue to the next one
                    try {
                        var listenerObj = arr[n];

                        //targetId: null means all widgets
                        //targetGroup: has to be exact match. null means default group (sourceGroup), not all groups
                        if ((null == targetId || listenerObj.widgetId == targetId) && listenerObj.widgetGroup == (null == targetGroup ? sourceGroup : targetGroup)) {
                            MsnVideo2.safeListenerCall(listenerObj, msg);
                        }
                    } catch (e) {
                        //var exception = "caught exception in MsnVideo2.sendMessage: " + e.description;
                        // this.log(exception); FIXME
                    }
                }
            }
        };

        //propertyType, widgetId, widgetGroup, funcCb
        this.addPropertyProvider = function(propProvider) {
            MsnVideo2.addHandler(propProvider.propertyType, MsnVideo2.propertyProviders, new MsnVideo2.listener(propProvider.widgetId, propProvider.widgetGroup, propProvider.funcCb));
        }

        //Gets a list of property objects
        this.getProperties = function(propReq) {
            var properties = new Array();
            propertyType = propReq.type.toLowerCase();

            if (null != MsnVideo2.propertyProviders[propertyType]) {
                //normalizes the strings
                var targetId = MsnVideo2.normalizeString(propReq.targetId);
                var targetGroup = MsnVideo2.normalizeString(propReq.targetGroup);
                var sourceGroup = MsnVideo2.normalizeString(propReq.sourceGroup);

                var arr = MsnVideo2.propertyProviders[propertyType];
                var len = arr.length;

                for (var n = 0; n < len; n++) {
                    // if one of the property providers fails, we want to continue to the next one
                    try {
                        var providerObj = arr[n];

                        //targetId: null means all widgets
                        //targetGroup: has to be exact match. null means default group (sourceGroup), not all groups
                        if ((providerObj.widgetId == targetId || null == targetId) && providerObj.widgetGroup == (null == targetGroup ? sourceGroup : targetGroup)) {
                            //rich widget provider
                            if (!MsnVideo2.checkFunction(providerObj.listenerFunc)) {
                                var node = MsnVideo2.getRichWidgetNodeById(providerObj.widgetId);
                                var props = null;

                                if (MsnVideo2.checkDefined(node)) {
                                    //Silverlight
                                    if (node.Content && node.Content.JSCommunicator) {
                                        var convertedPropReq = MsnVideo2.createSLObject(node, "PropertyRequest", propReq);
                                        props = node.Content.JSCommunicator.HandlePropertyRequestJS(convertedPropReq);
                                    }
                                    //Flash
                                    else if (MsnVideo2.checkFunction(node.MsnVideoPropertyCallback)) {
                                        props = node.MsnVideoPropertyCallback(propReq);
                                    }

                                    for (var i = 0; null != props && i < props.length; i++) {
                                        var prop = props[i];

                                        //If the param is coming from Silverlight, we take the json notation in order
                                        //to convert it to a actual JS object
                                        if (MsnVideo2.checkDefined(prop.paramJson)) {
                                            prop = {
                                                widgetId: prop.widgetId,
                                                widgetGroup: prop.widgetGroup,
                                                param: eval("(" + prop.paramJson + ")")
                                            };
                                        }

                                        properties.push(prop);
                                    }
                                }
                            } else //Js provider
                            {
                                var prop = providerObj.listenerFunc();
                                properties.push(prop);
                            }
                        }
                    } catch (e) {
                        var exception = "caught exception in MsnVideo2.getProperties: " + e.description;
                        // this.log(exception); FIXME
                    }
                }
            }
            return properties;
        }
    }

    //We can't trust partners to properly wire up callbacks that recursively call each other,
    //So we'll use this to simulate it
    if ("function" == typeof(MsnVideoInitializeInternal)) {
        MsnVideoInitializeInternal();
    }

    //This is part of the Widget Framework contract, so consumers know when they 
    //can start calling functions on the widget framework
    if ("function" == typeof(MsnVideoInitialize2)) {
        MsnVideoInitialize2();
    }
}

Executed Writes (9)

#1 JavaScript::Write (size: 0, repeated: 1)

#2 JavaScript::Write (size: 1294, repeated: 1)

<noscript>
  <a target="_blank" href="http://wrapper.g.msn.com/GRedirect.aspx?g.msn.com/2AD0009I/29000000000155488.1?!&&PID=10724144&UIT=M&TargetID=100528477&N=152766566&PG=CELGE3&ASID=cefc05f1879946a4a99ab80d3794c4f0&destination=http://ad.doubleclick.net/activity;src%3D3599173%3Bmet%3D1%3Bv%3D1%3Bpid%3D90083933%3Baid%3D262568814%3Bko%3D0%3Bcid%3D50066781%3Brid%3D50056624%3Brv%3D1%3Bcs%3Dy%3Beid1%3D956444%3Becn1%3D1%3Betm1%3D0%3B_dc_redir%3Durl%3fhttp://ad.doubleclick.net/click%3Bh%3Dv8/3d2a/17/c0/%2a/v%3B262568814%3B0-0%3B0%3B90083933%3B4307-300/250%3B50066781/50056624/1%3B%3B%7Esscs%3D%3fhttp://www.tresemme.ca/Products/Classic-Styling/TRES-TWO-Extra-Hold-Hair-Spray/">
    <img border="0" alt="" src="http://s0.2mdn.net/ads/richmedia/studio/22048366/22063228_1345834395512_bigbox_EN.jpg"
         width="300" height="250" />
  </a>
  <img width="0px" height="0px" style="visibility:hidden" border="0" alt=""
       src="http://ad.doubleclick.net/activity;src=3599173;met=1;v=1;pid=90083933;aid=262568814;ko=0;cid=50066781;rid=50056624;rv=1;&timestamp=3358216;eid1=9;ecn1=1;etm1=0;" />
  <img width="0px" height="0px" style="visibility:hidden" border="0" alt=""
       src="" />
  <img width="0px" height="0px" style="visibility:hidden" border="0" alt=""
       src="" />
</noscript>

#3 JavaScript::Write (size: 41, repeated: 1)

<div id="creative_1350944974170_0"></div>

#4 JavaScript::Write (size: 439, repeated: 1)

<div id="offsetDiv_688998893" style="overflow:hidden;width:728px;height:90px"><a href="http://g.msn.com/2AD0009N/82000000000141424.1??PID=10792437&amp;UIT=M&amp;TargetID=100613805&amp;AN=688998893&amp;PG=CELGE7&amp;ASID=677f791564294c3a874daa0e0ab13df7" target="_blank"><img src="http://ads2.msads.net/CIS/92/000/000/000/035/197.jpg" width="728" height="90" alt="Update to Skype. Your Messenger contacts are there!" border="0" /></a></div>

#5 JavaScript::Write (size: 598, repeated: 1)

<html><head><title>Advertisement</title></head><body id="dapIfM0" leftmargin="0" topmargin="0" style="background-color:transparent"><script type="text/javascript">var inDapIF=true; var inDapMgrIf=true;</script><script type="text/javascript">function startTimer(){if (event.srcElement.readyState == "complete") {parent.verifyDapResize(0);window.setTimeout("document.close();", 2000);}}</script><script type="text/javascript"  src="//rad.msn.com/ADSAdClient31.dll?GetSAd=&DPJS=4&amp;PG=CELGE7&amp;AP=1390" onreadystatechange="startTimer();" onload="parent.verifyDapResize(0);"></script></body></html>

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

<html><head><title>Advertisement</title></head><body id="dapIfM1" leftmargin="0" topmargin="0" style="background-color:transparent"><script type="text/javascript">var inDapIF=true; var inDapMgrIf=true;</script><script type="text/javascript">function startTimer(){if (event.srcElement.readyState == "complete") {parent.verifyDapResize(1);window.setTimeout("document.close();", 2000);}}</script><script type="text/javascript"  src="//rad.msn.com/ADSAdClient31.dll?GetSAd=&DPJS=4&amp;PG=CELGE3&amp;AP=1089" onreadystatechange="startTimer();" onload="parent.verifyDapResize(1);"></script></body></html>

#7 JavaScript::Write (size: 358, repeated: 1)

<script language='JavaScript1.1' SRC="http://ad.doubleclick.net/adj/N6343.154569.MICROSOFTCANADA/B6998777.17;sz=300x250;;dcopt=rcl;click0=http://wrapper.g.msn.com/GRedirect.aspx?g.msn.com/2AD0009I/29000000000155488.1?!&&PID=10724144&UIT=M&TargetID=100528477&N=152766566&PG=CELGE3&ASID=cefc05f1879946a4a99ab80d3794c4f0&destination=;ord=152766566?">
</script>

#8 JavaScript::Write (size: 154, repeated: 1)

<script type="text/javascript" src="http://amch.questionmarket.com/adscgen/st.php?survey_num=986122&site=90083933&code=50066781&randnum=3358216"></script>

#9 JavaScript::Write (size: 96, repeated: 1)

<script type="text/javascript" src="http://s0.2mdn.net/879366/iframe_buster_200_15.js"></script>


HTTP Transactions (162)


Request Response
GET /br/csl/css/00CC4C431D88148EDEF97F25230D66B6/commonarticle_inlinegallery.css HTTP/1.1

Host: blu.stc.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;0fe438541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 554
Age: 12311537
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:16:44 GMT
Expires: Fri, 21 Jun 2013 13:51:31 GMT
Connection: keep-alive
GET /br/csl/css/6831572c9784bca4a3d5fa01aed14c88/carouselslideshow.css HTTP/1.1

Host: blu.stc.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;583df72efaafcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCAX02
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 1700
Age: 1696555
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Mon, 22 Oct 2012 02:08:52 GMT
Expires: Tue, 22 Oct 2013 10:27:53 GMT
Connection: keep-alive
GET /br/csl/css/bffe04ba4e547e421944678c6fc2fa2d/carousel.css HTTP/1.1

Host: blu.stc.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;0be67b541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA06
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 85
Age: 4723559
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:19:58 GMT
Expires: Tue, 17 Sep 2013 09:37:49 GMT
Connection: keep-alive
GET /br/csl/css/FF9689E4B5DAD87967D0C43E6C255CF8/10.css HTTP/1.1

Host: blu.stc.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;801473a1541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 295
Age: 5720456
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:01 GMT
Expires: Thu, 05 Sep 2013 20:42:52 GMT
Connection: keep-alive
GET /br/csl/css/dd86138106648b41f4c57a865b4afd80/polls.css HTTP/1.1

Host: blu.stc.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;0bcee94541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA06
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 1363
Age: 4723558
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:20:40 GMT
Expires: Tue, 17 Sep 2013 09:37:50 GMT
Connection: keep-alive
GET /br/csl/css/1f2a35e815a17d2adf06baad29f6063d/horoscopesearch.css HTTP/1.1

Host: blu.stc.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;8091201d541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA08
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 260
Age: 13516885
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:17:19 GMT
Expires: Fri, 07 Jun 2013 15:02:23 GMT
Connection: keep-alive
GET /br/csl/css/87ed0cd905f0f9047a76b3a7e4897eb4/header.css HTTP/1.1

Host: blu.stc.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;804d9451541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 292
Age: 4729971
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:18:47 GMT
Expires: Tue, 17 Sep 2013 07:50:57 GMT
Connection: keep-alive
GET /br/intl/spec/dd/ca/css/custom_h1.css HTTP/1.1

Host: blu.stc.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;80b66e931f2cc1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA08
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 303
Age: 4386492
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Thu, 23 Feb 2012 13:49:07 GMT
Expires: Sat, 21 Sep 2013 07:15:36 GMT
Connection: keep-alive
GET /library/dapmsn.js HTTP/1.1

Host: ads1.msads.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=43200
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;03e92fbb8bcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 2015
Age: 16217
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Wed, 05 Sep 2012 23:06:20 GMT
Expires: Sun, 11 Nov 2012 09:13:30 GMT
Connection: keep-alive
GET / HTTP/1.1

Host: lifestyle.ca.msn.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
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Date: Sun, 11 Nov 2012 01:43:48 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPRENA25
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Pragma: no-cache
Set-Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; domain=.msn.com; expires=Mon, 04-Oct-2021 16:00:00 GMT; path=/
Cache-Control: no-cache, no-store
ntCoent-Length: 82855
Content-Encoding: gzip
Transfer-Encoding: chunked
GET /br/csl/js/0E785CD3EBB25DF790BC61EE015B3933/mozcompat.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;0c759b0541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 1187
Age: 13534671
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:26 GMT
Expires: Fri, 07 Jun 2013 10:05:57 GMT
Connection: keep-alive
GET /br/csl/js/1/navigation.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;0f48ab1541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 509
Age: 13534671
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:28 GMT
Expires: Fri, 07 Jun 2013 10:05:57 GMT
Connection: keep-alive
GET /br/csl/js/5ed45dbc9292c1d56c1ae18597be40d5/carousel.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;07b1eb5541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA06
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 1827
Age: 13437011
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:34 GMT
Expires: Sat, 08 Jun 2013 13:13:37 GMT
Connection: keep-alive
GET /br/csl/js/D8CC944FD882D1B64561551E54F9CF3B/report.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;806b19b8541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 325
Age: 11981788
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:39 GMT
Expires: Tue, 25 Jun 2013 09:27:20 GMT
Connection: keep-alive
GET /br/csl/css/d5c63b708270eb3d20471eb6b7a88637/css.css HTTP/1.1

Host: blu.stc.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;0628c92541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 10171
Age: 4729971
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:20:36 GMT
Expires: Tue, 17 Sep 2013 07:50:57 GMT
Connection: keep-alive
GET /br/csl/css/themes/2/theme10.css HTTP/1.1

Host: blu.stc.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;0329fa5541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA08
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 20
Age: 5288849
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:08 GMT
Expires: Tue, 10 Sep 2013 20:36:19 GMT
Connection: keep-alive
GET /br/csl/img/1/favicon.ico HTTP/1.1

Host: blu.stc.s-msn.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
HTTP/1.1 200 OK

Content-Type: image/x-icon
Cache-Control: max-age=31536000
Accept-Ranges: bytes
Etag: &quot;805ef4c49e1dcd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCA05
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 4286
Age: 13530381
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Wed, 18 Apr 2012 20:06:41 GMT
Expires: Fri, 07 Jun 2013 11:17:27 GMT
Connection: keep-alive
GET /br/csl/js/d120335c0f0829d1f2ed9fce2851acaf/js.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;806b19b8541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA05
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 1710
Age: 13534670
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:39 GMT
Expires: Fri, 07 Jun 2013 10:05:58 GMT
Connection: keep-alive
GET /br/csl/js/fe810d02cb8629b3956767e9a3f4946e/tracking.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;80984ab9541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 366
Age: 13534670
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:41 GMT
Expires: Fri, 07 Jun 2013 10:05:58 GMT
Connection: keep-alive
GET /br/csl/js/1/cookies.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;0c759b0541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 358
Age: 13534670
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:26 GMT
Expires: Fri, 07 Jun 2013 10:05:58 GMT
Connection: keep-alive
GET /br/csl/js/3/core.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;039233e56ecd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA05
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 4167
Age: 8956848
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Mon, 30 Jul 2012 03:41:46 GMT
Expires: Tue, 30 Jul 2013 09:43:00 GMT
Connection: keep-alive
GET /br/csl/css/8B7F19A00C010773401DD551FA7F95B0/gtl_sitegeneric.css HTTP/1.1

Host: blu.stc.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;805bbb58541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 13324
Age: 4729412
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:18:59 GMT
Expires: Tue, 17 Sep 2013 08:00:16 GMT
Connection: keep-alive
GET /br/csl/js/169180871d8af9ff42d0278a4b10256b/pollsutility.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;021bcb2541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 1865
Age: 13534670
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:30 GMT
Expires: Fri, 07 Jun 2013 10:05:58 GMT
Connection: keep-alive
GET /br/csl/js/2f1c880c01557fb5f45c8877eefc71e3/scpfingerprint.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;04eedb3541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA06
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 1023
Age: 13534670
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:32 GMT
Expires: Fri, 07 Jun 2013 10:05:58 GMT
Connection: keep-alive
GET /br/csl/js/1C0530B43AE64E99E500111197979640/commonarticle_inlinegallery.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;80053a1b047cd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 3214
Age: 11976552
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Mon, 11 Jun 2012 09:00:21 GMT
Expires: Tue, 25 Jun 2013 10:54:36 GMT
Connection: keep-alive
GET /br/csl/js/1/trackingcookies.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;808a23b2541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA08
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 336
Age: 13534670
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:29 GMT
Expires: Fri, 07 Jun 2013 10:05:58 GMT
Connection: keep-alive
GET /br/csl/js/1/behaviorutilities.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;0c759b0541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 808
Age: 13534669
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:26 GMT
Expires: Fri, 07 Jun 2013 10:05:59 GMT
Connection: keep-alive
GET /i/78/27B949339EBE8A83B98708BAC89D.jpg HTTP/1.1

Host: blstb.msn.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://lifestyle.ca.msn.com/
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Accept-Ranges: bytes
Etag: &quot;fde345cd3de2cb1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCA07
Content-Length: 10856
Age: 404999
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Mon, 14 Mar 2011 11:48:57 GMT
Expires: Tue, 13 Nov 2012 09:13:49 GMT
Connection: keep-alive
GET /br/csl/js/1/track.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;808a23b2541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 2907
Age: 13534669
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:29 GMT
Expires: Fri, 07 Jun 2013 10:05:59 GMT
Connection: keep-alive
GET /s/css/18.26/higaquamarine/ue.en-ca.min.css HTTP/1.1

Host: media-social.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: max-age=2592000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;80d8a1b3aeabcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.0
Content-Length: 10256
Age: 2128267
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Tue, 16 Oct 2012 14:58:29 GMT
Expires: Fri, 16 Nov 2012 10:32:41 GMT
Connection: keep-alive
GET /br/csl/img/1/msn_CA_118x51_r.png HTTP/1.1

Host: blu.stc.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: max-age=31536000
Accept-Ranges: bytes
Etag: &quot;dfc2f0869fb2cd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX01
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 3326
Age: 1428569
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Thu, 25 Oct 2012 10:57:29 GMT
Expires: Fri, 25 Oct 2013 12:54:19 GMT
Connection: keep-alive
GET /br/csl/js/1/jquery-1.3.2.min.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;805df2b0541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 19750
Age: 13534671
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:27 GMT
Expires: Fri, 07 Jun 2013 10:05:57 GMT
Connection: keep-alive
GET /br/csl/js/1/generictracking.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;805df2b0541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA06
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 386
Age: 13534670
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:27 GMT
Expires: Fri, 07 Jun 2013 10:05:58 GMT
Connection: keep-alive
GET /br/csl/js/1/omnitracking.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;808a23b2541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 660
Age: 13534669
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:29 GMT
Expires: Fri, 07 Jun 2013 10:05:59 GMT
Connection: keep-alive
GET /i/E3/6C1DD5E3386DEAE0954D8340F25A.gif HTTP/1.1

Host: col.stb01.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: max-age=604800
Accept-Ranges: bytes
Etag: &quot;44a0e589a37bc61:0&quot;
Server: Microsoft-IIS/7.5, CO1MPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 405
Age: 106305
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 20 May 2006 00:22:55 GMT
Expires: Fri, 16 Nov 2012 20:12:02 GMT
Connection: keep-alive
GET /i/B6/32E46DE281A68B9C33FC582D2569D.gif HTTP/1.1

Host: col.stb00.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: max-age=604800
Accept-Ranges: bytes
Etag: &quot;80755f65491c71:0&quot;
Server: Microsoft-IIS/7.5, CO1MPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 364
Age: 297762
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Tue, 08 May 2007 00:04:07 GMT
Expires: Wed, 14 Nov 2012 15:01:05 GMT
Connection: keep-alive
GET /i/78/7CE57843948D6DF13E79A2DE4E15C.gif HTTP/1.1

Host: col.stb01.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: max-age=604800
Accept-Ranges: bytes
Etag: &quot;80832bd69cd0c71:0&quot;
Server: Microsoft-IIS/7.5, CO1MPPSTCA08
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 399
Age: 288438
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Fri, 27 Jul 2007 22:24:03 GMT
Expires: Wed, 14 Nov 2012 17:36:29 GMT
Connection: keep-alive
GET /i/48/6CDE404B4BFEC334D023E5422081E0.gif HTTP/1.1

Host: col.stb00.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: max-age=604800
Accept-Ranges: bytes
Etag: &quot;8033478ca37bc61:0&quot;
Server: Microsoft-IIS/7.5, CO1MPPSTCA08
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 389
Age: 65200
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 20 May 2006 00:22:59 GMT
Expires: Sat, 17 Nov 2012 07:37:07 GMT
Connection: keep-alive
GET /br/csl/js/e546eab2a573bb47d8417ff6f3f318fe/sitenavigation.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;02b2b8541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA08
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 930
Age: 13534669
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:40 GMT
Expires: Fri, 07 Jun 2013 10:05:59 GMT
Connection: keep-alive
GET /jaction/audience_msn_lifestyle_ca HTTP/1.1

Host: view.atdmt.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://lifestyle.ca.msn.com/
Cookie: AA002=1350344862-22301988; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 200 OK

Content-Type: text/html
Cache-Control: no-store
Content-Encoding: gzip
Expires: 0
Vary: Accept-Encoding
Date: Sun, 11 Nov 2012 01:43:48 GMT
Connection: close
Content-Length: 120
GET /br/csl/js/2a774198d1885294b05e9c5fb222b9f5/carouselslideshow.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;80aec8678c31cd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA06
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 1687
Age: 13437007
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Mon, 14 May 2012 04:45:37 GMT
Expires: Sat, 08 Jun 2013 13:13:41 GMT
Connection: keep-alive
GET /br/csl/js/eaa6aaf1b8f3f28721f7dc237a57294e/social.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;02b2b8541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA06
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 554
Age: 13534669
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:40 GMT
Expires: Fri, 07 Jun 2013 10:05:59 GMT
Connection: keep-alive
GET /br/csl/js/75a2f40da98250de16b4ce7f6daed400/header.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;0a84fb6541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA06
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 491
Age: 11981787
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:36 GMT
Expires: Tue, 25 Jun 2013 09:27:21 GMT
Connection: keep-alive
GET /br/csl/js/eae1a41102ed45b59906133db1ed90fc/horoscopesearch.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;02b2b8541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 989
Age: 13534530
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:40 GMT
Expires: Fri, 07 Jun 2013 10:08:18 GMT
Connection: keep-alive
GET /br/csl/img/1/mslogo_black_95x20.png HTTP/1.1

Host: blstc.msn.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://lifestyle.ca.msn.com/
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: max-age=31536000
Accept-Ranges: bytes
Etag: &quot;9b70ade05cb0cd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX03
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 2681
Age: 1359863
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Mon, 22 Oct 2012 13:55:21 GMT
Expires: Sat, 26 Oct 2013 07:59:25 GMT
Connection: keep-alive
GET /br/csl/js/5f558fdc395a7bcf0116c427b496598b/footer.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;07b1eb5541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA08
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 182
Age: 10611510
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:34 GMT
Expires: Thu, 11 Jul 2013 06:05:18 GMT
Connection: keep-alive
GET /br/csl/js-async/9d7b275b7ec60354a4862db9656c0f2a/js-async.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;80984ab9541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 8310
Age: 13534668
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:41 GMT
Expires: Fri, 07 Jun 2013 10:06:00 GMT
Connection: keep-alive
GET /br/csl/js/85CACCCF5F0CB7A0F48A96F45067B87C/iepin.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;0a84fb6541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA08
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 1542
Age: 13534669
Date: Sun, 11 Nov 2012 01:43:49 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:36 GMT
Expires: Fri, 07 Jun 2013 10:06:00 GMT
Connection: keep-alive
GET /i/5C/FB95F04847C4F9EECBC9A131429743.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Last-Modified: Thu, 08 Nov 2012 16:42:01 GMT
Accept-Ranges: bytes
Etag: &quot;70ecf0f9cfbdcd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX02
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX02
Date: Sun, 11 Nov 2012 01:43:48 GMT
Content-Length: 4209
Connection: keep-alive
GET /i/8D/5E6D53CEE8D58F181673858463BAB.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Last-Modified: Fri, 09 Nov 2012 14:36:40 GMT
Accept-Ranges: bytes
Etag: &quot;f156dba187becd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX01
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX01
Date: Sun, 11 Nov 2012 01:43:48 GMT
Content-Length: 3232
Connection: keep-alive
GET /i/C6/49A49955533080C658CED59F66FA60.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Accept-Ranges: bytes
Etag: &quot;ae5befdcfbdcd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX02
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX02
Content-Length: 58668
Age: 150269
Date: Sun, 11 Nov 2012 01:43:48 GMT
Last-Modified: Thu, 08 Nov 2012 16:42:06 GMT
Expires: Fri, 16 Nov 2012 07:59:19 GMT
Connection: keep-alive
GET / HTTP/1.1

Host: lifestyle.ca.msn.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://lifestyle.ca.msn.com/
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Date: Sun, 11 Nov 2012 01:43:49 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPRENA25
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Pragma: no-cache
Cache-Control: no-cache, no-store
Cteonnt-Length: 82883
Content-Encoding: gzip
Transfer-Encoding: chunked
GET /i/1A/FBA1E9BF6F3493208236D67414F51A.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Last-Modified: Fri, 09 Nov 2012 14:36:45 GMT
Accept-Ranges: bytes
Etag: &quot;eebf81a487becd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX04
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX04
Date: Sun, 11 Nov 2012 01:43:48 GMT
Content-Length: 24532
Connection: keep-alive
GET /i/14/5AA5C97CF54E9ECF449F86BE8523.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Last-Modified: Wed, 07 Nov 2012 13:54:58 GMT
Accept-Ranges: bytes
Etag: &quot;71d79d79efbccd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX02
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX02
Date: Sun, 11 Nov 2012 01:43:48 GMT
Content-Length: 63628
Connection: keep-alive
GET /i/12/8DA187B34CAB7BC748F4A72FB3778D.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Last-Modified: Wed, 07 Nov 2012 13:54:52 GMT
Accept-Ranges: bytes
Etag: &quot;5bab1776efbccd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX01
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX01
Date: Sun, 11 Nov 2012 01:43:48 GMT
Content-Length: 4598
Connection: keep-alive
GET /br/csl/css/DA9854645C71D9883778236266270FC6/autosuggest.css HTTP/1.1

Host: blu.stc.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;0bcee94541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 118
Age: 12316955
Date: Sun, 11 Nov 2012 01:43:49 GMT
Last-Modified: Sat, 21 Apr 2012 00:20:40 GMT
Expires: Fri, 21 Jun 2013 12:21:14 GMT
Connection: keep-alive
GET /i/C0/573F65AD5FF65FC96D91643E443ED3.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Accept-Ranges: bytes
Etag: &quot;fd59f04f36aecd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX04
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX04
Content-Length: 11671
Age: 569069
Date: Sun, 11 Nov 2012 01:43:49 GMT
Last-Modified: Fri, 19 Oct 2012 20:14:15 GMT
Expires: Sun, 11 Nov 2012 11:39:19 GMT
Connection: keep-alive
GET /i/3B/4EAEFD2B8357D2C50661B6069E18.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Last-Modified: Fri, 09 Nov 2012 16:32:38 GMT
Accept-Ranges: bytes
Etag: &quot;25c1fd597becd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX04
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX04
Date: Sun, 11 Nov 2012 01:43:48 GMT
Content-Length: 16188
Connection: keep-alive
GET /i/1D/348178755E67FC67E27F134DBB0A6.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Last-Modified: Tue, 30 Oct 2012 20:12:26 GMT
Accept-Ranges: bytes
Etag: &quot;2e352e1dab6cd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX02
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX02
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 8431
Connection: keep-alive
GET /br/csl/js/946C1D65A8E71FB28ADAFF5D3DFE4957/autosuggest.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;803ee8b6541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 334
Age: 13534668
Date: Sun, 11 Nov 2012 01:43:49 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:37 GMT
Expires: Fri, 07 Jun 2013 10:06:01 GMT
Connection: keep-alive
GET /i/BC/2D33CFFFFB5864CF17B5AE8F47E3.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Accept-Ranges: bytes
Etag: &quot;18ab32437aecd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX03
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX03
Content-Length: 11381
Age: 569069
Date: Sun, 11 Nov 2012 01:43:49 GMT
Last-Modified: Fri, 19 Oct 2012 20:20:12 GMT
Expires: Sun, 11 Nov 2012 11:39:19 GMT
Connection: keep-alive
GET /br/csl/css/4BFD91D5D91B7B016D1179362400063B/ieupgrade.css HTTP/1.1

Host: blu.stc.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;805e7744541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA08
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 621
Age: 13530217
Date: Sun, 11 Nov 2012 01:43:49 GMT
Last-Modified: Sat, 21 Apr 2012 00:18:25 GMT
Expires: Fri, 07 Jun 2013 11:20:12 GMT
Connection: keep-alive
GET /i/DE/67C2BF37DC5747352D592063CB5D.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Last-Modified: Tue, 30 Oct 2012 20:13:12 GMT
Accept-Ranges: bytes
Etag: &quot;d9dccfcdab6cd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX01
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX01
Date: Sun, 11 Nov 2012 01:43:48 GMT
Content-Length: 122186
Connection: keep-alive
GET /i/D9/46F246AEC57529771294D95712DC.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Last-Modified: Fri, 09 Nov 2012 16:34:06 GMT
Accept-Ranges: bytes
Etag: &quot;fa3263998becd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX01
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX01
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 10634
Connection: keep-alive
GET /i/6E/9A794A57B6E9E19E61D3D9BFAAB347.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Accept-Ranges: bytes
Etag: &quot;19ae6b9636aecd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX02
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX02
Content-Length: 10488
Date: Sun, 11 Nov 2012 01:43:49 GMT
Last-Modified: Fri, 19 Oct 2012 20:16:13 GMT
Expires: Sun, 18 Nov 2012 01:43:49 GMT
Connection: keep-alive
GET /i/9D/61ED328955AFE0CCC5824A81292F7F.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Last-Modified: Tue, 03 Jan 2012 20:16:06 GMT
Accept-Ranges: bytes
Etag: &quot;fc292f8654cacc1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX04
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX04
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 2381
Connection: keep-alive
GET /br/csl/js/230120627B3E0CA6EC1EF055CDC6B423/ieupgrade.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;80b754b3541fcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA06
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 2650
Age: 11975836
Date: Sun, 11 Nov 2012 01:43:49 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:31 GMT
Expires: Tue, 25 Jun 2013 11:06:33 GMT
Connection: keep-alive
GET /i/5C/60DD48F664C46C4065B5A8734E_h137_w103_m2_q80_cGIHNAoOu.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public, must-revalidate, proxy-revalidate, max-age=420909
Expires: Thu, 15 Nov 2012 22:38:59 GMT
Server: Microsoft-IIS/7.5, BLUMPPSTCAX02
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX02
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 3602
Connection: keep-alive
GET /i/7B/86BE6DCF8EFE31F727D29BBCC5BD27_h137_w103_m2_q80_cjTTaHjnS.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public, must-revalidate, proxy-revalidate, max-age=432000
Expires: Fri, 16 Nov 2012 01:43:49 GMT
Server: Microsoft-IIS/7.5, BLUMPPSTCAX02
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX02
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 4826
Connection: keep-alive
GET /i/B1/146CB557D91080A1AF49850373B9E_h137_w103_m2_q80_cWjzxyink.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public, must-revalidate, proxy-revalidate, max-age=350232
Expires: Thu, 15 Nov 2012 03:01:01 GMT
Server: Microsoft-IIS/7.5, BLUMPPSTCAX04
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX04
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 4396
Connection: keep-alive
GET /i/7A/2291249E4728A6B9EDCE77C631C1D3_h137_w103_m2_q80_cjISWBTqw.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public, must-revalidate, proxy-revalidate, max-age=350231
Expires: Thu, 15 Nov 2012 03:01:00 GMT
Server: Microsoft-IIS/7.5, BLUMPPSTCAX04
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX04
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 3969
Connection: keep-alive
GET /i/26/A788C09F36C3B81D6DF29C8FD96.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Last-Modified: Tue, 03 Jan 2012 20:35:06 GMT
Accept-Ranges: bytes
Etag: &quot;0396d2d57cacc1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX04
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX04
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 3527
Connection: keep-alive
GET /i/68/E8362C9DBA90632AB97EB2676685D_h261_w194_m2_q80_cTFFHCDOH.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public, must-revalidate, proxy-revalidate, max-age=422907
Expires: Thu, 15 Nov 2012 23:12:17 GMT
Server: Microsoft-IIS/7.5, BLUMPPSTCAX02
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX02
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 5032
Connection: keep-alive
GET /b?rn=1352598229802&c7=http%3A%2F%2Flifestyle.ca.msn.com%2F&c8=%C2%A0Beauty%2C+fashion%2C+relationships%2C+decor+and+more+-+Lifestyle&c1=2&c2=3000001 HTTP/1.1

Host: b.scorecardresearch.com
GET /b?rn=1352598229802&amp;c7=http%3A%2F%2Flifestyle.ca.msn.com%2F&amp;c8=%C2%A0Beauty%2C+fashion%2C+relationships%2C+decor+and+more+-+Lifestyle&amp;c1=2&amp;c2=3000001 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://lifestyle.ca.msn.com/
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Content-Length: 0
Location: http://b.scorecardresearch.com/b2?rn=1352598229802&amp;c7=http%3A%2F%2Flifestyle.ca.msn.com%2F&amp;c8=%C2%A0Beauty%2C+fashion%2C+relationships%2C+decor+and+more+-+Lifestyle&amp;c1=2&amp;c2=3000001
Date: Sun, 11 Nov 2012 01:43:49 GMT
Connection: keep-alive
Set-Cookie: UID=4c56b1a-195.159.219.9-1352598229; expires=Sat, 01-Nov-2014 01:43:49 GMT; path=/; domain=.scorecardresearch.com UIDR=1352598229; expires=Sat, 01-Nov-2014 01:43:49 GMT; path=/; domain=.scorecardresearch.com
Pragma: no-cache
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate
GET /i/A8/BD97AA1144CC94D845A04338BA2C5C.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Last-Modified: Tue, 03 Jan 2012 20:35:41 GMT
Accept-Ranges: bytes
Etag: &quot;5b4da14257cacc1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX02
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX02
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 2635
Connection: keep-alive
GET /i/D1/EEFE2685239D8AD449F657595CD84_h261_w194_m2_q80_coYEPsOJd.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public, must-revalidate, proxy-revalidate, max-age=340623
Expires: Thu, 15 Nov 2012 00:20:53 GMT
Server: Microsoft-IIS/7.5, BLUMPPSTCAX01
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX01
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 5475
Connection: keep-alive
GET /i/83/9E8AE34992A636C4C9B2E9E34C831.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Last-Modified: Thu, 01 Nov 2012 11:59:50 GMT
Accept-Ranges: bytes
Etag: &quot;7634a96528b8cd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX04
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX04
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 38592
Connection: keep-alive
GET /c.gif?di=13993&pi=11654&ps=10513&br=Lifestyle&mk=en-ca&pn=Homepage%7CLifestyle&pid=18606696&su=http%3A%2F%2Flifestyle.ca.msn.com%2F&cts=1352598229811&evn=1&dv.SnLogin=fb%3Af%2Ctw%3Af&hp=0&rid=1291bcb48f5f4dc6bb2220be0769a9e7&pp=False&fk=default&gp=P&optkey=default&clid=1291bcb48f5f4dc6bb2220be0769a9e7&cu=http%3A%2F%2Flifestyle.ca.msn.com%2F&sl=0&slv=&bh=778&bw=1176&scr=1176x885&sd=24&dv.DateTime=11%2F10%2F2012+2%3A43%3A49+0+-60&dv.PgTitle=%C2%A0Beauty%2C+fashion%2C+relationships%2C+decor+and+more+-+Lifestyle&evt=impr&js=1 HTTP/1.1

Host: udc.msn.com
GET /c.gif?di=13993&amp;pi=11654&amp;ps=10513&amp;br=Lifestyle&amp;mk=en-ca&amp;pn=Homepage%7CLifestyle&amp;pid=18606696&amp;su=http%3A%2F%2Flifestyle.ca.msn.com%2F&amp;cts=1352598229811&amp;evn=1&amp;dv.SnLogin=fb%3Af%2Ctw%3Af&amp;hp=0&amp;rid=1291bcb48f5f4dc6bb2220be0769a9e7&amp;pp=False&amp;fk=default&amp;gp=P&amp;optkey=default&amp;clid=1291bcb48f5f4dc6bb2220be0769a9e7&amp;cu=http%3A%2F%2Flifestyle.ca.msn.com%2F&amp;sl=0&amp;slv=&amp;bh=778&amp;bw=1176&amp;scr=1176x885&amp;sd=24&amp;dv.DateTime=11%2F10%2F2012+2%3A43%3A49+0+-60&amp;dv.PgTitle=%C2%A0Beauty%2C+fashion%2C+relationships%2C+decor+and+more+-+Lifestyle&amp;evt=impr&amp;js=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: 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://lifestyle.ca.msn.com/
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: no-cache, no-store, must-revalidate
Pragma: no-cache
Expires: -1
Last-Modified: Mon, 18 Jul 2011 19:03:37 GMT
Accept-Ranges: bytes
Etag: &quot;a29327667d45cc1:0&quot;
Server: Microsoft-IIS/8.0
S: STOMSNVM001006
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 42
GET /i/47/05626ECB4C24DE4CDD349214BC92_h261_w194_m2_q80_clVGdFmOu.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public, must-revalidate, proxy-revalidate, max-age=421946
Expires: Thu, 15 Nov 2012 22:56:16 GMT
Server: Microsoft-IIS/7.5, BLUMPPSTCAX04
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX04
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 4984
Connection: keep-alive
GET /i/31/0E3AC1550B89EEDB913463192947.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Last-Modified: Tue, 03 Jan 2012 20:35:52 GMT
Accept-Ranges: bytes
Etag: &quot;044d84857cacc1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCAX04
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX04
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 1158
Connection: keep-alive
GET /br/csl/img/1/Search_EN.gif HTTP/1.1

Host: blu.stc.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: max-age=31536000
Accept-Ranges: bytes
Etag: &quot;80b856c79e1dcd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCA05
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 2263
Age: 13529127
Date: Sun, 11 Nov 2012 01:43:49 GMT
Last-Modified: Wed, 18 Apr 2012 20:06:45 GMT
Expires: Fri, 07 Jun 2013 11:38:22 GMT
Connection: keep-alive
GET /br/csl/css/8B7F19A00C010773401DD551FA7F95B0/decoration/binglogo.gif HTTP/1.1

Host: blu.stc.s-msn.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://blu.stc.s-msn.com/br/csl/css/8B7F19A00C010773401DD551FA7F95B0/gtl_sitegeneric.css
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: max-age=31536000
Accept-Ranges: bytes
Etag: &quot;805bbb58541fcd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 426
Age: 12316954
Date: Sun, 11 Nov 2012 01:43:49 GMT
Last-Modified: Sat, 21 Apr 2012 00:18:59 GMT
Expires: Fri, 21 Jun 2013 12:21:15 GMT
Connection: keep-alive
GET /br/csl/css/FF9689E4B5DAD87967D0C43E6C255CF8/decoration/10/uparrow.gif HTTP/1.1

Host: blu.stc.s-msn.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://blu.stc.s-msn.com/br/csl/css/FF9689E4B5DAD87967D0C43E6C255CF8/10.css
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: max-age=31536000
Accept-Ranges: bytes
Etag: &quot;0329fa5541fcd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCA06
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 1100
Age: 13507104
Date: Sun, 11 Nov 2012 01:43:50 GMT
Last-Modified: Sat, 21 Apr 2012 00:21:08 GMT
Expires: Fri, 07 Jun 2013 17:45:26 GMT
Connection: keep-alive
GET /i/3D/CA8FF06E7711EE10A09C1DC040EE0_h137_w103_m2_q80_cYIudQutV.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public, must-revalidate, proxy-revalidate, max-age=422907
Expires: Thu, 15 Nov 2012 23:12:17 GMT
Server: Microsoft-IIS/7.5, BLUMPPSTCAX02
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX02
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 4206
Connection: keep-alive
GET /i/45/F3CBA9DD4BF75693D624D96C158D14.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: max-age=604800
Accept-Ranges: bytes
Etag: &quot;a96cc9479dcd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCA06
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCA06
Content-Length: 36379
Age: 38751
Date: Sun, 11 Nov 2012 01:43:50 GMT
Last-Modified: Fri, 28 Sep 2012 07:01:09 GMT
Expires: Sat, 17 Nov 2012 14:57:59 GMT
Connection: keep-alive
GET /i/58/47E4EBFE51201C7289935F3D8492D2_h137_w103_m2_q80_cCjvuRtgS.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public, must-revalidate, proxy-revalidate, max-age=418473
Expires: Thu, 15 Nov 2012 21:58:23 GMT
Server: Microsoft-IIS/7.5, BLUMPPSTCAX02
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX02
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 2856
Connection: keep-alive
GET /i/57/E3D1F57B28289B3F9ACEA81921F77_h137_w103_m2_q80_cvnaVEdQf.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public, must-revalidate, proxy-revalidate, max-age=350231
Expires: Thu, 15 Nov 2012 03:01:01 GMT
Server: Microsoft-IIS/7.5, BLUMPPSTCAX01
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX01
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 4314
Connection: keep-alive
GET /c.gif?rnd=1352598229818&rid=1291bcb48f5f4dc6bb2220be0769a9e7&di=13993&pi=11654&ps=10513&tp=http%3A%2F%2Flifestyle.ca.msn.com%2F&udc=true HTTP/1.1

Host: c.msn.com
GET /c.gif?rnd=1352598229818&amp;rid=1291bcb48f5f4dc6bb2220be0769a9e7&amp;di=13993&amp;pi=11654&amp;ps=10513&amp;tp=http%3A%2F%2Flifestyle.ca.msn.com%2F&amp;udc=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: 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://lifestyle.ca.msn.com/
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79
HTTP/1.1 302 Redirect

HTTP/1.1 302 Redirect
Cache-Control: private, no-cache, proxy-revalidate, no-store
Pragma: no-cache
Location: http://c.atdmt.com/c.gif?rnd=1352598229818&amp;rid=1291bcb48f5f4dc6bb2220be0769a9e7&amp;di=13993&amp;pi=11654&amp;ps=10513&amp;tp=http%3A%2F%2Flifestyle.ca.msn.com%2F&amp;udc=true&amp;RedC=c.msn.com&amp;MXFR=09FE39B8274B64D612873DAD234B6483
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Set-Cookie: MUID=09FE39B8274B64D612873DAD234B6483&amp;TUID=1; domain=.msn.com; expires=Tue, 11-Nov-2014 01:43:50 GMT; path=/;
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 0
GET /i/25/E66EF1143B2F13F42F23C2FCB32_h137_w103_m2_q80_cBVCjKGGE.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public, must-revalidate, proxy-revalidate, max-age=419779
Expires: Thu, 15 Nov 2012 22:20:09 GMT
Server: Microsoft-IIS/7.5, BLUMPPSTCAX02
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX02
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 3242
Connection: keep-alive
GET /ADSAdClient31.dll?GetSAd=&DPJS=4&PG=CELGE7&AP=1390 HTTP/1.1

Host: rad.msn.com
GET /ADSAdClient31.dll?GetSAd=&amp;DPJS=4&amp;PG=CELGE7&amp;AP=1390 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://lifestyle.ca.msn.com/
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79
HTTP/1.1 200 OK

Content-Type: text/html; Charset=utf-8
Cache-Control: no-cache, must-revalidate
Pragma: no-cache
Cteonnt-Length: 917
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Server: Microsoft-IIS/7.5
X-RADID: P10792437-T100613805-C82000000000141424
Access-Control-Allow-Origin: *
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Encoding: gzip
Content-Length: 590
GET /b2?rn=1352598229802&c7=http%3A%2F%2Flifestyle.ca.msn.com%2F&c8=%C2%A0Beauty%2C+fashion%2C+relationships%2C+decor+and+more+-+Lifestyle&c1=2&c2=3000001 HTTP/1.1

Host: b.scorecardresearch.com
GET /b2?rn=1352598229802&amp;c7=http%3A%2F%2Flifestyle.ca.msn.com%2F&amp;c8=%C2%A0Beauty%2C+fashion%2C+relationships%2C+decor+and+more+-+Lifestyle&amp;c1=2&amp;c2=3000001 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://lifestyle.ca.msn.com/
Cookie: UID=4c56b1a-195.159.219.9-1352598229; UIDR=1352598229
HTTP/1.1 204 No Content

HTTP/1.1 204 No Content
Content-Length: 0
Date: Sun, 11 Nov 2012 01:43:50 GMT
Connection: keep-alive
Pragma: no-cache
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate
GET /i/E4/6D65F7E4DC43D85B111586A9B5925D_h261_w194_m2_q80_cupIDjsmy.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public, must-revalidate, proxy-revalidate, max-age=351269
Expires: Thu, 15 Nov 2012 03:18:19 GMT
Server: Microsoft-IIS/7.5, BLUMPPSTCAX01
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX01
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 9484
Connection: keep-alive
GET /i/4B/8A1D1B914FA03DB2DA94D81B136_h261_w194_m2_q80_cYscnpLlc.jpg HTTP/1.1

Host: blu.stb.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public, must-revalidate, proxy-revalidate, max-age=375131
Expires: Thu, 15 Nov 2012 09:56:01 GMT
Server: Microsoft-IIS/7.5, BLUMPPSTCAX02
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPSTCAX02
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Length: 11199
Connection: keep-alive
GET /br/csl/css/8B7F19A00C010773401DD551FA7F95B0/decoration/bullet.gif HTTP/1.1

Host: blu.stc.s-msn.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://blu.stc.s-msn.com/br/csl/css/8B7F19A00C010773401DD551FA7F95B0/gtl_sitegeneric.css
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: max-age=31536000
Accept-Ranges: bytes
Etag: &quot;805bbb58541fcd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCA05
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 44
Age: 13530217
Date: Sun, 11 Nov 2012 01:43:50 GMT
Last-Modified: Sat, 21 Apr 2012 00:18:59 GMT
Expires: Fri, 07 Jun 2013 11:20:13 GMT
Connection: keep-alive
GET /ADSAdClient31.dll?GetSAd=&DPJS=4&PG=CELGE3&AP=1089 HTTP/1.1

Host: rad.msn.com
GET /ADSAdClient31.dll?GetSAd=&amp;DPJS=4&amp;PG=CELGE3&amp;AP=1089 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://lifestyle.ca.msn.com/
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79
HTTP/1.1 200 OK

Content-Type: text/html; Charset=utf-8
Cache-Control: no-cache, must-revalidate
Pragma: no-cache
Cteonnt-Length: 2214
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Server: Microsoft-IIS/7.5
X-RADID: P10724144-T100528477-C29000000000155488
Access-Control-Allow-Origin: *
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Date: Sun, 11 Nov 2012 01:43:49 GMT
Content-Encoding: gzip
Content-Length: 1076
GET /flash/script/embed.js HTTP/1.1

Host: images.video.msn.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://lifestyle.ca.msn.com/
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=utf-8
Cache-Control: public, must-revalidate, max-age=900, s-maxage=900
Server: Microsoft-IIS/7.5
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Access-Control-Allow-Origin: *.s-msn.com | *.msn.com
Age: 2
Date: Sun, 11 Nov 2012 01:43:50 GMT
Last-Modified: Thu, 25 Oct 2012 01:31:21 GMT
Expires: Sun, 11 Nov 2012 01:58:48 GMT
Content-Length: 14260
Connection: keep-alive
GET /adj/N6343.154569.MICROSOFTCANADA/B6998777.17;sz=300x250;;dcopt=rcl;click0=http://wrapper.g.msn.com/GRedirect.aspx?g.msn.com/2AD0009I/29000000000155488.1?!&&PID=10724144&UIT=M&TargetID=100528477&N=152766566&PG=CELGE3&ASID=cefc05f1879946a4a99ab80d3794c4f0&destination=;ord=152766566? HTTP/1.1

Host: ad.doubleclick.net
GET /adj/N6343.154569.MICROSOFTCANADA/B6998777.17;sz=300x250;;dcopt=rcl;click0=http://wrapper.g.msn.com/GRedirect.aspx?g.msn.com/2AD0009I/29000000000155488.1?!&amp;&amp;PID=10724144&amp;UIT=M&amp;TargetID=100528477&amp;N=152766566&amp;PG=CELGE3&amp;ASID=cefc05f1879946a4a99ab80d3794c4f0&amp;destination=;ord=152766566? 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://lifestyle.ca.msn.com/
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: DCLK-AdSvr
Content-Length: 3329
Content-Encoding: gzip
Date: Sun, 11 Nov 2012 01:43:50 GMT
GET /v/5817.06/js/ch/channels.css HTTP/1.1

Host: img.widgets.video.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: max-age=3888000,public, s-maxage=3888000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;1c2844b8fcc1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Access-Control-Allow-Origin: *.s-msn.com | *.msn.com
Content-Length: 2048
Age: 2078025
Date: Sun, 11 Nov 2012 01:43:50 GMT
Last-Modified: Thu, 20 Oct 2011 09:31:17 GMT
Expires: Sun, 02 Dec 2012 00:30:05 GMT
Connection: keep-alive
GET /CIS/92/000/000/000/035/197.jpg HTTP/1.1

Host: ads2.msads.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: 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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public, max-age=31522354
Server: Microsoft-IIS/7.5
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Content-Length: 30035
Age: 183707
Date: Sun, 11 Nov 2012 01:43:50 GMT
Expires: Fri, 08 Nov 2013 18:54:37 GMT
Connection: keep-alive
GET /c.gif?rnd=1352598229818&rid=1291bcb48f5f4dc6bb2220be0769a9e7&di=13993&pi=11654&ps=10513&tp=http%3A%2F%2Flifestyle.ca.msn.com%2F&udc=true&RedC=c.msn.com&MXFR=09FE39B8274B64D612873DAD234B6483 HTTP/1.1

Host: c.atdmt.com
GET /c.gif?rnd=1352598229818&amp;rid=1291bcb48f5f4dc6bb2220be0769a9e7&amp;di=13993&amp;pi=11654&amp;ps=10513&amp;tp=http%3A%2F%2Flifestyle.ca.msn.com%2F&amp;udc=true&amp;RedC=c.msn.com&amp;MXFR=09FE39B8274B64D612873DAD234B6483 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://lifestyle.ca.msn.com/
Cookie: AA002=1350344862-22301988; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 302 Redirect

HTTP/1.1 302 Redirect
Cache-Control: private, no-cache, proxy-revalidate, no-store
Pragma: no-cache
Location: http://c.msn.com/c.gif?rnd=1352598229818&amp;rid=1291bcb48f5f4dc6bb2220be0769a9e7&amp;di=13993&amp;pi=11654&amp;ps=10513&amp;tp=http%3A%2F%2Flifestyle.ca.msn.com%2F&amp;udc=true&amp;MUID=28A467A70F8D6B9C1F16645D0C8D6BFA&amp;cb=1cdbfadffe29820
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Set-Cookie: MUID=28A467A70F8D6B9C1F16645D0C8D6BFA; domain=.atdmt.com; expires=Tue, 11-Nov-2014 01:43:50 GMT; path=/; SRM_A=28A467A70F8D6B9C1F16645D0C8D6BFA; domain=c.atdmt.com; expires=Tue, 11-Nov-2014 01:43:50 GMT; path=/; SRM_M=28A467A70F8D6B9C1F16645D0C8D6BFA; domain=c.atdmt.com; expires=Tue, 11-Nov-2014 01:43:50 GMT; path=/;
Date: Sun, 11 Nov 2012 01:43:50 GMT
Content-Length: 0
GET /c.gif?rnd=1352598229818&rid=1291bcb48f5f4dc6bb2220be0769a9e7&di=13993&pi=11654&ps=10513&tp=http%3A%2F%2Flifestyle.ca.msn.com%2F&udc=true&MUID=28A467A70F8D6B9C1F16645D0C8D6BFA&cb=1cdbfadffe29820 HTTP/1.1

Host: c.msn.com
GET /c.gif?rnd=1352598229818&amp;rid=1291bcb48f5f4dc6bb2220be0769a9e7&amp;di=13993&amp;pi=11654&amp;ps=10513&amp;tp=http%3A%2F%2Flifestyle.ca.msn.com%2F&amp;udc=true&amp;MUID=28A467A70F8D6B9C1F16645D0C8D6BFA&amp;cb=1cdbfadffe29820 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://lifestyle.ca.msn.com/
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79; MUID=09FE39B8274B64D612873DAD234B6483&amp;TUID=1
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: private, no-cache, proxy-revalidate, no-store
Pragma: no-cache
Last-Modified: Thu, 20 Oct 2011 10:27:58 GMT
Accept-Ranges: bytes
Etag: &quot;04baaef128fcc1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Set-Cookie: MUID=28A467A70F8D6B9C1F16645D0C8D6BFA; domain=.msn.com; expires=Tue, 11-Nov-2014 01:43:51 GMT; path=/; ANONCHK=0; domain=c.msn.com; expires=Wed, 14-Nov-2012 01:43:51 GMT; path=/;
Date: Sun, 11 Nov 2012 01:43:50 GMT
Content-Length: 42
GET /v/5817.06/js/embed_internal.js HTTP/1.1

Host: img.widgets.video.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=3888000,max-age=86400,public, s-maxage=3888000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;80eb4bf3a6accd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Access-Control-Allow-Origin: *.s-msn.com | *.msn.com
Content-Length: 23941
Age: 2078024
Date: Sun, 11 Nov 2012 01:43:50 GMT
Last-Modified: Wed, 17 Oct 2012 20:35:31 GMT
Expires: Sun, 02 Dec 2012 00:30:06 GMT
Connection: keep-alive
GET /resource.aspx?resources=player&gmts=gmt&mkt=&configCsid=ENCA_MSN&configName=ENCA_InlinePlayer&responseEncoding=json&callbackName=Msn.Video.JavascriptApi.onComplete&cd=1 HTTP/1.1

Host: img.widgets.video.s-msn.com
GET /resource.aspx?resources=player&amp;gmts=gmt&amp;mkt=&amp;configCsid=ENCA_MSN&amp;configName=ENCA_InlinePlayer&amp;responseEncoding=json&amp;callbackName=Msn.Video.JavascriptApi.onComplete&amp;cd=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: */*
Accept-Language: en-us,en;q=0.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=utf-8
Cache-Control: public, max-age=974
Server: Microsoft-IIS/7.5
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Access-Control-Allow-Origin: *.s-msn.com | *.msn.com
Content-Length: 20341
Age: 2
Date: Sun, 11 Nov 2012 01:43:51 GMT
Last-Modified: Sun, 11 Nov 2012 01:30:05 GMT
Expires: Sun, 11 Nov 2012 02:00:03 GMT
Connection: keep-alive
GET /adscgen/st.php?survey_num=986122&site=90083933&code=50066781&randnum=3358216 HTTP/1.1

Host: amch.questionmarket.com
GET /adscgen/st.php?survey_num=986122&amp;site=90083933&amp;code=50066781&amp;randnum=3358216 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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Date: Sat, 10 Nov 2012 21:39:11 GMT
DL_S: b203
X-Host: b203 D=5261
P3P: CP=&quot;ALL DSP COR PSAa PSDa OUR IND COM NAV INT LOC OTC&quot;, policyref=&quot;http://ch.questionmarket.com/w3c/audit2007/p3p_DynamicLogic.xml&quot;
Vary: Accept-Encoding
Content-Length: 246
Keep-Alive: timeout=5, max=5
Connection: Keep-Alive
GET /s/js/18.26/ue.min.js HTTP/1.1

Host: media-social.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=2592000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;8094165afabcd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.0
Content-Length: 73253
Age: 2156300
Date: Sun, 11 Nov 2012 01:43:51 GMT
Last-Modified: Tue, 16 Oct 2012 15:03:27 GMT
Expires: Fri, 16 Nov 2012 02:45:31 GMT
Connection: keep-alive
GET /adsc/d986122/2/50066781/decide.php?ord=1352598232 HTTP/1.1

Host: amch.questionmarket.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 11 Nov 2012 01:43:52 GMT
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, max-age=0, post-check=0, pre-check=0
Pragma: no-cache
P3P: CP=&quot;ALL DSP COR PSAa PSDa OUR IND COM NAV INT LOC OTC&quot;, policyref=&quot;http://ch.questionmarket.com/w3c/audit2007/p3p_DynamicLogic.xml&quot;
DL_S: b106
Set-Cookie: CS1=50066781-2-1; expires=Wed, 01-Jan-2014 17:43:52 GMT; path=/; domain=.questionmarket.com ES=986122-AW4rN-0; expires=Wed, 01-Jan-2014 17:43:52 GMT; path=/; domain=.questionmarket.com;
X-Host: b106 D=784
Content-Length: 43
Keep-Alive: timeout=5, max=5
Connection: Keep-Alive
GET /br/csl/img/1/search.gif HTTP/1.1

Host: blu.stc.s-msn.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://blu.stc.s-msn.com/br/csl/css/dd86138106648b41f4c57a865b4afd80/polls.css
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: max-age=31536000
Accept-Ranges: bytes
Etag: &quot;80b856c79e1dcd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCA06
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 97
Age: 13507101
Date: Sun, 11 Nov 2012 01:43:52 GMT
Last-Modified: Wed, 18 Apr 2012 20:06:45 GMT
Expires: Fri, 07 Jun 2013 17:45:31 GMT
Connection: keep-alive
GET /879366/iframe_buster_200_15.js HTTP/1.1

Host: s0.2mdn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Tue, 09 Oct 2012 20:55:54 GMT
Date: Sat, 10 Nov 2012 18:21:55 GMT
Expires: Sun, 11 Nov 2012 18:21:55 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 19515
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=86400
Age: 26518
GET /jaction/audience_msn_lifestyle_ca HTTP/1.1

Host: view.atdmt.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://lifestyle.ca.msn.com/
Cookie: AA002=1350344862-22301988; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 200 OK

Content-Type: text/html
Cache-Control: no-store
Content-Encoding: gzip
Expires: 0
Vary: Accept-Encoding
Date: Sun, 11 Nov 2012 01:43:52 GMT
Connection: close
Content-Length: 120
GET /HoroscopeServiceProxy.aspx?zodiacsign=ari&LCID=en-ca HTTP/1.1

Host: lifestyle.ca.msn.com
GET /HoroscopeServiceProxy.aspx?zodiacsign=ari&amp;LCID=en-ca 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: application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://lifestyle.ca.msn.com/
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 200 OK

Content-Type: text/xml; charset=utf-8
Date: Sun, 11 Nov 2012 01:43:53 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
S: BLUMPPRENA37
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Pragma: no-cache
Cache-Control: no-cache, no-store
Content-Length: 849
GET /br/csl/css/4BFD91D5D91B7B016D1179362400063B/decoration/ieupgrade.gif HTTP/1.1

Host: blu.stc.s-msn.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://blu.stc.s-msn.com/br/csl/css/4BFD91D5D91B7B016D1179362400063B/ieupgrade.css
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: max-age=31536000
Accept-Ranges: bytes
Etag: &quot;805e7744541fcd1:0&quot;
Server: Microsoft-IIS/7.5, BLUMPPSTCA07
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 79
Age: 13530221
Date: Sun, 11 Nov 2012 01:43:53 GMT
Last-Modified: Sat, 21 Apr 2012 00:18:25 GMT
Expires: Fri, 07 Jun 2013 11:20:12 GMT
Connection: keep-alive
GET /s/as/899538/en.js HTTP/1.1

Host: www.bing.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Tue, 19 Apr 2011 19:27:41 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 5505
Cache-Control: public, max-age=9113089
Date: Sun, 11 Nov 2012 01:43:53 GMT
Connection: keep-alive
GET /3599173/plcr_2225250_262568814_1350944975975.js HTTP/1.1

Host: s0.2mdn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Mon, 22 Oct 2012 22:29:36 GMT
Date: Sun, 11 Nov 2012 01:08:14 GMT
Expires: Mon, 12 Nov 2012 01:08:14 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 1482
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=86400
Age: 2139
GET /879366/flash_expanding_rendering_lib_200_15.js HTTP/1.1

Host: s0.2mdn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Tue, 09 Oct 2012 20:55:43 GMT
Date: Sat, 10 Nov 2012 20:37:59 GMT
Expires: Sun, 11 Nov 2012 20:37:59 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 29175
X-XSS-Protection: 1; mode=block
Age: 18355
Cache-Control: public, max-age=86400
GET /v/5817.06/fl/player/current/player.swf HTTP/1.1

Host: img.widgets.video.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Cache-Control: max-age=3888000,public, s-maxage=3888000
Accept-Ranges: bytes
Etag: &quot;b4bbb9a7a5accd1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Access-Control-Allow-Origin: *.s-msn.com | *.msn.com
Content-Length: 447352
Age: 2079122
Date: Sun, 11 Nov 2012 01:43:52 GMT
Last-Modified: Wed, 17 Oct 2012 20:26:14 GMT
Expires: Sun, 02 Dec 2012 00:28:20 GMT
Connection: keep-alive
GET /get/flashplayer/update/current/xml/version_en_win_pl.xml HTTP/1.1

Host: fpdownload2.macromedia.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
HTTP/1.1 200 OK

Content-Type: text/xml
Server: Apache
Last-Modified: Wed, 31 Oct 2012 21:22:10 GMT
Etag: &quot;87de33-256-4cd617ed12480&quot;
Accept-Ranges: bytes
Content-Length: 598
Date: Sun, 11 Nov 2012 01:43:54 GMT
Connection: keep-alive
GET /pub/swz/crossdomain.xml HTTP/1.1

Host: fpdownload.adobe.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
HTTP/1.1 200 OK

Content-Type: text/x-cross-domain-policy
Server: Apache
Last-Modified: Wed, 08 Apr 2009 14:45:28 GMT
Etag: &quot;12bcfe-d1-4670c2eb93200&quot;
Accept-Ranges: bytes
Content-Length: 209
Date: Sun, 11 Nov 2012 01:43:54 GMT
Connection: keep-alive
GET /ads/richmedia/studio/22048366/22063228_1346278963419_main.swf HTTP/1.1

Host: s0.2mdn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Last-Modified: Wed, 29 Aug 2012 22:22:44 GMT
Date: Sun, 11 Nov 2012 01:43:54 GMT
Expires: Mon, 12 Nov 2012 01:43:54 GMT
Cache-Control: public, max-age=86400
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 23490
X-XSS-Protection: 1; mode=block
GET /c/my/horoscope/ari.jpg HTTP/1.1

Host: a.sc.msn.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://lifestyle.ca.msn.com/
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 200 OK

Content-Type: image/jpeg
Accept-Ranges: bytes
Etag: &quot;80aa6df1b5dca1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 2504
Last-Modified: Wed, 04 Nov 2009 05:02:01 GMT
Date: Sun, 11 Nov 2012 01:43:54 GMT
Connection: keep-alive
GET /crossdomain.xml HTTP/1.1

Host: fpdownload.adobe.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
HTTP/1.1 200 OK

Content-Type: text/x-cross-domain-policy
Server: Apache
Last-Modified: Mon, 04 May 2009 20:29:46 GMT
Etag: &quot;69c8bb-8d-4691c05e90280&quot;
Accept-Ranges: bytes
Content-Length: 141
Date: Sun, 11 Nov 2012 01:43:56 GMT
Connection: keep-alive
GET /c.gif?cts=1352598236415&evn=1&rid=1291bcb48f5f4dc6bb2220be0769a9e7&fk=default&gp=P&optkey=default&clid=1291bcb48f5f4dc6bb2220be0769a9e7&evt=extload&js=1&sfl=scpMost;scpPolls; HTTP/1.1

Host: udc.msn.com
GET /c.gif?cts=1352598236415&amp;evn=1&amp;rid=1291bcb48f5f4dc6bb2220be0769a9e7&amp;fk=default&amp;gp=P&amp;optkey=default&amp;clid=1291bcb48f5f4dc6bb2220be0769a9e7&amp;evt=extload&amp;js=1&amp;sfl=scpMost;scpPolls; 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://lifestyle.ca.msn.com/
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: no-cache, no-store, must-revalidate
Pragma: no-cache
Expires: -1
Last-Modified: Mon, 18 Jul 2011 19:03:37 GMT
Accept-Ranges: bytes
Etag: &quot;a29327667d45cc1:0&quot;
Server: Microsoft-IIS/8.0
S: STOMSNVM001006
Date: Sun, 11 Nov 2012 01:43:55 GMT
Content-Length: 42
GET /br/csl/js/1/socialbuttonutility.js HTTP/1.1

Host: blu.stj.s-msn.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: max-age=31536000
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;03be037f920cd1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5, BLUMPPSTCA08
X-Powered-By: ASP.NET
P3P: CP=&quot;BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo&quot;
Content-Length: 88
Age: 10611514
Date: Sun, 11 Nov 2012 01:43:56 GMT
Last-Modified: Mon, 23 Apr 2012 02:31:42 GMT
Expires: Thu, 11 Jul 2013 06:05:22 GMT
Connection: keep-alive
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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/javascript; charset=utf-8
Cache-Control: public, max-age=1800
Last-Modified: Thu, 08 Nov 2012 09:18:39 GMT
Etag: &quot;a888ca6754ffdd1c338f0ee6f07cf733&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 24583
Date: Sun, 11 Nov 2012 01:43:56 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 /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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=utf-8
Etag: &quot;06c9a8ca347f3538149da85e21e875b7&quot;
Content-Encoding: gzip
X-FB-Debug: vbXT5kEknM+df4yELaIhJlGBwJwKbkma7XEZtJtyJF4=
Content-Length: 58142
Cache-Control: public, max-age=504
Expires: Sun, 11 Nov 2012 01:52:20 GMT
Date: Sun, 11 Nov 2012 01:43:56 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /plugins/like.php?send=false&app_id=132970837947&href=http://www.facebook.com/msncanada&layout=button_count&show_faces=false&action=like&colorscheme=light&font=arial HTTP/1.1

Host: www.facebook.com
GET /plugins/like.php?send=false&amp;app_id=132970837947&amp;href=http://www.facebook.com/msncanada&amp;layout=button_count&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial 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://lifestyle.ca.msn.com/
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: EeVluxM9e3FtHVjrAsV+PYX+lxV+wWcwRGOJu4/rhr4=
Date: Sun, 11 Nov 2012 01:43:57 GMT
Transfer-Encoding: chunked
Connection: keep-alive
GET /widgets/follow_button.1352365724.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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=315569260
Last-Modified: Thu, 08 Nov 2012 09:15:48 GMT
Etag: &quot;567a94a4e136d5c4b7bfde258474cfa6&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 25717
Date: Sun, 11 Nov 2012 01:43:57 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 /pub/swz/tlf/1.1.0.604/textLayout_1.1.0.604.swz HTTP/1.1

Host: fpdownload.adobe.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
HTTP/1.1 200 OK

Content-Type: text/plain
Server: Apache
Last-Modified: Thu, 27 Jan 2011 03:52:27 GMT
Etag: &quot;86e390-2654a-e0c6b4c0&quot;
Accept-Ranges: bytes
Content-Length: 157002
Date: Sun, 11 Nov 2012 01:43:56 GMT
Connection: keep-alive
GET /rsrc.php/v2/yI/x/1dQf_ATK831.png HTTP/1.1

Host: static.ak.fbcdn.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: 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.facebook.com/plugins/like.php?send=false&amp;app_id=132970837947&amp;href=http://www.facebook.com/msncanada&amp;layout=button_count&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial
HTTP/1.1 200 OK

Content-Type: image/png
Access-Control-Allow-Origin: *
Last-Modified: Fri, 29 Jun 2012 21:48:06 GMT
X-Content-Type-Options: nosniff
X-FB-Debug: DROeMGRPcdwLS4zkFLAnDVu5opvpxfNclOg2Khukp6I=
Content-Length: 567
Cache-Control: public, max-age=25100054
Expires: Wed, 28 Aug 2013 13:58:11 GMT
Date: Sun, 11 Nov 2012 01:43:57 GMT
Connection: keep-alive
GET /connect/xd_arbiter.php?version=17 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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Content-Encoding: gzip
X-FB-Debug: QpUXNDPC4a/ZS9XMuzc2WDBWEZ8S2oHPsfImau8uouU=
Content-Length: 9847
Vary: Accept-Encoding
Cache-Control: public, max-age=31456394
Expires: Sun, 10 Nov 2013 03:37:11 GMT
Date: Sun, 11 Nov 2012 01:43:57 GMT
Connection: keep-alive
GET /f.gif?_=1352598237264&id=twitter-widget-0&lang=en&screen_name=MSNcaLS&show_count=false&show_screen_name=false&size=m&twttr_variant=2.0&twttr_referrer=http%3A%2F%2Flifestyle.ca.msn.com%2F&twttr_widget=1&twttr_hask=0&twttr_li=0&twttr_pid= HTTP/1.1

Host: p.twitter.com
GET /f.gif?_=1352598237264&amp;id=twitter-widget-0&amp;lang=en&amp;screen_name=MSNcaLS&amp;show_count=false&amp;show_screen_name=false&amp;size=m&amp;twttr_variant=2.0&amp;twttr_referrer=http%3A%2F%2Flifestyle.ca.msn.com%2F&amp;twttr_widget=1&amp;twttr_hask=0&amp;twttr_li=0&amp;twttr_pid= 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://platform.twitter.com/widgets/follow_button.1352365724.html
HTTP/1.1 200 OK

Content-Type: image/gif
Etag: &quot;377d257f2d2e294916143c069141c1c5:1328738114&quot;
Last-Modified: Wed, 08 Feb 2012 21:55:14 GMT
Accept-Ranges: bytes
Content-Length: 43
Cache-Control: no-cache
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
Date: Sun, 11 Nov 2012 01:43:57 GMT
Connection: keep-alive
GET /rsrc.php/v2/yW/r/4SdXcaE0lBj.js HTTP/1.1

Host: static.ak.fbcdn.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.facebook.com/plugins/like.php?send=false&amp;app_id=132970837947&amp;href=http://www.facebook.com/msncanada&amp;layout=button_count&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial
Origin: http://www.facebook.com
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=utf-8
Access-Control-Allow-Origin: *
Last-Modified: Mon, 29 Oct 2012 23:55:41 GMT
X-Content-Type-Options: nosniff
Content-Encoding: gzip
X-FB-Debug: mERPLeHfP4bFbWVj/NJRwm2C8x1Lf8geAnYAfFf24WM=
Content-Length: 37945
Vary: Accept-Encoding
Cache-Control: public, max-age=31148939
Expires: Wed, 06 Nov 2013 14:12:56 GMT
Date: Sun, 11 Nov 2012 01:43:57 GMT
Connection: keep-alive
GET /1/users/show.json?screen_name=MSNcaLS&callback=twttr.setFollowersCount HTTP/1.1

Host: cdn.api.twitter.com
GET /1/users/show.json?screen_name=MSNcaLS&amp;callback=twttr.setFollowersCount 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://platform.twitter.com/widgets/follow_button.1352365724.html
HTTP/1.1 200 OK

Content-Type: application/javascript;charset=utf-8
Last-Modified: Sun, 11 Nov 2012 01:36:59 GMT
Pragma: no-cache
X-Frame-Options: SAMEORIGIN
X-Content-Type-Options: nosniff
Status: 200 OK
Content-Encoding: gzip
Content-Length: 892
Server: tfe
Vary: Accept-Encoding
Cache-Control: no-cache, no-store, must-revalidate, post-check=0, pre-check=0
Expires: Sun, 11 Nov 2012 01:43:58 GMT
Date: Sun, 11 Nov 2012 01:43:58 GMT
Connection: keep-alive
GET /pub/swz/flex/4.1.0.16076/osmf_flex.4.0.0.13495.swz HTTP/1.1

Host: fpdownload.adobe.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
HTTP/1.1 200 OK

Content-Type: text/plain
Server: Apache
Last-Modified: Thu, 27 Jan 2011 03:53:01 GMT
Etag: &quot;5b652c-17f1d-e2cd8140&quot;
Accept-Ranges: bytes
Content-Length: 98077
Date: Sun, 11 Nov 2012 01:43:58 GMT
Connection: keep-alive
GET /plugins/likebox.php?api_key=&locale=en_US&sdk=joey&channel=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df334f2f4cfb4a32%26origin%3Dhttp%253A%252F%252Flifestyle.ca.msn.com%252Ff3e6c597cb6182a%26domain%3Dlifestyle.ca.msn.com%26relation%3Dparent.parent&height=255&header=false&show_faces=false&stream=false&width=300&href=http%3A%2F%2Fwww.facebook.com%2Fmsncanada&colorscheme=light&border_color=white HTTP/1.1

Host: www.facebook.com
GET /plugins/likebox.php?api_key=&amp;locale=en_US&amp;sdk=joey&amp;channel=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df334f2f4cfb4a32%26origin%3Dhttp%253A%252F%252Flifestyle.ca.msn.com%252Ff3e6c597cb6182a%26domain%3Dlifestyle.ca.msn.com%26relation%3Dparent.parent&amp;height=255&amp;header=false&amp;show_faces=false&amp;stream=false&amp;width=300&amp;href=http%3A%2F%2Fwww.facebook.com%2Fmsncanada&amp;colorscheme=light&amp;border_color=white 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://lifestyle.ca.msn.com/
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: gcBlGLaAWTCsDl1ajbPfZyw00XZ9BABHvTbDNMkXUOM=
Date: Sun, 11 Nov 2012 01:44:00 GMT
Transfer-Encoding: chunked
Connection: keep-alive
GET /hprofile-ak-ash4/276907_207756292571889_1187298832_q.jpg HTTP/1.1

Host: profile.ak.fbcdn.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: 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.facebook.com/plugins/likebox.php?api_key=&amp;locale=en_US&amp;sdk=joey&amp;channel=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df334f2f4cfb4a32%26origin%3Dhttp%253A%252F%252Flifestyle.ca.msn.com%252Ff3e6c597cb6182a%26domain%3Dlifestyle.ca.msn.com%26relation%3Dparent.parent&amp;height=255&amp;header=false&amp;show_faces=false&amp;stream=false&amp;width=300&amp;href=http%3A%2F%2Fwww.facebook.com%2Fmsncanada&amp;colorscheme=light&amp;border_color=white
HTTP/1.1 200 OK

Content-Type: image/jpeg
Content-Length: 2292
Last-Modified: Fri, 01 Jan 2010 00:00:00 GMT
X-Backend: hs304.ash4
X-BlockId: 276907
X-Object-Type: PHOTO_OBJECT
Access-Control-Allow-Origin: *
Cache-Control: max-age=1209600
Expires: Sun, 25 Nov 2012 01:44:00 GMT
Date: Sun, 11 Nov 2012 01:44:00 GMT
Connection: keep-alive
GET /plugins/like.php?send=false&app_id=132970837947&href=http://www.facebook.com/msncanada&layout=button_count&show_faces=false&action=like&colorscheme=light&font=arial HTTP/1.1

Host: www.facebook.com
GET /plugins/like.php?send=false&amp;app_id=132970837947&amp;href=http://www.facebook.com/msncanada&amp;layout=button_count&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial 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://lifestyle.ca.msn.com/
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: XUMgMEexGbUC9+qxfMVd3y7sQabio5vap0ETjKs3S+0=
Date: Sun, 11 Nov 2012 01:44:00 GMT
Transfer-Encoding: chunked
Connection: keep-alive
GET /connect/xd_arbiter.php?version=17 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://lifestyle.ca.msn.com/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Content-Encoding: gzip
X-FB-Debug: JS4qOSg1Dl3AgVtg3MyBP4whcr8SZapA/Vud9cBlDwY=
Content-Length: 9847
Vary: Accept-Encoding
Cache-Control: public, max-age=31456301
Expires: Sun, 10 Nov 2013 03:35:41 GMT
Date: Sun, 11 Nov 2012 01:44:00 GMT
Connection: keep-alive
GET /pub/swz/flex/4.1.0.16076/framework_4.1.0.16076.swz HTTP/1.1

Host: fpdownload.adobe.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
HTTP/1.1 200 OK

Content-Type: text/plain
Server: Apache
Last-Modified: Thu, 27 Jan 2011 03:53:06 GMT
Etag: &quot;5b652b-9919e-e319cc80&quot;
Accept-Ranges: bytes
Content-Length: 627102
Date: Sun, 11 Nov 2012 01:44:00 GMT
Connection: keep-alive
GET /pub/swz/flex/4.1.0.16076/spark_4.1.0.16076.swz HTTP/1.1

Host: fpdownload.adobe.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
HTTP/1.1 200 OK

Content-Type: text/plain
Server: Apache
Last-Modified: Thu, 27 Jan 2011 03:53:12 GMT
Etag: &quot;5b6529-4df44-e3755a00&quot;
Accept-Ranges: bytes
Content-Length: 319300
Date: Sun, 11 Nov 2012 01:44:01 GMT
Connection: keep-alive
GET /pub/swz/flex/4.1.0.16076/sparkskins_4.1.0.16076.swz HTTP/1.1

Host: fpdownload.adobe.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
HTTP/1.1 200 OK

Content-Type: text/plain
Server: Apache
Last-Modified: Thu, 27 Jan 2011 03:53:08 GMT
Etag: &quot;5b652e-d504-e3385100&quot;
Accept-Ranges: bytes
Content-Length: 54532
Date: Sun, 11 Nov 2012 01:44:02 GMT
Connection: keep-alive
GET /pub/swz/flex/4.1.0.16076/rpc_4.1.0.16076.swz HTTP/1.1

Host: fpdownload.adobe.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
HTTP/1.1 200 OK

Content-Type: text/plain
Server: Apache
Last-Modified: Thu, 27 Jan 2011 03:53:04 GMT
Etag: &quot;5b652d-20355-e2fb4800&quot;
Accept-Ranges: bytes
Content-Length: 131925
Date: Sun, 11 Nov 2012 01:44:02 GMT
Connection: keep-alive
GET /rsrc.php/v2/yT/r/EDS5cIIevxN.css HTTP/1.1

Host: static.ak.fbcdn.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/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.facebook.com/plugins/likebox.php?api_key=&amp;locale=en_US&amp;sdk=joey&amp;channel=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df334f2f4cfb4a32%26origin%3Dhttp%253A%252F%252Flifestyle.ca.msn.com%252Ff3e6c597cb6182a%26domain%3Dlifestyle.ca.msn.com%26relation%3Dparent.parent&amp;height=255&amp;header=false&amp;show_faces=false&amp;stream=false&amp;width=300&amp;href=http%3A%2F%2Fwww.facebook.com%2Fmsncanada&amp;colorscheme=light&amp;border_color=white
HTTP/1.1 200 OK

Content-Type: text/css; charset=utf-8
Access-Control-Allow-Origin: *
Last-Modified: Fri, 02 Nov 2012 22:48:16 GMT
X-Content-Type-Options: nosniff
Content-Encoding: gzip
X-FB-Debug: aK3dnYRSyochZ+lGqe6BEKKjjVtz882kr9khXmBJ728=
Content-Length: 4960
Vary: Accept-Encoding
Cache-Control: public, max-age=31148942
Expires: Wed, 06 Nov 2013 14:13:05 GMT
Date: Sun, 11 Nov 2012 01:44:03 GMT
Connection: keep-alive
GET /rsrc.php/v2/yj/r/sXTjVN2hEhU.js HTTP/1.1

Host: static.ak.fbcdn.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.facebook.com/plugins/likebox.php?api_key=&amp;locale=en_US&amp;sdk=joey&amp;channel=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df334f2f4cfb4a32%26origin%3Dhttp%253A%252F%252Flifestyle.ca.msn.com%252Ff3e6c597cb6182a%26domain%3Dlifestyle.ca.msn.com%26relation%3Dparent.parent&amp;height=255&amp;header=false&amp;show_faces=false&amp;stream=false&amp;width=300&amp;href=http%3A%2F%2Fwww.facebook.com%2Fmsncanada&amp;colorscheme=light&amp;border_color=white
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=utf-8
Access-Control-Allow-Origin: *
Last-Modified: Fri, 02 Nov 2012 22:29:31 GMT
X-Content-Type-Options: nosniff
Content-Encoding: gzip
X-FB-Debug: 4wNSiAFZrCCTOGM79YYsuhAkDJSNEKsHr8kbAjlSYhg=
Content-Length: 18748
Vary: Accept-Encoding
Cache-Control: public, max-age=31059017
Expires: Tue, 05 Nov 2013 13:14:20 GMT
Date: Sun, 11 Nov 2012 01:44:03 GMT
Connection: keep-alive
GET /rsrc.php/v2/yO/r/jjYcDzC552z.js HTTP/1.1

Host: static.ak.fbcdn.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.facebook.com/plugins/likebox.php?api_key=&amp;locale=en_US&amp;sdk=joey&amp;channel=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df334f2f4cfb4a32%26origin%3Dhttp%253A%252F%252Flifestyle.ca.msn.com%252Ff3e6c597cb6182a%26domain%3Dlifestyle.ca.msn.com%26relation%3Dparent.parent&amp;height=255&amp;header=false&amp;show_faces=false&amp;stream=false&amp;width=300&amp;href=http%3A%2F%2Fwww.facebook.com%2Fmsncanada&amp;colorscheme=light&amp;border_color=white
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=utf-8
Access-Control-Allow-Origin: *
Last-Modified: Sat, 03 Nov 2012 00:21:27 GMT
X-Content-Type-Options: nosniff
Content-Encoding: gzip
X-FB-Debug: 3zqtEuEuvZdSMPuPNnB4uoHjamXhhWfDeAmHWMJKFLg=
Content-Length: 36700
Vary: Accept-Encoding
Cache-Control: public, max-age=31047733
Expires: Tue, 05 Nov 2013 10:06:16 GMT
Date: Sun, 11 Nov 2012 01:44:03 GMT
Connection: keep-alive
GET /rsrc.php/v2/yI/r/qtSCzGL8Eps.js HTTP/1.1

Host: static.ak.fbcdn.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.facebook.com/plugins/likebox.php?api_key=&amp;locale=en_US&amp;sdk=joey&amp;channel=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df334f2f4cfb4a32%26origin%3Dhttp%253A%252F%252Flifestyle.ca.msn.com%252Ff3e6c597cb6182a%26domain%3Dlifestyle.ca.msn.com%26relation%3Dparent.parent&amp;height=255&amp;header=false&amp;show_faces=false&amp;stream=false&amp;width=300&amp;href=http%3A%2F%2Fwww.facebook.com%2Fmsncanada&amp;colorscheme=light&amp;border_color=white
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=utf-8
Access-Control-Allow-Origin: *
Last-Modified: Fri, 09 Nov 2012 22:13:10 GMT
X-Content-Type-Options: nosniff
Content-Encoding: gzip
X-FB-Debug: ZFnjgzipCU3kme0OY3jrFb9lCWg4SPIZPOvMdAkw2ZY=
Content-Length: 19401
Vary: Accept-Encoding
Cache-Control: public, max-age=31445362
Expires: Sun, 10 Nov 2013 00:33:25 GMT
Date: Sun, 11 Nov 2012 01:44:03 GMT
Connection: keep-alive
GET /rsrc.php/v2/yn/r/c7ctoRBymjs.css HTTP/1.1

Host: static.ak.fbcdn.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/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.facebook.com/plugins/likebox.php?api_key=&amp;locale=en_US&amp;sdk=joey&amp;channel=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df334f2f4cfb4a32%26origin%3Dhttp%253A%252F%252Flifestyle.ca.msn.com%252Ff3e6c597cb6182a%26domain%3Dlifestyle.ca.msn.com%26relation%3Dparent.parent&amp;height=255&amp;header=false&amp;show_faces=false&amp;stream=false&amp;width=300&amp;href=http%3A%2F%2Fwww.facebook.com%2Fmsncanada&amp;colorscheme=light&amp;border_color=white
HTTP/1.1 200 OK

Content-Type: text/css; charset=utf-8
Access-Control-Allow-Origin: *
Last-Modified: Fri, 09 Nov 2012 22:38:31 GMT
X-Content-Type-Options: nosniff
Content-Encoding: gzip
X-FB-Debug: rigMen3mw19XYIstWCVOvIohX/H4XGHmSYUvuMcaqJ8=
Content-Length: 44077
Vary: Accept-Encoding
Cache-Control: public, max-age=31445270
Expires: Sun, 10 Nov 2013 00:31:53 GMT
Date: Sun, 11 Nov 2012 01:44:03 GMT
Connection: keep-alive
GET /rsrc.php/v2/yT/r/2PdUwaTS5X5.js HTTP/1.1

Host: static.ak.fbcdn.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.facebook.com/plugins/likebox.php?api_key=&amp;locale=en_US&amp;sdk=joey&amp;channel=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df334f2f4cfb4a32%26origin%3Dhttp%253A%252F%252Flifestyle.ca.msn.com%252Ff3e6c597cb6182a%26domain%3Dlifestyle.ca.msn.com%26relation%3Dparent.parent&amp;height=255&amp;header=false&amp;show_faces=false&amp;stream=false&amp;width=300&amp;href=http%3A%2F%2Fwww.facebook.com%2Fmsncanada&amp;colorscheme=light&amp;border_color=white
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=utf-8
Access-Control-Allow-Origin: *
Last-Modified: Fri, 02 Nov 2012 22:37:36 GMT
X-Content-Type-Options: nosniff
Content-Encoding: gzip
X-FB-Debug: omYi6D121i1BHxxESBLBLBw6f+XRsOKyNdB64THGjYc=
Content-Length: 35191
Vary: Accept-Encoding
Cache-Control: public, max-age=31047801
Expires: Tue, 05 Nov 2013 10:07:24 GMT
Date: Sun, 11 Nov 2012 01:44:03 GMT
Connection: keep-alive
GET /rsrc.php/v2/yG/x/ql9vukDCc4R.png HTTP/1.1

Host: static.ak.fbcdn.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: 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://static.ak.fbcdn.net/rsrc.php/v2/yT/r/EDS5cIIevxN.css
HTTP/1.1 200 OK

Content-Type: image/png
Access-Control-Allow-Origin: *
Last-Modified: Thu, 12 Apr 2012 03:03:07 GMT
X-Content-Type-Options: nosniff
X-FB-Debug: SSZ4XQYmOQflnuJ5UlSmONTiwSJPPJiVN0vimczLkac=
Content-Length: 1177
Cache-Control: public, max-age=25004002
Expires: Tue, 27 Aug 2013 11:17:26 GMT
Date: Sun, 11 Nov 2012 01:44:04 GMT
Connection: keep-alive
GET /images/spacer.gif HTTP/1.1

Host: www.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: 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.facebook.com/plugins/likebox.php?api_key=&amp;locale=en_US&amp;sdk=joey&amp;channel=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df334f2f4cfb4a32%26origin%3Dhttp%253A%252F%252Flifestyle.ca.msn.com%252Ff3e6c597cb6182a%26domain%3Dlifestyle.ca.msn.com%26relation%3Dparent.parent&amp;height=255&amp;header=false&amp;show_faces=false&amp;stream=false&amp;width=300&amp;href=http%3A%2F%2Fwww.facebook.com%2Fmsncanada&amp;colorscheme=light&amp;border_color=white
HTTP/1.1 200 OK

Content-Type: image/gif
Accept-Ranges: bytes
Cache-Control: max-age=2592000
Expires: Tue, 11 Dec 2012 01:44:04 GMT
X-FB-Debug: YKazsZRSpQDI+IgJlcJSvjz4qf4W3u1FAA8OTRnBfus=
Date: Sun, 11 Nov 2012 01:44:04 GMT
Connection: keep-alive
Content-Length: 43
GET /crossdomain.xml HTTP/1.1

Host: video.msn.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
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 200 OK

Content-Type: text/xml; charset=UTF-8
Cache-Control: max-age=604800
Content-Encoding: gzip
Accept-Ranges: bytes
Etag: &quot;b22c645a96f7cc1:0&quot;
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5
Machine: CH1********307
RenderTime: 10/29/2012 2:52:20 PM
X-Powered-By: ASP.NET
Content-Length: 277
Age: 445850
Date: Sun, 11 Nov 2012 01:44:05 GMT
Last-Modified: Thu, 01 Mar 2012 10:30:42 GMT
Expires: Mon, 12 Nov 2012 21:53:15 GMT
Connection: keep-alive
GET /soapboxservice2.aspx?mn=GetCountryCode HTTP/1.1

Host: video.msn.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
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 200 OK

Content-Type: text/xml; charset=utf-8
Cache-Control: no-cache
Pragma: no-cache
Content-Encoding: gzip
Expires: -1
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5
Machine: SN1********521
RenderTime: 11/10/2012 5:44:08 PM
Set-Cookie: zip=c:no; domain=msn.com; expires=Sun, 18-Nov-2012 01:44:08 GMT; path=/
X-Powered-By: ASP.NET
Date: Sun, 11 Nov 2012 01:44:08 GMT
Content-Length: 115
Connection: keep-alive
GET /resource.aspx?resources=player&configCsId=ENCA_MSN&configName=ENCA_InlinePlayer&gmts=gmt,activityplatform,smart&mkt=&country=no HTTP/1.1

Host: img.widgets.video.s-msn.com
GET /resource.aspx?resources=player&amp;configCsId=ENCA_MSN&amp;configName=ENCA_InlinePlayer&amp;gmts=gmt,activityplatform,smart&amp;mkt=&amp;country=no 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
HTTP/1.1 200 OK

Content-Type: text/xml; charset=utf-8
Cache-Control: public, max-age=1800
Content-Encoding: gzip
Expires: Sun, 11 Nov 2012 02:14:11 GMT
Last-Modified: Sun, 11 Nov 2012 01:44:11 GMT
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Access-Control-Allow-Origin: *.s-msn.com | *.msn.com
Date: Sun, 11 Nov 2012 01:44:10 GMT
Content-Length: 6411
Connection: keep-alive
GET /v/5817.06/flash/logos/MSN_14_small.swf HTTP/1.1

Host: img.widgets.video.s-msn.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
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Cache-Control: max-age=3888000,public, s-maxage=3888000
Accept-Ranges: bytes
Etag: &quot;26ccaaaf3f41cc1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Access-Control-Allow-Origin: *.s-msn.com | *.msn.com
Content-Length: 1008
Age: 2077051
Date: Sun, 11 Nov 2012 01:44:12 GMT
Last-Modified: Wed, 13 Jul 2011 09:31:47 GMT
Expires: Sun, 02 Dec 2012 00:46:41 GMT
Connection: keep-alive
GET /crossdomain.xml HTTP/1.1

Host: edge5.catalog.video.msn.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
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA; zip=c:no
HTTP/1.1 200 OK

Content-Type: text/xml
Cache-Control: max-age=1209600
Accept-Ranges: bytes
Etag: &quot;e9a2c4b073efcc1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Content-Length: 177
Age: 528911
Date: Sun, 11 Nov 2012 01:44:12 GMT
Last-Modified: Mon, 20 Feb 2012 02:02:25 GMT
Expires: Sun, 18 Nov 2012 22:49:01 GMT
Connection: keep-alive
GET /videobytag.aspx?vs=0&mk=en-ca&ps=10&tag=1-Lifestyle&ipt=1&ff=82&ns=gallery&rct=1,3,5,6 HTTP/1.1

Host: edge5.catalog.video.msn.com
GET /videobytag.aspx?vs=0&amp;mk=en-ca&amp;ps=10&amp;tag=1-Lifestyle&amp;ipt=1&amp;ff=82&amp;ns=gallery&amp;rct=1,3,5,6 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
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA; zip=c:no
HTTP/1.1 200 OK

Content-Type: text/xml; charset=utf-8
Cache-Control: public
Expires: Sun, 11 Nov 2012 01:48:44 GMT
Server: Microsoft-IIS/7.5
Access-Control-Allow-Origin: *
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Date: Sun, 11 Nov 2012 01:44:11 GMT
Content-Length: 65134
Connection: keep-alive
GET /crossdomain.xml HTTP/1.1

Host: img3.catalog.video.msn.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
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA; zip=c:no
HTTP/1.1 200 OK

Content-Type: text/xml
Cache-Control: max-age=1209600
Accept-Ranges: bytes
Etag: &quot;e0ddfeb47a40cc1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Content-Length: 177
Age: 291763
Date: Sun, 11 Nov 2012 01:44:15 GMT
Last-Modified: Tue, 12 Jul 2011 10:01:45 GMT
Expires: Wed, 21 Nov 2012 16:41:32 GMT
Connection: keep-alive
GET /crossdomain.xml HTTP/1.1

Host: img1.catalog.video.msn.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
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA; zip=c:no
HTTP/1.1 200 OK

Content-Type: text/xml
Cache-Control: max-age=1209600
Accept-Ranges: bytes
Etag: &quot;e0ddfeb47a40cc1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Content-Length: 177
Age: 529220
Date: Sun, 11 Nov 2012 01:44:15 GMT
Last-Modified: Tue, 12 Jul 2011 10:01:45 GMT
Expires: Sun, 18 Nov 2012 22:43:54 GMT
Connection: keep-alive
GET /image.aspx?uuid=e93e009a-2b72-47d6-a1ab-ce67b6c91cdd&w=96&h=54&so=4 HTTP/1.1

Host: img1.catalog.video.msn.com
GET /image.aspx?uuid=e93e009a-2b72-47d6-a1ab-ce67b6c91cdd&amp;w=96&amp;h=54&amp;so=4 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
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA; zip=c:no
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public
Expires: Sun, 11 Nov 2012 03:14:15 GMT
Last-Modified: Fri, 09 Nov 2012 16:21:43 GMT
Server: Microsoft-IIS/7.5
Access-Control-Allow-Origin: *
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Date: Sun, 11 Nov 2012 01:44:15 GMT
Content-Length: 3629
Connection: keep-alive
GET /image.aspx?uuid=b61a5d85-18d0-481b-82cb-31a68561c6ef&w=96&h=54&so=4 HTTP/1.1

Host: img3.catalog.video.msn.com
GET /image.aspx?uuid=b61a5d85-18d0-481b-82cb-31a68561c6ef&amp;w=96&amp;h=54&amp;so=4 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
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA; zip=c:no
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public
Expires: Sun, 11 Nov 2012 03:14:16 GMT
Last-Modified: Fri, 09 Nov 2012 22:16:20 GMT
Server: Microsoft-IIS/7.5
Access-Control-Allow-Origin: *
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Date: Sun, 11 Nov 2012 01:44:15 GMT
Content-Length: 3343
Connection: keep-alive
GET /image.aspx?uuid=166b6acb-8056-45b8-bece-cf8ae9a9533c&w=96&h=54&so=4 HTTP/1.1

Host: img1.catalog.video.msn.com
GET /image.aspx?uuid=166b6acb-8056-45b8-bece-cf8ae9a9533c&amp;w=96&amp;h=54&amp;so=4 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
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA; zip=c:no
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public
Expires: Sun, 11 Nov 2012 03:14:15 GMT
Last-Modified: Fri, 09 Nov 2012 15:50:38 GMT
Server: Microsoft-IIS/7.5
Access-Control-Allow-Origin: *
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Date: Sun, 11 Nov 2012 01:44:15 GMT
Content-Length: 3723
Connection: keep-alive
GET /image.aspx?uuid=e93e009a-2b72-47d6-a1ab-ce67b6c91cdd&w=269&h=269&so=4 HTTP/1.1

Host: img1.catalog.video.msn.com
GET /image.aspx?uuid=e93e009a-2b72-47d6-a1ab-ce67b6c91cdd&amp;w=269&amp;h=269&amp;so=4 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
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA; zip=c:no
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public
Expires: Sun, 11 Nov 2012 03:14:16 GMT
Last-Modified: Fri, 09 Nov 2012 22:13:47 GMT
Server: Microsoft-IIS/7.5
Access-Control-Allow-Origin: *
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Date: Sun, 11 Nov 2012 01:44:16 GMT
Content-Length: 28008
Connection: keep-alive
GET /image.aspx?uuid=24f27cdf-a941-4093-82cf-5e210c0c51fc&w=96&h=54&so=4 HTTP/1.1

Host: img3.catalog.video.msn.com
GET /image.aspx?uuid=24f27cdf-a941-4093-82cf-5e210c0c51fc&amp;w=96&amp;h=54&amp;so=4 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
Cookie: MC1=V=3&amp;GUID=ae2843942e184fd1aa9e0f02591793da; Sample=79; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA; zip=c:no
HTTP/1.1 200 OK

Content-Type: image/jpeg
Cache-Control: public
Expires: Sun, 11 Nov 2012 03:14:18 GMT
Last-Modified: Fri, 09 Nov 2012 15:53:32 GMT
Server: Microsoft-IIS/7.5
Access-Control-Allow-Origin: *
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Date: Sun, 11 Nov 2012 01:44:18 GMT
Content-Length: 2979
Connection: keep-alive