1 /* Replayable replacements for global functions */
3 /***************************************************************
5 **************************************************************/
6 //! stable.js 0.1.3, https://github.com/Two-Screen/stable
7 //! © 2012 Stéphan Kochen, Angry Bytes. MIT licensed.
10 // A stable array sort, because `Array#sort()` is not guaranteed stable.
11 // This is an implementation of merge sort, without recursion.
13 var stable = function(arr, comp) {
14 if (typeof(comp) !== 'function') {
15 comp = function(a, b) {
26 if (len <= 1) return arr;
28 // Rather than dividing input, simply iterate chunks of 1, 2, 4, 8, etc.
29 // Chunks are the size of the left or right hand in merge sort.
30 // Stop when the left-hand covers all of the array.
32 for (var chk = 1; chk < len; chk *= 2) {
33 arr = pass(arr, comp, chk);
35 for (var i = 0; i < len; i++) {
41 // Run a single pass with the given chunk size. Returns a new array.
42 var pass = function(arr, comp, chk) {
44 // Output, and position.
45 var result = new Array(len);
47 // Step size / double chunk size.
49 // Bounds of the left and right chunks.
51 // Iterators over the left and right chunk.
54 // Iterate over pairs of chunks.
55 for (l = 0; l < len; l += dbl) {
61 // Iterate both chunks in parallel.
65 // Compare the chunks.
66 if (li < r && ri < e) {
67 // This works for a regular `sort()` compatible comparator,
68 // but also for a simple comparator like: `a > b`
69 if (comp(arr[li], arr[ri]) <= 0) {
70 result[i++] = arr[li++];
73 result[i++] = arr[ri++];
76 // Nothing to compare, just flush what's left.
78 result[i++] = arr[li++];
81 result[i++] = arr[ri++];
83 // Both iterators are at the chunk ends.
93 var arrsort = function(comp) {
94 return stable(this, comp);
97 if (Object.defineProperty) {
98 Object.defineProperty(Array.prototype, "sort", {
99 configurable: true, writable: true, enumerable: false,
103 Array.prototype.sort = arrsort;
107 /***************************************************************
109 **************************************************************/
112 * In a generated replay, this file is partially common, boilerplate code
113 * included in every replay, and partially generated replay code. The following
114 * header applies to the boilerplate code. A comment indicating "Auto-generated
115 * below this comment" marks the separation between these two parts.
117 * Copyright (C) 2011, 2012 Purdue University
118 * Written by Gregor Richards
119 * All rights reserved.
121 * Redistribution and use in source and binary forms, with or without
122 * modification, are permitted provided that the following conditions are met:
124 * 1. Redistributions of source code must retain the above copyright notice,
125 * this list of conditions and the following disclaimer.
126 * 2. Redistributions in binary form must reproduce the above copyright notice,
127 * this list of conditions and the following disclaimer in the documentation
128 * and/or other materials provided with the distribution.
130 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
131 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
132 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
133 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
134 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
135 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
136 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
137 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
138 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
139 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
140 * POSSIBILITY OF SUCH DAMAGE.
147 // detect if we're in a browser or not
148 var inbrowser = false;
149 var inharness = false;
150 var finished = false;
151 if (typeof window !== "undefined" && "document" in window) {
153 if (window.parent && "JSBNG_handleResult" in window.parent) {
156 } else if (typeof global !== "undefined") {
160 window = (function() { return this; })();
164 if ("console" in window) {
165 window.JSBNG_Console = window.console;
171 var JSBNG_Replay = window.top.JSBNG_Replay = {
172 push: function(arr, fun) {
177 path: function(str) {
181 forInKeys: function(of) {
189 // the actual replay runner
192 delete window.onload;
195 var jr = JSBNG_Replay$;
196 var cb = function() {
197 var end = new Date().getTime();
200 var msg = "Time: " + (end - st) + "ms";
203 window.parent.JSBNG_handleResult({error:false, time:(end - st)});
204 } else if (inbrowser) {
205 var res = document.createElement("div");
207 res.style.position = "fixed";
208 res.style.left = "1em";
209 res.style.top = "1em";
210 res.style.width = "35em";
211 res.style.height = "5em";
212 res.style.padding = "1em";
213 res.style.backgroundColor = "white";
214 res.style.color = "black";
215 res.appendChild(document.createTextNode(msg));
217 document.body.appendChild(res);
218 } else if (typeof console !== "undefined") {
220 } else if (typeof print !== "undefined") {
221 // hopefully not the browser print() function :)
230 var st = new Date().getTime();
231 while (jr !== null) {
236 // add a frame at replay time
237 function iframe(pageid) {
240 // represent the iframe as an iframe (of course)
241 var iframe = document.createElement("iframe");
242 iframe.style.display = "none";
243 document.body.appendChild(iframe);
244 iw = iframe.contentWindow;
245 iw.document.write("<script type=\"text/javascript\">var JSBNG_Replay_geval = eval;</script>");
248 // no general way, just lie and do horrible things
252 window.window = window;
254 window.JSBNG_Replay_geval = function(str) {
263 // called at the end of the replay stuff
264 function finalize() {
266 setTimeout(onload, 0);
272 // verify this recorded value and this replayed value are close enough
273 function verify(rep, rec) {
275 (rep === rep || rec === rec) /* NaN test */) {
277 if (typeof rec === "function" && typeof rep === "function") {
280 if (typeof rec !== "object" || rec === null ||
281 !(("__JSBNG_unknown_" + typeof(rep)) in rec)) {
289 var firstMessage = true;
290 function replayMessage(msg) {
294 firstMessage = false;
301 // complain when there's an error
302 function verificationError(msg) {
303 if (finished) return;
305 window.parent.JSBNG_handleResult({error:true, msg: msg});
306 } else replayMessage(msg);
311 function verifySet(objstr, obj, prop, gvalstr, gval) {
312 if (/^on/.test(prop)) {
313 // these aren't instrumented compatibly
317 if (!verify(obj[prop], gval)) {
318 var bval = obj[prop];
319 var msg = "Verification failure! " + objstr + "." + prop + " is not " + gvalstr + ", it's " + bval + "!";
320 verificationError(msg);
324 // to verify a call or new
325 function verifyCall(iscall, func, cthis, cargs) {
327 var callArgs = func.callArgs[func.inst];
328 iscall = iscall ? 1 : 0;
329 if (cargs.length !== callArgs.length - 1) {
332 if (iscall && !verify(cthis, callArgs[0])) ok = false;
333 for (var i = 0; i < cargs.length; i++) {
334 if (!verify(cargs[i], callArgs[i+1])) ok = false;
338 var msg = "Call verification failure!";
339 verificationError(msg);
342 return func.returns[func.inst++];
345 // to verify the callpath
346 function verifyPath(func) {
347 var real = callpath.shift();
349 var msg = "Call path verification failure! Expected " + real + ", found " + func;
350 verificationError(msg);
354 // figure out how to define getters
356 if (Object.defineProperty) {
357 var odp = Object.defineProperty;
358 defineGetter = function(obj, prop, getter, setter) {
359 if (typeof setter === "undefined") setter = function(){};
360 odp(obj, prop, {"enumerable": true, "configurable": true, "get": getter, "set": setter});
362 } else if (Object.prototype.__defineGetter__) {
363 var opdg = Object.prototype.__defineGetter__;
364 var opds = Object.prototype.__defineSetter__;
365 defineGetter = function(obj, prop, getter, setter) {
366 if (typeof setter === "undefined") setter = function(){};
367 opdg.call(obj, prop, getter);
368 opds.call(obj, prop, setter);
371 defineGetter = function() {
372 verificationError("This replay requires getters for correct behavior, and your JS engine appears to be incapable of defining getters. Sorry!");
376 var defineRegetter = function(obj, prop, getter, setter) {
377 defineGetter(obj, prop, function() {
378 return getter.call(this, prop);
380 // once it's set by the client, it's claimed
381 setter.call(this, prop, val);
382 Object.defineProperty(obj, prop, {
383 "enumerable": true, "configurable": true, "writable": true,
389 // for calling events
390 var fpc = Function.prototype.call;
392 // resist the urge, don't put a })(); here!
393 /******************************************************************************
394 * Auto-generated below this comment
395 *****************************************************************************/
396 var ow920654002 = window;
461 var fo920654002_576_firstChild;
470 var fo920654002_595_firstChild;
483 var fo920654002_600_firstChild;
492 var fo920654002_872_firstChild;
498 var fo920654002_1_cookie;
516 var fo920654002_1155_firstChild;
522 var fo920654002_1385_firstChild;
531 var fo920654002_1402_firstChild;
559 var fo920654002_1554_firstChild;
561 var fo920654002_1590_firstChild;
592 var fo920654002_2171_firstChild;
598 var fo920654002_2413_firstChild;
599 var fo920654002_2418_firstChild;
600 var fo920654002_2425_firstChild;
620 var fo920654002_2467_firstChild;
644 var fo920654002_2524_firstChild;
645 var fo920654002_2529_firstChild;
646 var fo920654002_2536_firstChild;
665 JSBNG_Replay.s3df1edd82977e382ad955fbdf4db49d8fb9307ea_1 = [];
666 JSBNG_Replay.s3df1edd82977e382ad955fbdf4db49d8fb9307ea_190 = [];
667 JSBNG_Replay.s3df1edd82977e382ad955fbdf4db49d8fb9307ea_222 = [];
668 JSBNG_Replay.s3df1edd82977e382ad955fbdf4db49d8fb9307ea_166 = [];
669 JSBNG_Replay.s3df1edd82977e382ad955fbdf4db49d8fb9307ea_225 = [];
670 JSBNG_Replay.s3df1edd82977e382ad955fbdf4db49d8fb9307ea_169 = [];
671 JSBNG_Replay.s3df1edd82977e382ad955fbdf4db49d8fb9307ea_171 = [];
672 JSBNG_Replay.s89b45f8367840725134eb4d5bfbd7b4248c14bdd_89 = [];
673 JSBNG_Replay.sbf5a653251628e13e041c7dc1bee5c6e52b9508d_845 = [];
674 JSBNG_Replay.sbf5a653251628e13e041c7dc1bee5c6e52b9508d_523 = [];
675 JSBNG_Replay.sbc5321dc786fbc14e87e4afbbcf739a7b46d985c_270 = [];
676 JSBNG_Replay.s3df1edd82977e382ad955fbdf4db49d8fb9307ea_96 = [];
677 JSBNG_Replay.sbc5321dc786fbc14e87e4afbbcf739a7b46d985c_512 = [];
678 JSBNG_Replay.s9e837b2f10d5863fbc6c047ef503c649f3a4a5d6_757 = [];
679 JSBNG_Replay.sbf5a653251628e13e041c7dc1bee5c6e52b9508d_361 = [];
680 JSBNG_Replay.sbf5a653251628e13e041c7dc1bee5c6e52b9508d_2 = [];
681 JSBNG_Replay.s9e837b2f10d5863fbc6c047ef503c649f3a4a5d6_739 = [];
682 JSBNG_Replay.s48bc6385ad36661d437816c45525368eecdb65f2_257 = [];
683 JSBNG_Replay.s9e837b2f10d5863fbc6c047ef503c649f3a4a5d6_839 = [];
684 JSBNG_Replay.sbc5321dc786fbc14e87e4afbbcf739a7b46d985c_545 = [];
685 JSBNG_Replay.sedba73fa8ed79e84359ef405d7a57caf24a0f008_91 = [];
686 JSBNG_Replay.scb38ed7c6aaa195a276ac7856568a7b9e8f51b72_133 = [];
687 JSBNG_Replay.s3df1edd82977e382ad955fbdf4db49d8fb9307ea_226 = [];
689 // record generated by JSBench 8fa236f2f0ec at 2013-07-10T21:27:49.218Z
692 f920654002_0 = function() { return f920654002_0.returns[f920654002_0.inst++]; };
693 f920654002_0.returns = [];
694 f920654002_0.inst = 0;
696 ow920654002.JSBNG__Date = f920654002_0;
700 ow920654002.JSBNG__document = o0;
704 ow920654002.JSBNG__sessionStorage = o1;
708 ow920654002.JSBNG__localStorage = o2;
710 f920654002_4 = function() { return f920654002_4.returns[f920654002_4.inst++]; };
711 f920654002_4.returns = [];
712 f920654002_4.inst = 0;
714 ow920654002.JSBNG__getComputedStyle = f920654002_4;
716 f920654002_7 = function() { return f920654002_7.returns[f920654002_7.inst++]; };
717 f920654002_7.returns = [];
718 f920654002_7.inst = 0;
720 ow920654002.JSBNG__addEventListener = f920654002_7;
722 ow920654002.JSBNG__top = ow920654002;
724 ow920654002.JSBNG__scrollX = 0;
726 ow920654002.JSBNG__scrollY = 0;
728 f920654002_11 = function() { return f920654002_11.returns[f920654002_11.inst++]; };
729 f920654002_11.returns = [];
730 f920654002_11.inst = 0;
732 ow920654002.JSBNG__scrollBy = f920654002_11;
734 f920654002_12 = function() { return f920654002_12.returns[f920654002_12.inst++]; };
735 f920654002_12.returns = [];
736 f920654002_12.inst = 0;
738 ow920654002.JSBNG__setTimeout = f920654002_12;
740 f920654002_13 = function() { return f920654002_13.returns[f920654002_13.inst++]; };
741 f920654002_13.returns = [];
742 f920654002_13.inst = 0;
744 ow920654002.JSBNG__setInterval = f920654002_13;
746 f920654002_14 = function() { return f920654002_14.returns[f920654002_14.inst++]; };
747 f920654002_14.returns = [];
748 f920654002_14.inst = 0;
750 ow920654002.JSBNG__clearTimeout = f920654002_14;
752 f920654002_15 = function() { return f920654002_15.returns[f920654002_15.inst++]; };
753 f920654002_15.returns = [];
754 f920654002_15.inst = 0;
756 ow920654002.JSBNG__clearInterval = f920654002_15;
758 ow920654002.JSBNG__frames = ow920654002;
760 ow920654002.JSBNG__self = ow920654002;
764 ow920654002.JSBNG__navigator = o3;
768 ow920654002.JSBNG__history = o4;
770 ow920654002.JSBNG__closed = false;
772 ow920654002.JSBNG__opener = null;
774 ow920654002.JSBNG__defaultStatus = "";
778 ow920654002.JSBNG__location = o5;
780 ow920654002.JSBNG__innerWidth = 1024;
782 ow920654002.JSBNG__innerHeight = 702;
784 ow920654002.JSBNG__outerWidth = 1024;
786 ow920654002.JSBNG__outerHeight = 774;
788 ow920654002.JSBNG__screenX = 79;
790 ow920654002.JSBNG__screenY = 22;
792 ow920654002.JSBNG__pageXOffset = 0;
794 ow920654002.JSBNG__pageYOffset = 0;
796 ow920654002.JSBNG__frameElement = null;
800 ow920654002.JSBNG__webkitNotifications = o6;
802 ow920654002.JSBNG__screenLeft = 79;
804 ow920654002.JSBNG__clientInformation = o3;
806 ow920654002.JSBNG__defaultstatus = "";
808 ow920654002.JSBNG__devicePixelRatio = 1;
810 ow920654002.JSBNG__offscreenBuffering = true;
812 ow920654002.JSBNG__screenTop = 22;
814 f920654002_50 = function() { return f920654002_50.returns[f920654002_50.inst++]; };
815 f920654002_50.returns = [];
816 f920654002_50.inst = 0;
818 ow920654002.JSBNG__webkitRequestAnimationFrame = f920654002_50;
820 f920654002_56 = function() { return f920654002_56.returns[f920654002_56.inst++]; };
821 f920654002_56.returns = [];
822 f920654002_56.inst = 0;
824 ow920654002.JSBNG__XMLHttpRequest = f920654002_56;
826 f920654002_57 = function() { return f920654002_57.returns[f920654002_57.inst++]; };
827 f920654002_57.returns = [];
828 f920654002_57.inst = 0;
830 ow920654002.JSBNG__Image = f920654002_57;
832 ow920654002.JSBNG__name = "_e_06rS";
834 ow920654002.JSBNG__status = "";
836 f920654002_143 = function() { return f920654002_143.returns[f920654002_143.inst++]; };
837 f920654002_143.returns = [];
838 f920654002_143.inst = 0;
840 ow920654002.JSBNG__Document = f920654002_143;
842 f920654002_257 = function() { return f920654002_257.returns[f920654002_257.inst++]; };
843 f920654002_257.returns = [];
844 f920654002_257.inst = 0;
846 ow920654002.JSBNG__Event = f920654002_257;
848 ow920654002.JSBNG__XMLDocument = f920654002_143;
850 ow920654002.JSBNG__onerror = null;
852 f920654002_417 = function() { return f920654002_417.returns[f920654002_417.inst++]; };
853 f920654002_417.returns = [];
854 f920654002_417.inst = 0;
856 ow920654002.Math.JSBNG__random = f920654002_417;
859 f920654002_418 = function() { return f920654002_418.returns[f920654002_418.inst++]; };
860 f920654002_418.returns = [];
861 f920654002_418.inst = 0;
863 f920654002_0.now = f920654002_418;
865 f920654002_418.returns.push(1373491946288);
871 f920654002_419 = function() { return f920654002_419.returns[f920654002_419.inst++]; };
872 f920654002_419.returns = [];
873 f920654002_419.inst = 0;
875 o0.JSBNG__addEventListener = f920654002_419;
877 o3.userAgent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/536.29.13 (KHTML, like Gecko) Version/6.0.4 Safari/536.29.13";
879 f920654002_419.returns.push(undefined);
881 f920654002_420 = function() { return f920654002_420.returns[f920654002_420.inst++]; };
882 f920654002_420.returns = [];
883 f920654002_420.inst = 0;
885 ow920654002.JSBNG__onload = f920654002_420;
889 o0.documentMode = void 0;
891 f920654002_422 = function() { return f920654002_422.returns[f920654002_422.inst++]; };
892 f920654002_422.returns = [];
893 f920654002_422.inst = 0;
895 o0.getElementsByTagName = f920654002_422;
899 f920654002_422.returns.push(o8);
909 f920654002_425 = function() { return f920654002_425.returns[f920654002_425.inst++]; };
910 f920654002_425.returns = [];
911 f920654002_425.inst = 0;
913 o0.createDocumentFragment = f920654002_425;
917 f920654002_425.returns.push(o8);
919 f920654002_418.returns.push(1373491946328);
921 f920654002_427 = function() { return f920654002_427.returns[f920654002_427.inst++]; };
922 f920654002_427.returns = [];
923 f920654002_427.inst = 0;
925 o0.createElement = f920654002_427;
929 f920654002_427.returns.push(o10);
937 f920654002_429 = function() { return f920654002_429.returns[f920654002_429.inst++]; };
938 f920654002_429.returns = [];
939 f920654002_429.inst = 0;
941 o8.appendChild = f920654002_429;
943 f920654002_429.returns.push(o10);
947 f920654002_418.returns.push(1373491946330);
951 f920654002_427.returns.push(o10);
959 f920654002_429.returns.push(o10);
963 f920654002_418.returns.push(1373491946331);
967 f920654002_427.returns.push(o10);
975 f920654002_429.returns.push(o10);
979 o9.appendChild = f920654002_429;
981 f920654002_429.returns.push(o8);
985 f920654002_417.returns.push(0.7085472359322011);
987 f920654002_432 = function() { return f920654002_432.returns[f920654002_432.inst++]; };
988 f920654002_432.returns = [];
989 f920654002_432.inst = 0;
991 ow920654002.JSBNG__onunload = f920654002_432;
993 f920654002_418.returns.push(1373491946359);
995 f920654002_433 = function() { return f920654002_433.returns[f920654002_433.inst++]; };
996 f920654002_433.returns = [];
997 f920654002_433.inst = 0;
999 o1.getItem = f920654002_433;
1001 f920654002_433.returns.push(null);
1003 f920654002_418.returns.push(1373491946360);
1005 f920654002_14.returns.push(undefined);
1007 f920654002_12.returns.push(1198);
1011 o0.documentElement = o8;
1013 o8.className = "no_js";
1016 o0.domain = "jsbngssl.www.facebook.com";
1019 o5.href = "https://www.facebook.com/LawlabeeTheWallaby";
1024 f920654002_257.prototype = o10;
1051 o3.msPointerEnabled = void 0;
1081 f920654002_422.returns.push(o16);
1089 o17.rel = "alternate";
1097 o17.rel = "stylesheet";
1099 o17.href = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yo/r/eyHNmBC9R-J.css";
1107 o17.rel = "stylesheet";
1109 o17.href = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yS/r/IvWip7NpvOi.css";
1117 o17.rel = "stylesheet";
1119 o17.href = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yD/r/VgK6Ft5dJnU.css";
1127 o17.rel = "stylesheet";
1129 o17.href = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y0/r/XgHKKUyeHiu.css";
1137 o17.rel = "stylesheet";
1139 o17.href = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y5/r/PLl1cXAaYdQ.css";
1147 o17.rel = "shortcut icon";
1155 o17.rel = "stylesheet";
1157 o17.href = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yD/r/OWwnO_yMqhK.css";
1167 o17.rel = "stylesheet";
1169 o17.href = "http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/ym/r/9oANojUgSFt.css";
1175 f920654002_427.returns.push(o16);
1179 f920654002_453 = function() { return f920654002_453.returns[f920654002_453.inst++]; };
1180 f920654002_453.returns = [];
1181 f920654002_453.inst = 0;
1183 o16.getElementsByTagName = f920654002_453;
1187 f920654002_453.returns.push(o17);
1195 o16.childNodes = o17;
1199 f920654002_456 = function() { return f920654002_456.returns[f920654002_456.inst++]; };
1200 f920654002_456.returns = [];
1201 f920654002_456.inst = 0;
1203 o17.item = f920654002_456;
1213 f920654002_458 = function() { return f920654002_458.returns[f920654002_458.inst++]; };
1214 f920654002_458.returns = [];
1215 f920654002_458.inst = 0;
1217 o16.getAttributeNode = f920654002_458;
1223 f920654002_458.returns.push(o16);
1225 o16.value = "u_0_1";
1229 f920654002_418.returns.push(1373491948334);
1231 f920654002_418.returns.push(1373491948334);
1233 f920654002_14.returns.push(undefined);
1235 f920654002_12.returns.push(1199);
1237 f920654002_418.returns.push(1373491948335);
1243 o16.getElementsByTagName = f920654002_453;
1245 f920654002_461 = function() { return f920654002_461.returns[f920654002_461.inst++]; };
1246 f920654002_461.returns = [];
1247 f920654002_461.inst = 0;
1249 o0.querySelectorAll = f920654002_461;
1251 f920654002_462 = function() { return f920654002_462.returns[f920654002_462.inst++]; };
1252 f920654002_462.returns = [];
1253 f920654002_462.inst = 0;
1255 o16.querySelectorAll = f920654002_462;
1259 f920654002_462.returns.push(o17);
1265 f920654002_14.returns.push(undefined);
1267 f920654002_12.returns.push(1200);
1269 o8.clientWidth = 1024;
1271 o8.JSBNG__addEventListener = f920654002_419;
1273 f920654002_419.returns.push(undefined);
1275 f920654002_419.returns.push(undefined);
1277 o8.nodeName = "HTML";
1279 o8.__FB_TOKEN = void 0;
1282 f920654002_464 = function() { return f920654002_464.returns[f920654002_464.inst++]; };
1283 f920654002_464.returns = [];
1284 f920654002_464.inst = 0;
1286 o8.getAttribute = f920654002_464;
1288 f920654002_465 = function() { return f920654002_465.returns[f920654002_465.inst++]; };
1289 f920654002_465.returns = [];
1290 f920654002_465.inst = 0;
1292 o8.hasAttribute = f920654002_465;
1294 f920654002_465.returns.push(false);
1296 f920654002_419.returns.push(undefined);
1298 o8.JSBNG__onmousewheel = null;
1303 f920654002_419.returns.push(undefined);
1305 f920654002_418.returns.push(1373491950555);
1307 f920654002_418.returns.push(1373491950557);
1309 f920654002_418.returns.push(1373491950559);
1311 f920654002_418.returns.push(1373491950561);
1313 f920654002_418.returns.push(1373491950562);
1315 f920654002_418.returns.push(1373491950563);
1317 f920654002_418.returns.push(1373491950564);
1321 f920654002_425.returns.push(o17);
1323 f920654002_429.returns.push(o17);
1327 f920654002_418.returns.push(1373491950610);
1329 f920654002_418.returns.push(1373491950611);
1331 f920654002_418.returns.push(1373491950612);
1333 f920654002_418.returns.push(1373491950613);
1335 f920654002_418.returns.push(1373491950613);
1337 f920654002_418.returns.push(1373491950613);
1339 f920654002_467 = function() { return f920654002_467.returns[f920654002_467.inst++]; };
1340 f920654002_467.returns = [];
1341 f920654002_467.inst = 0;
1343 o0.getElementById = f920654002_467;
1347 f920654002_467.returns.push(o17);
1351 f920654002_467.returns.push(o18);
1355 o18.firstChild = o19;
1359 o19.nodeValue = " <div id=\"pagelet_main_column_personal\" data-referrer=\"pagelet_main_column_personal_timeline\"></div> ";
1363 o18.parentNode = o16;
1365 f920654002_471 = function() { return f920654002_471.returns[f920654002_471.inst++]; };
1366 f920654002_471.returns = [];
1367 f920654002_471.inst = 0;
1369 o16.removeChild = f920654002_471;
1371 f920654002_471.returns.push(o18);
1376 o17.getAttribute = f920654002_464;
1378 f920654002_464.returns.push("pagelet_timeline_main_column");
1380 f920654002_418.returns.push(1373491950615);
1384 f920654002_425.returns.push(o18);
1386 f920654002_429.returns.push(o18);
1390 f920654002_418.returns.push(1373491950628);
1392 f920654002_418.returns.push(1373491950628);
1394 f920654002_418.returns.push(1373491950629);
1398 f920654002_425.returns.push(o18);
1400 f920654002_418.returns.push(1373491950630);
1402 o0.createStyleSheet = void 0;
1406 f920654002_427.returns.push(o19);
1413 f920654002_427.returns.push(o20);
1416 o18.appendChild = f920654002_429;
1418 f920654002_429.returns.push(o20);
1420 f920654002_418.returns.push(1373491950632);
1422 f920654002_13.returns.push(1201);
1426 f920654002_427.returns.push(o21);
1431 f920654002_429.returns.push(o21);
1433 f920654002_429.returns.push(o19);
1437 f920654002_429.returns.push(o18);
1441 f920654002_418.returns.push(1373491950642);
1443 f920654002_418.returns.push(1373491950643);
1445 f920654002_418.returns.push(1373491950643);
1447 f920654002_418.returns.push(1373491950644);
1451 f920654002_425.returns.push(o18);
1453 f920654002_429.returns.push(o18);
1457 f920654002_418.returns.push(1373491950656);
1459 f920654002_418.returns.push(1373491950656);
1461 f920654002_418.returns.push(1373491950657);
1463 f920654002_418.returns.push(1373491950658);
1467 f920654002_425.returns.push(o18);
1469 f920654002_429.returns.push(o18);
1473 f920654002_418.returns.push(1373491950664);
1475 f920654002_418.returns.push(1373491950665);
1477 f920654002_418.returns.push(1373491950665);
1479 f920654002_418.returns.push(1373491950666);
1483 f920654002_425.returns.push(o18);
1485 f920654002_429.returns.push(o18);
1489 f920654002_418.returns.push(1373491950667);
1491 f920654002_418.returns.push(1373491950668);
1493 f920654002_418.returns.push(1373491950669);
1495 f920654002_418.returns.push(1373491950670);
1497 f920654002_418.returns.push(1373491950701);
1499 f920654002_418.returns.push(1373491950702);
1501 f920654002_418.returns.push(1373491950724);
1503 f920654002_418.returns.push(1373491950725);
1505 f920654002_418.returns.push(1373491950727);
1507 f920654002_418.returns.push(1373491950739);
1509 f920654002_418.returns.push(1373491950741);
1511 f920654002_418.returns.push(1373491950741);
1513 f920654002_418.returns.push(1373491950777);
1515 f920654002_418.returns.push(1373491950778);
1517 f920654002_418.returns.push(1373491950779);
1519 f920654002_418.returns.push(1373491950780);
1521 f920654002_418.returns.push(1373491950790);
1523 f920654002_418.returns.push(1373491950791);
1525 f920654002_418.returns.push(1373491950798);
1527 f920654002_418.returns.push(1373491950798);
1529 f920654002_418.returns.push(1373491950800);
1531 f920654002_418.returns.push(1373491950801);
1533 f920654002_418.returns.push(1373491950803);
1535 f920654002_418.returns.push(1373491950804);
1537 f920654002_418.returns.push(1373491950825);
1539 f920654002_418.returns.push(1373491950825);
1541 f920654002_418.returns.push(1373491950827);
1543 f920654002_418.returns.push(1373491950827);
1549 o21.parentNode = o9;
1551 o9.removeChild = f920654002_471;
1553 f920654002_471.returns.push(o21);
1557 f920654002_420.returns.push(undefined);
1559 f920654002_418.returns.push(1373491950857);
1563 f920654002_4.returns.push(o23);
1565 o23.height = "42px";
1569 o20.parentNode = o9;
1573 f920654002_471.returns.push(o20);
1577 f920654002_418.returns.push(1373491950858);
1579 f920654002_418.returns.push(1373491950859);
1583 f920654002_467.returns.push(o9);
1587 f920654002_467.returns.push(o20);
1591 o20.firstChild = o23;
1595 o23.nodeValue = " <div class=\"fbTimelineTopSectionBase -cx-PRIVATE-fbTimelineLightHeader__root -cx-PUBLIC-fbTimelineLightHeader__loading\"><div id=\"pagelet_above_header_timeline\" data-referrer=\"pagelet_above_header_timeline\"></div><div id=\"above_header_timeline_placeholder\"></div><div class=\"fbTimelineSection mtm fbTimelineTopSection\"><div id=\"fbProfileCover\"><div class=\"cover\" id=\"u_0_g\"><a class=\"coverWrap coverImage\" href=\"http://jsbngssl.www.facebook.com/photo.php?fbid=10200268472248551&set=a.3353777797334.2140697.1055580469&type=1\" rel=\"theater\" ajaxify=\"http://jsbngssl.www.facebook.com/photo.php?fbid=10200268472248551&set=a.3353777797334.2140697.1055580469&type=1&src=https%3A%2F%2Fsphotos-a.xx.fbcdn.net%2Fhphotos-ash3%2F1017486_10200268472248551_842609840_n.jpg&size=851%2C315&source=10\" id=\"fbCoverImageContainer\"><img class=\"coverPhotoImg photo img\" src=\"http://jsbngssl.sphotos-a.xx.fbcdn.net/hphotos-ash3/1017486_10200268472248551_842609840_n.jpg\" alt=\"Cover Photo\" style=\"top:0px;width:100%\" data-fbid=\"10200268472248551\" /><div class=\"coverBorder\"></div><img class=\"coverChangeThrobber img\" src=\"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yk/r/LOOn0JtHNzb.gif\" alt=\"\" width=\"16\" height=\"16\" /></a><div class=\"-cx-PRIVATE-fbTimelineLightHeader__headline\"><h2 class=\"-cx-PRIVATE-fbTimelineLightHeader__name\"><a class=\"-cx-PRIVATE-fbTimelineLightHeader__namelink\" href=\"http://jsbngssl.www.facebook.com/LawlabeeTheWallaby\">Gregor Richards</a></h2></div></div><div id=\"fbTimelineHeadline\" class=\"clearfix\"><div class=\"-cx-PRIVATE-fbTimelineLightHeader__actionbuttonswrap\"><div class=\"actions -cx-PRIVATE-fbTimelineLightHeader__actionbuttons\"><div class=\"actionsDropdown\" id=\"pagelet_timeline_profile_actions\" data-referrer=\"pagelet_timeline_profile_actions\"></div></div></div><div class=\"-cx-PRIVATE-fbTimelineLightHeader__navwrapper\"><div class=\"-cx-PRIVATE-fbTimelineNavLight__root clearfix\" data-referrer=\"timeline_light_nav_top\" id=\"u_0_h\"><a class=\"-cx-PRIVATE-fbTimelineNavLight__item -cx-PRIVATE-fbTimelineNavLight__activeitem\" href=\"http://jsbngssl.www.facebook.com/LawlabeeTheWallaby\">Timeline<span class=\"-cx-PRIVATE-fbTimelineNavLight__tabnub\"></span></a><a class=\"-cx-PRIVATE-fbTimelineNavLight__item\" href=\"http://jsbngssl.www.facebook.com/LawlabeeTheWallaby/about\" data-medley-id=\"pagelet_timeline_medley_about\">About<span class=\"-cx-PRIVATE-fbTimelineNavLight__tabnub\"></span></a><a class=\"-cx-PRIVATE-fbTimelineNavLight__item\" href=\"http://jsbngssl.www.facebook.com/LawlabeeTheWallaby/photos\" data-medley-id=\"pagelet_timeline_medley_photos\">Photos<span class=\"-cx-PRIVATE-fbTimelineNavLight__tabnub\"></span></a><a class=\"-cx-PRIVATE-fbTimelineNavLight__item\" href=\"http://jsbngssl.www.facebook.com/LawlabeeTheWallaby/friends\" data-medley-id=\"pagelet_timeline_medley_friends\">Friends<span class=\"-cx-PRIVATE-fbTimelineNavLight__tabnub\"></span></a><div class=\"-cx-PRIVATE-uiInlineBlock__root uiPopover -cx-PRIVATE-fbTimelineNavLight__item -cx-PRIVATE-fbTimelineNavLight__itemdropdown\" id=\"u_0_i\"><a class=\"-cx-PRIVATE-fbTimelineNavLight__dropdownitembutton -cx-PRIVATE-uiPopover__trigger\" href=\"#\" aria-haspopup=\"true\" aria-expanded=\"false\" rel=\"toggle\" role=\"button\" id=\"u_0_j\">More<i class=\"-cx-PRIVATE-fbTimelineNavLight__dropdownitemarrow img sp_4p6kmz sx_4f53fc\"></i></a></div></div></div><div class=\"name\"><div class=\"photoContainer\"><a class=\"profilePicThumb\" id=\"profile_pic_education\" href=\"http://jsbngssl.www.facebook.com/photo.php?fbid=10200268473688587&set=a.1468918877039.2062262.1055580469&type=1&source=11\" rel=\"theater\"><img class=\"profilePic img\" src=\"http://jsbngssl.fbcdn-profile-a.akamaihd.net/hprofile-ak-frc3/c55.0.552.552/s160x160/993004_10200268473688587_517108607_n.jpg\" alt=\"Gregor Richards\" /></a><meta itemprop=\"image\" content=\"http://jsbngssl.fbcdn-profile-a.akamaihd.net/hprofile-ak-prn2/276274_1055580469_962040234_q.jpg\" /></div></div></div><div id=\"timeline_sticky_header\" data-referrer=\"timeline_sticky_header\"></div></div><div id=\"fbSuggestionsPlaceHolder\"></div></div><div id=\"pagelet_escape_hatch\" data-referrer=\"pagelet_escape_hatch\"></div></div><div id=\"timeline_tab_content\"><div id=\"pagelet_timeline_recent\" data-referrer=\"pagelet_timeline_recent\"></div><div id=\"timeline_tab_content_extra\"></div></div> ";
1599 o20.parentNode = o16;
1601 f920654002_471.returns.push(o20);
1606 o9.getAttribute = f920654002_464;
1608 f920654002_464.returns.push("pagelet_main_column_personal_timeline");
1612 f920654002_427.returns.push(o20);
1616 o20.getElementsByTagName = f920654002_453;
1620 f920654002_453.returns.push(o23);
1628 o20.childNodes = o23;
1632 o23.item = f920654002_456;
1642 o20.getAttributeNode = f920654002_458;
1644 f920654002_458.returns.push(null);
1646 o20.getElementsByTagName = f920654002_453;
1650 f920654002_453.returns.push(o23);
1658 o24.getAttributeNode = f920654002_458;
1662 f920654002_458.returns.push(null);
1668 o24.getAttributeNode = f920654002_458;
1672 f920654002_458.returns.push(null);
1678 o24.getAttributeNode = f920654002_458;
1682 f920654002_458.returns.push(null);
1688 o24.getAttributeNode = f920654002_458;
1694 f920654002_458.returns.push(o24);
1696 o24.value = "fullScreenSwitch";
1704 o24.getAttributeNode = f920654002_458;
1710 f920654002_458.returns.push(o24);
1712 o24.value = "fbPhotoSnowliftFullScreenSwitch";
1720 o24.getAttributeNode = f920654002_458;
1726 f920654002_458.returns.push(o24);
1728 o24.value = "fbPhotoSnowliftFullScreenClose";
1736 o24.getAttributeNode = f920654002_458;
1740 f920654002_458.returns.push(null);
1746 o24.getAttributeNode = f920654002_458;
1752 f920654002_458.returns.push(o24);
1754 o24.value = "fbPhotoSnowliftWantButton";
1762 o24.getAttributeNode = f920654002_458;
1766 f920654002_458.returns.push(null);
1772 o24.getAttributeNode = f920654002_458;
1778 f920654002_458.returns.push(o24);
1780 o24.value = "fbPhotoSnowliftTagBoxes";
1788 o24.getAttributeNode = f920654002_458;
1794 f920654002_458.returns.push(o24);
1796 o24.value = "fbPhotoSnowliftTagApproval";
1804 o24.getAttributeNode = f920654002_458;
1810 f920654002_458.returns.push(o24);
1812 o24.value = "fbPhotoSnowliftComputerVisionInfo";
1820 o24.getAttributeNode = f920654002_458;
1824 f920654002_458.returns.push(null);
1830 o24.getAttributeNode = f920654002_458;
1836 f920654002_458.returns.push(o24);
1838 o24.value = "snowliftStageActions";
1846 o24.getAttributeNode = f920654002_458;
1850 f920654002_458.returns.push(null);
1856 o24.getAttributeNode = f920654002_458;
1860 f920654002_458.returns.push(null);
1866 o24.getAttributeNode = f920654002_458;
1872 f920654002_458.returns.push(o24);
1874 o24.value = "fbPhotoSnowliftActions";
1882 o24.getAttributeNode = f920654002_458;
1888 f920654002_458.returns.push(o24);
1890 o24.value = "fbPhotoSnowliftButtons";
1898 o24.getAttributeNode = f920654002_458;
1902 f920654002_458.returns.push(null);
1908 o24.getAttributeNode = f920654002_458;
1912 f920654002_458.returns.push(null);
1918 o24.getAttributeNode = f920654002_458;
1924 f920654002_458.returns.push(o24);
1926 o24.value = "fbPhotoSnowliftMediaTitle";
1934 o24.getAttributeNode = f920654002_458;
1940 f920654002_458.returns.push(o24);
1942 o24.value = "fbPhotoSnowliftPositionAndCount";
1950 o24.getAttributeNode = f920654002_458;
1954 f920654002_458.returns.push(null);
1960 o24.getAttributeNode = f920654002_458;
1964 f920654002_458.returns.push(null);
1970 o24.getAttributeNode = f920654002_458;
1974 f920654002_458.returns.push(null);
1980 o24.getAttributeNode = f920654002_458;
1984 f920654002_458.returns.push(null);
1990 o24.getAttributeNode = f920654002_458;
1994 f920654002_458.returns.push(null);
2000 o24.getAttributeNode = f920654002_458;
2004 f920654002_458.returns.push(null);
2010 o24.getAttributeNode = f920654002_458;
2014 f920654002_458.returns.push(null);
2020 o24.getAttributeNode = f920654002_458;
2024 f920654002_458.returns.push(null);
2030 o24.getAttributeNode = f920654002_458;
2034 f920654002_458.returns.push(null);
2040 o24.getAttributeNode = f920654002_458;
2044 f920654002_458.returns.push(null);
2050 o24.getAttributeNode = f920654002_458;
2054 f920654002_458.returns.push(null);
2060 o24.getAttributeNode = f920654002_458;
2064 f920654002_458.returns.push(null);
2070 o24.getAttributeNode = f920654002_458;
2074 f920654002_458.returns.push(null);
2080 o24.getAttributeNode = f920654002_458;
2086 f920654002_458.returns.push(o24);
2088 o24.value = "fbPhotoSnowliftError";
2096 o24.getAttributeNode = f920654002_458;
2100 f920654002_458.returns.push(null);
2106 o24.getAttributeNode = f920654002_458;
2110 f920654002_458.returns.push(null);
2116 o24.getAttributeNode = f920654002_458;
2120 f920654002_458.returns.push(null);
2126 o24.getAttributeNode = f920654002_458;
2130 f920654002_458.returns.push(null);
2136 o24.getAttributeNode = f920654002_458;
2140 f920654002_458.returns.push(null);
2146 o24.getAttributeNode = f920654002_458;
2152 f920654002_458.returns.push(o24);
2154 o24.value = "fbPhotoSnowliftInlineEditor";
2164 o24.getAttributeNode = f920654002_458;
2170 f920654002_458.returns.push(o23);
2172 o23.value = "u_0_l";
2178 f920654002_467.returns.push(o23);
2180 o16.scrollWidth = 1024;
2182 o16.scrollHeight = 702;
2184 f920654002_467.returns.push(o17);
2193 f920654002_11.returns.push(undefined);
2195 f920654002_418.returns.push(1373491950943);
2197 f920654002_418.returns.push(1373491950956);
2201 f920654002_467.returns.push(o24);
2205 f920654002_467.returns.push(o25);
2209 o25.firstChild = o26;
2213 o26.nodeValue = " <div class=\"escapeHatchMinimal -cx-PRIVATE-fbTimelineEscapeHatch__root\"><div class=\"-cx-PRIVATE-fbTimelineLightReportHeader__root -cx-PRIVATE-fbTimelineEscapeHatch__header\"><div class=\"-cx-PRIVATE-fbTimelineLightReportHeader__titlecontainer\" data-ft=\"{"tn":"C"}\"><div class=\"fsm fwn fcg\"><span class=\"-cx-PRIVATE-fbTimelineLightReportHeader__text -cx-PRIVATE-fbTimelineLightReportHeader__title\"><span>Do you know Gregor?</span></span></div></div></div><div class=\"pam uiBoxWhite noborder\"><div><div class=\"-cx-PRIVATE-fbTimelineEscapeHatch__addfriendbutton\"><div class=\"FriendButton\" id=\"u_0_n\"><label class=\"FriendRequestAdd addButton selected uiButton uiButtonSpecial uiButtonLarge\" for=\"u_0_o\"><i class=\"mrs img sp_3fr8aa sx_ec0c2b\"></i><input value=\"Add Friend\" type=\"button\" id=\"u_0_o\" /></label><a class=\"FriendRequestOutgoing enableFriendListFlyout outgoingButton enableFriendListFlyout hidden_elem selected uiButton uiButtonSpecial uiButtonLarge\" href=\"#\" role=\"button\" data-profileid=\"1055580469\" data-flloc=\"escape_hatch\" data-cansuggestfriends=\"false\"><i class=\"mrs img sp_3fr8aa sx_ec0c2b\"></i><span class=\"uiButtonText\">Friend Request Sent</span></a></div></div><div class=\"phs pbs -cx-PRIVATE-fbTimelineEscapeHatch__noticetext\"><div class=\"pbs prm fsl\"></div><span class=\"fsl fcg\"><span id=\"u_0_p\"><span class=\"addFriendText\">To see what he shares with friends, <a class=\"addButton\" href=\"#\" role=\"button\">send him a friend request.</a></span><span class=\"hidden_elem enableFriendListFlyout outgoingButton\" data-profileid=\"1055580469\">Request Sent.</span></span></span></div></div></div><div id=\"fbSuggestionsHatchPlaceHolder\"></div></div> ";
2217 o25.parentNode = o16;
2219 f920654002_471.returns.push(o25);
2224 o24.getAttribute = f920654002_464;
2226 f920654002_464.returns.push("pagelet_escape_hatch");
2228 f920654002_418.returns.push(1373491950960);
2230 f920654002_418.returns.push(1373491950962);
2234 f920654002_467.returns.push(o25);
2236 o25.getAttribute = f920654002_464;
2238 f920654002_464.returns.push("pagelet_above_header_timeline");
2240 f920654002_418.returns.push(1373491950972);
2242 f920654002_418.returns.push(1373491950973);
2246 f920654002_467.returns.push(o26);
2250 f920654002_467.returns.push(o27);
2254 o27.firstChild = o28;
2258 o28.nodeValue = " <span class=\"uiButtonGroup uiButtonGroupOverlay\" id=\"u_0_r\"><span class=\"firstItem lastItem uiButtonGroupItem buttonItem\"><div class=\"profileHeaderButton FriendButton\" id=\"u_0_13\"><label class=\"FriendRequestAdd addButton uiButton uiButtonOverlay uiButtonLarge\" for=\"u_0_14\"><i class=\"mrs img sp_3fr8aa sx_ec0c2b\"></i><input value=\"Add Friend\" type=\"button\" id=\"u_0_14\" /></label><a class=\"FriendRequestOutgoing enableFriendListFlyout outgoingButton enableFriendListFlyout hidden_elem uiButton uiButtonOverlay uiButtonLarge\" href=\"#\" role=\"button\" data-profileid=\"1055580469\" data-flloc=\"fbx_top_bar\" data-cansuggestfriends=\"false\"><i class=\"mrs img sp_3fr8aa sx_ec0c2b\"></i><span class=\"uiButtonText\">Friend Request Sent</span></a></div></span></span><span class=\"uiButtonGroup uiButtonGroupOverlay\" id=\"u_0_s\"><span class=\"firstItem lastItem uiButtonGroupItem buttonItem\"><span class=\"-cx-PRIVATE-uiSwapButton__root -cx-PRIVATE-fbSubscribeButton__root profileHeaderButton\"><a class=\"uiButton uiButtonOverlay uiButtonLarge\" href=\"#\" role=\"button\" ajaxify=\"/ajax/follow/follow_profile.php?profile_id=1055580469&location=1\" rel=\"async-post\" id=\"u_0_z\"><i class=\"mrs img sp_3fr8aa sx_3f5e05\"></i><span class=\"uiButtonText\">Follow</span></a><label class=\"profileFollowButton -cx-PUBLIC-uiHoverButton__root -cx-PRIVATE-uiSwapButton__secondbutton hidden_elem uiButton uiButtonOverlay uiButtonLarge\" id=\"u_0_10\" for=\"u_0_12\"><i class=\"mrs img sp_3fr8aa sx_0bef0b\"></i><input value=\"Following\" aria-haspopup=\"1\" data-profileid=\"1055580469\" type=\"submit\" id=\"u_0_12\" /></label></span></span></span><span class=\"uiButtonGroup actionsContents uiButtonGroupOverlay\" id=\"u_0_t\"><span class=\"firstItem uiButtonGroupItem buttonItem\"><a class=\"uiButton uiButtonOverlay uiButtonLarge\" href=\"/messages/LawlabeeTheWallaby\" role=\"button\" ajaxify=\"/ajax/messaging/composer.php?ids%5B0%5D=1055580469&ref=timeline\" rel=\"dialog\"><span class=\"uiButtonText\">Message</span></a></span><span class=\"lastItem uiButtonGroupItem selectorItem\"><div class=\"uiSelector inlineBlock fbTimelineActionSelector uiSelectorRight\"><div class=\"uiToggle wrap\"><a class=\"fbTimelineActionSelectorButton uiSelectorButton uiButton uiButtonOverlay uiButtonLarge uiButtonNoText\" href=\"#\" role=\"button\" aria-label=\"Other actions\" aria-haspopup=\"1\" rel=\"toggle\"><i class=\"mrs img sp_3fr8aa sx_da9635\"></i><span class=\"uiButtonText\"></span></a><div class=\"uiSelectorMenuWrapper uiToggleFlyout\"><div class=\"uiMenuContainer uiSelectorMenu\"><div role=\"menu\" class=\"uiMenu\" id=\"u_0_v\"><ul class=\"uiMenuInner\"><li class=\"uiMenuItem\" data-label=\"Add to Interest Lists...\" id=\"u_0_w\"><a class=\"itemAnchor\" role=\"menuitem\" tabindex=\"0\" href=\"#\"><span class=\"itemLabel fsm\">Add to Interest Lists...</span></a></li><li class=\"uiMenuSeparator\"></li><li class=\"uiMenuItem\" data-label=\"Report/Block...\"><a class=\"itemAnchor\" role=\"menuitem\" tabindex=\"-1\" href=\"/ajax/report/social.php?content_type=0&cid=1055580469&rid=1055580469&from_gear=timeline\" rel=\"dialog\"><span class=\"itemLabel fsm\">Report/Block...</span></a></li></ul></div><div role=\"menu\" class=\"uiMenu hidden_elem\" id=\"u_0_u\"><ul class=\"uiMenuInner\"><li class=\"uiMenuItem\" data-label=\"Go Back\" id=\"u_0_x\"><a class=\"itemAnchor\" role=\"menuitem\" tabindex=\"0\" href=\"#\"><span class=\"itemLabel fsm\">Go Back</span></a></li><li class=\"uiMenuSeparator\"></li><img class=\"mal pal center img\" src=\"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/yk/r/LOOn0JtHNzb.gif\" alt=\"\" id=\"u_0_y\" width=\"16\" height=\"16\" /></ul></div></div></div></div></div></span></span> ";
2262 o27.parentNode = o16;
2264 f920654002_471.returns.push(o27);
2269 o26.getAttribute = f920654002_464;
2273 f920654002_464.returns.push("pagelet_timeline_profile_actions");
2277 f920654002_427.returns.push(o26);
2281 o26.getElementsByTagName = f920654002_453;
2285 f920654002_453.returns.push(o27);
2293 o26.childNodes = o27;
2297 o27.item = f920654002_456;
2307 o26.getAttributeNode = f920654002_458;
2309 f920654002_458.returns.push(null);
2311 o26.getElementsByTagName = f920654002_453;
2315 f920654002_453.returns.push(o27);
2323 o28.getAttributeNode = f920654002_458;
2327 f920654002_458.returns.push(null);
2333 o28.getAttributeNode = f920654002_458;
2337 f920654002_458.returns.push(null);
2345 o28.getAttributeNode = f920654002_458;
2351 f920654002_458.returns.push(o27);
2353 o27.value = "u_0_11";
2357 f920654002_418.returns.push(1373491951009);
2359 f920654002_418.returns.push(1373491951010);
2361 f920654002_418.returns.push(1373491951011);
2363 f920654002_418.returns.push(1373491951012);
2365 f920654002_418.returns.push(1373491951012);
2369 f920654002_467.returns.push(o27);
2373 f920654002_467.returns.push(o28);
2377 o28.firstChild = o29;
2381 o29.nodeValue = " <div class=\"fbTimelineSection fbTimelineCompactSection fbTimelineSectionTransparent\" id=\"u_0_17\"><div class=\"fbTimelineCapsule clearfix\" data-referrer=\"pagelet_timeline_recent_ocm\" data-start=\"1359228987\" data-end=\"1375340399\" id=\"u_0_16\"><div class=\"-cx-PUBLIC-timelineOneColMin__leftcapsulecontainer\"><ol class=\"-cx-PUBLIC-timelineOneColMin__leftcapsule clearfix\" data-referrer=\"pagelet_timeline_recent_ocm\" id=\"u_0_16_left\"></ol><div id=\"pagelet_timeline_recent_more_pager\"></div></div><div class=\"-cx-PUBLIC-timelineOneColMin__rightcapsulecontainer\"><ol class=\"-cx-PUBLIC-timelineOneColMin__rightcapsule clearfix\" data-referrer=\"pagelet_timeline_recent_ocm\" id=\"u_0_16_right\"></ol></div></div><div class=\"fbTimelineSubSections\"></div></div><div class=\"hidden_elem fbTimelineSectionExpandPager fbTimelineShowOlderSections\" id=\"u_0_17_scroll_trigger\"><div class=\"uiMorePager\"><a class=\"uiMorePagerPrimary\" href=\"#\" role=\"button\">Show Older Stories</a></div></div> ";
2385 o28.parentNode = o16;
2387 f920654002_471.returns.push(o28);
2392 o27.getAttribute = f920654002_464;
2394 f920654002_464.returns.push("pagelet_timeline_recent");
2396 f920654002_418.returns.push(1373491951031);
2400 f920654002_425.returns.push(o28);
2402 f920654002_429.returns.push(o28);
2406 f920654002_418.returns.push(1373491951034);
2408 f920654002_418.returns.push(1373491951034);
2410 f920654002_418.returns.push(1373491951035);
2414 f920654002_467.returns.push(o28);
2416 o28.getAttribute = f920654002_464;
2418 f920654002_464.returns.push("pagelet_timeline_recent_ocm");
2420 f920654002_418.returns.push(1373491951035);
2424 f920654002_425.returns.push(o29);
2426 f920654002_429.returns.push(o29);
2430 f920654002_418.returns.push(1373491951038);
2432 f920654002_418.returns.push(1373491951039);
2434 f920654002_418.returns.push(1373491951039);
2436 f920654002_467.returns.push(o28);
2440 f920654002_467.returns.push(o29);
2444 o29.firstChild = o30;
2448 o30.nodeValue = " <li class=\"fbTimelineUnit fbTimelineTwoColumn clearfix\" data-side=\"l\" data-fixed=\"1\" data-size=\"1\" id=\"tl_unit_2953496614934485437\"><div class=\"topBorder\"></div><div class=\"timelineUnitContainer\" id=\"u_0_1k\" data-gt=\"{"eventtime":"1373491942","viewerid":"100006118350059","profileownerid":"1055580469","unitimpressionid":"23c8a629","contentid":"2953496614934485437","timeline_unit_type":"StatusMessageUnit","timewindowsize":"3","query_type":"39","contextwindowstart":"0","contextwindowend":"1375340399"}\" data-time=\"1373055341\"><div class=\"\"><div role=\"article\"><div class=\"clearfix mbs pbs -cx-PRIVATE-fbTimelineUnitActor__root\"><a class=\"-cx-PUBLIC-fbTimelineUnitActor__imagewrap -cx-PRIVATE-uiImageBlockDeprecated__image -cx-PRIVATE-uiImageBlockDeprecated__smallimage\" href=\"http://jsbngssl.www.facebook.com/LawlabeeTheWallaby?hc_location=timeline\" data-ft=\"{"tn":"\\\\u003C"}\" tabindex=\"-1\" aria-hidden=\"true\" data-hovercard=\"/ajax/hovercard/user.php?id=1055580469&extragetparams=%7B%22hc_location%22%3A%22timeline%22%7D\"><img class=\"-cx-PRIVATE-fbTimelineUnitActor__image img\" src=\"http://jsbngssl.fbcdn-profile-a.akamaihd.net/hprofile-ak-prn2/276274_1055580469_962040234_q.jpg\" alt=\"\" /></a><div class=\"-cx-PRIVATE-uiImageBlockDeprecated__smallcontent -cx-PRIVATE-uiImageBlockDeprecated__content\"><h5 class=\"-cx-PRIVATE-fbTimelineUnitActor__header\" data-ft=\"{"tn":"C"}\"><span class=\"fcg\"><span class=\"fwb\" data-ft=\"{"tn":";"}\"><a href=\"http://jsbngssl.www.facebook.com/LawlabeeTheWallaby?hc_location=timeline\" data-hovercard=\"/ajax/hovercard/user.php?id=1055580469&extragetparams=%7B%22hc_location%22%3A%22timeline%22%7D\">Gregor Richards</a></span></span> </h5><div class=\"-cx-PRIVATE-fbTimelineUnitActor__timestamp fsm fwn fcg\"><a class=\"uiLinkSubtle\" href=\"/LawlabeeTheWallaby/posts/10200350995551582\"><abbr title=\"Friday, July 5, 2013 at 4:15pm\" data-utime=\"1373066141\">July 5</abbr></a><a data-hover=\"tooltip\" aria-label=\"Public\" class=\"uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator -cx-PRIVATE-fbTimelineUnitActor__privacy\" href=\"#\" role=\"button\"><i class=\"lock img sp_3fr8aa sx_3189ab\"></i></a></div></div></div><div class=\"-cx-PRIVATE-fbTimelineStatusUnit__root\"><div class=\"userContentWrapper\"><div class=\"-cx-PRIVATE-fbTimelineText__featured\"><span data-ft=\"{"tn":"K"}\" class=\"userContent\">In the Place de la Comédie, there was an accordionist with a very nice, presumably authentic French, Musette accordion. A very French scene.<br /> <br /> This man could not play the Musette if his life depended on it. It made me sad. The twit didn't even TOUCH the bass manual. What an incompetent imbecile.</span></div></div></div></div><div class=\"fbTimelineUFI uiCommentContainer\"><script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function e6ab0ef79bc2c59a966c8cac52a3b07d9cd5f6010(event) {\\u000a return ((window.Event && Event.__inlineSubmit) && Event.__inlineSubmit(this, event));\\u000a};\"), (\"s3a38060f315673e90e4bf6588d73e574017a4419\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function e6ab0ef79bc2c59a966c8cac52a3b07d9cd5f6010(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"s3a38060f315673e90e4bf6588d73e574017a4419_0\"), (s3a38060f315673e90e4bf6588d73e574017a4419_0_instance), (this), (arguments)))\n };\n (null);\n return (((((JSBNG_Record.get)(window, (\"JSBNG__Event\")))[(\"JSBNG__Event\")]) && (((JSBNG_Record.get)(JSBNG__Event, (\"__inlineSubmit\")))[(\"__inlineSubmit\")])) && (((JSBNG_Record.get)(JSBNG__Event, (\"__inlineSubmit\")))[(\"__inlineSubmit\")])(this, JSBNG__event));\n };\n var s3a38060f315673e90e4bf6588d73e574017a4419_0_instance;\n ((s3a38060f315673e90e4bf6588d73e574017a4419_0_instance) = ((JSBNG_Record.eventInstance)((\"s3a38060f315673e90e4bf6588d73e574017a4419_0\"))));\n ((JSBNG_Record.markFunction)((e6ab0ef79bc2c59a966c8cac52a3b07d9cd5f6010)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><form rel=\"async\" class=\"live_10200350995551582_316526391751760 commentable_item autoexpand_mode\" method=\"post\" action=\"/ajax/ufi/modify.php\" data-live=\"{"seq":"10200350995551582_4955918"}\" onsubmit=\"return e6ab0ef79bc2c59a966c8cac52a3b07d9cd5f6010.call(this, event);\" id=\"u_0_1v\"><input type=\"hidden\" name=\"charset_test\" value=\"€,´,€,´,水,Д,Є\" /><input type=\"hidden\" name=\"fb_dtsg\" value=\"AQCttlPQ\" autocomplete=\"off\" /><input type=\"hidden\" autocomplete=\"off\" name=\"feedback_params\" value=\"{"actor":"1055580469","target_fbid":"10200350995551582","target_profile_id":"1055580469","type_id":"22","assoc_obj_id":"","source_app_id":"0","extra_story_params":[],"content_timestamp":"1373055341","check_hash":"AQCBBladrqmNC16S","source":"13"}\" /><input type=\"hidden\" autocomplete=\"off\" name=\"data_only_response\" value=\"1\" /><input type=\"hidden\" autocomplete=\"off\" name=\"timeline_ufi\" value=\"1\" /><input type=\"hidden\" name=\"timeline_log_data\" value=\"AQAL6BzquKdEOsowbM5EApJSTx6t3cX6HciBVTv0b5LrvxxIJCzjrIRDfSJQkmNYNpWRY9gmo4wEeKJRhKK4-l-Zoo7Qh0CHqMJoeS3abWLYVH2-tpPv_e1Dbt9VoF2V6POO7o3hDHFz3c-RSnP8jxUtjwGPFaxac69dWJ7JOEwHvXuJX7DnZtIcQ2c_SQCaqKmp4ImCjp_sSYLsZEsVwMSuvj4Vvum_4gbcfb8NyXWOoohbGwhVMcFZAIew_h7I6wjgKjs2ynj7Yv0m2S2f2gAtU3214N_hc7rKEwpq6HwD2ZXxju5LX2BYY5CMi3boX9ne0xwjcPN_ptGl5Mf9X2Jf5GC7DB11C04H8LqGRB7DoA7BI5mLlEaVU23XihhNJRr3Gr3e8CanKSIyt5LwwdCt\" /><div class=\"fbTimelineFeedbackHeader\"><div class=\"fbTimelineFeedbackActions clearfix\"><span></span><span class=\"UIActionLinks UIActionLinks_bottom\" data-ft=\"{"tn":"=","type":20}\"><button title=\"Like this item\" type=\"submit\" name=\"like\" class=\"like_link stat_elem as_link\" data-ft=\"{"tn":">","type":22}\"><span class=\"default_message\">Like</span><span class=\"saving_message\">Unlike</span></button> · <a class=\"share_action_link\" href=\"/ajax/sharer/?s=22&appid=25554907596&p%5B0%5D=1055580469&p%5B1%5D=10200350995551582&profile_id=1055580469&share_source_type=unknown\" rel=\"dialog\" data-ft=\"{"tn":"J","type":25}\" title=\"Send this to friends or post it on your timeline.\" role=\"button\">Share</a></span></div></div><div><div class=\"uiUfi UFIContainer\" id=\"u_0_1r\"></div></div></form></div><div class=\"-cx-PRIVATE-fbTimelineLightCurationControl__root\"><div class=\"-cx-PRIVATE-uiInlineBlock__root -cx-PRIVATE-uiInlineBlock__middle mtm mrs uiPopover -cx-PRIVATE-fbTimelineLightCloseButton__root lfloat\" id=\"u_0_1l\"><a class=\"-cx-PRIVATE-uiPopover__trigger uiCloseButton\" href=\"#\" role=\"button\" aria-haspopup=\"true\" aria-expanded=\"false\" rel=\"toggle\" title=\"Remove\" id=\"u_0_1m\"></a></div></div></div></div><i class=\"spinePointer\"></i><div class=\"bottomBorder\"></div></li><li class=\"fbTimelineUnit fbTimelineTwoColumn clearfix\" data-side=\"l\" data-fixed=\"1\" data-size=\"1\" id=\"tl_unit_4498726532280095426\"><div class=\"topBorder\"></div><div class=\"timelineUnitContainer\" id=\"u_0_1h\" data-gt=\"{"eventtime":"1373491942","viewerid":"100006118350059","profileownerid":"1055580469","unitimpressionid":"23c8a629","contentid":"4498726532280095426","timeline_unit_type":"StatusMessageUnit","timewindowsize":"3","query_type":"39","contextwindowstart":"0","contextwindowend":"1375340399"}\" data-time=\"1372923465\"><div class=\"\"><div role=\"article\"><div class=\"clearfix mbs pbs -cx-PRIVATE-fbTimelineUnitActor__root\"><a class=\"-cx-PUBLIC-fbTimelineUnitActor__imagewrap -cx-PRIVATE-uiImageBlockDeprecated__image -cx-PRIVATE-uiImageBlockDeprecated__smallimage\" href=\"http://jsbngssl.www.facebook.com/LawlabeeTheWallaby?hc_location=timeline\" data-ft=\"{"tn":"\\\\u003C"}\" tabindex=\"-1\" aria-hidden=\"true\" data-hovercard=\"/ajax/hovercard/user.php?id=1055580469&extragetparams=%7B%22hc_location%22%3A%22timeline%22%7D\"><img class=\"-cx-PRIVATE-fbTimelineUnitActor__image img\" src=\"http://jsbngssl.fbcdn-profile-a.akamaihd.net/hprofile-ak-prn2/276274_1055580469_962040234_q.jpg\" alt=\"\" /></a><div class=\"-cx-PRIVATE-uiImageBlockDeprecated__smallcontent -cx-PRIVATE-uiImageBlockDeprecated__content\"><h5 class=\"-cx-PRIVATE-fbTimelineUnitActor__header\" data-ft=\"{"tn":"C"}\"><span class=\"fcg\"><span class=\"fwb\" data-ft=\"{"tn":";"}\"><a href=\"http://jsbngssl.www.facebook.com/LawlabeeTheWallaby?hc_location=timeline\" data-hovercard=\"/ajax/hovercard/user.php?id=1055580469&extragetparams=%7B%22hc_location%22%3A%22timeline%22%7D\">Gregor Richards</a></span></span> </h5><div class=\"-cx-PRIVATE-fbTimelineUnitActor__timestamp fsm fwn fcg\"><a class=\"uiLinkSubtle\" href=\"/LawlabeeTheWallaby/posts/10200343222477260\"><abbr title=\"Thursday, July 4, 2013 at 3:37am\" data-utime=\"1372934265\">July 4</abbr></a><a data-hover=\"tooltip\" aria-label=\"Public\" class=\"uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator -cx-PRIVATE-fbTimelineUnitActor__privacy\" href=\"#\" role=\"button\"><i class=\"lock img sp_3fr8aa sx_3189ab\"></i></a></div></div></div><div class=\"-cx-PRIVATE-fbTimelineStatusUnit__root\"><div class=\"userContentWrapper\"><div class=\"-cx-PRIVATE-fbTimelineText__featured\"><span data-ft=\"{"tn":"K"}\" class=\"userContent\">This is the second time I've been in France on American Independence Day...</span></div></div></div></div><div class=\"fbTimelineUFI uiCommentContainer\"><script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function ed0c4f9a9badafa0845fabe4bc83aa09c16e36ee0(event) {\\u000a return ((window.Event && Event.__inlineSubmit) && Event.__inlineSubmit(this, event));\\u000a};\"), (\"s8717ee975af0206ac7bf6a28c5c8027d7411c13d\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function ed0c4f9a9badafa0845fabe4bc83aa09c16e36ee0(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"s8717ee975af0206ac7bf6a28c5c8027d7411c13d_0\"), (s8717ee975af0206ac7bf6a28c5c8027d7411c13d_0_instance), (this), (arguments)))\n };\n (null);\n return (((((JSBNG_Record.get)(window, (\"JSBNG__Event\")))[(\"JSBNG__Event\")]) && (((JSBNG_Record.get)(JSBNG__Event, (\"__inlineSubmit\")))[(\"__inlineSubmit\")])) && (((JSBNG_Record.get)(JSBNG__Event, (\"__inlineSubmit\")))[(\"__inlineSubmit\")])(this, JSBNG__event));\n };\n var s8717ee975af0206ac7bf6a28c5c8027d7411c13d_0_instance;\n ((s8717ee975af0206ac7bf6a28c5c8027d7411c13d_0_instance) = ((JSBNG_Record.eventInstance)((\"s8717ee975af0206ac7bf6a28c5c8027d7411c13d_0\"))));\n ((JSBNG_Record.markFunction)((ed0c4f9a9badafa0845fabe4bc83aa09c16e36ee0)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><form rel=\"async\" class=\"live_10200343222477260_316526391751760 commentable_item autoexpand_mode\" method=\"post\" action=\"/ajax/ufi/modify.php\" data-live=\"{"seq":"10200343222477260_4950571"}\" onsubmit=\"return ed0c4f9a9badafa0845fabe4bc83aa09c16e36ee0.call(this, event);\" id=\"u_0_1w\"><input type=\"hidden\" name=\"charset_test\" value=\"€,´,€,´,水,Д,Є\" /><input type=\"hidden\" name=\"fb_dtsg\" value=\"AQCttlPQ\" autocomplete=\"off\" /><input type=\"hidden\" autocomplete=\"off\" name=\"feedback_params\" value=\"{"actor":"1055580469","target_fbid":"10200343222477260","target_profile_id":"1055580469","type_id":"22","assoc_obj_id":"","source_app_id":"0","extra_story_params":[],"content_timestamp":"1372923465","check_hash":"AQA0MfY19rbYGyj6","source":"13"}\" /><input type=\"hidden\" autocomplete=\"off\" name=\"data_only_response\" value=\"1\" /><input type=\"hidden\" autocomplete=\"off\" name=\"timeline_ufi\" value=\"1\" /><input type=\"hidden\" name=\"timeline_log_data\" value=\"AQC1ajTXRDAv2wZzRUQ-G1KuB_j2Ydk0o99-s0DfIrW3cEC8EBlrci94wT46S1ENWJhhyDAhp4bST94TloNAKLx6tdfZIWHfu8RmsxRdWGcByUX-EIwNoPoeRR-sY3mXdJ72ams13WH-zUj60bdWPnFRXyEpNMCR7ciJ4z8AMbiDbKhfut2t2Vn4Jki69lK6ZsFw-T6sYVNa6Lj-UF9TJSdnScEziwiE6YdI6DC-PoCxGCC_Ntu7LtFa7kJuLcOgBliX_FkGFVu6PR-g-ixwHMHYpI7c7FHuNsOlZFQaX2zoBMffqwMrQhRkgLzltSL3nEQjBX3KSM_AMm64tnSMj0iXWK_Zux1sXie2Ml8Z8jCPS3K6CDSBwo3MKgs2LUD_UJecJAlv7ZspNwT9YGc6MVlE\" /><div class=\"fbTimelineFeedbackHeader\"><div class=\"fbTimelineFeedbackActions clearfix\"><span></span><span class=\"UIActionLinks UIActionLinks_bottom\" data-ft=\"{"tn":"=","type":20}\"><button title=\"Like this item\" type=\"submit\" name=\"like\" class=\"like_link stat_elem as_link\" data-ft=\"{"tn":">","type":22}\"><span class=\"default_message\">Like</span><span class=\"saving_message\">Unlike</span></button> · <a class=\"share_action_link\" href=\"/ajax/sharer/?s=22&appid=25554907596&p%5B0%5D=1055580469&p%5B1%5D=10200343222477260&profile_id=1055580469&share_source_type=unknown\" rel=\"dialog\" data-ft=\"{"tn":"J","type":25}\" title=\"Send this to friends or post it on your timeline.\" role=\"button\">Share</a></span></div></div><div><div class=\"uiUfi UFIContainer\" id=\"u_0_1u\"></div></div></form></div><div class=\"-cx-PRIVATE-fbTimelineLightCurationControl__root\"><div class=\"-cx-PRIVATE-uiInlineBlock__root -cx-PRIVATE-uiInlineBlock__middle mtm mrs uiPopover -cx-PRIVATE-fbTimelineLightCloseButton__root lfloat\" id=\"u_0_1i\"><a class=\"-cx-PRIVATE-uiPopover__trigger uiCloseButton\" href=\"#\" role=\"button\" aria-haspopup=\"true\" aria-expanded=\"false\" rel=\"toggle\" title=\"Remove\" id=\"u_0_1j\"></a></div></div></div></div><i class=\"spinePointer\"></i><div class=\"bottomBorder\"></div></li><li class=\"fbTimelineUnit fbTimelineTwoColumn clearfix\" data-side=\"l\" data-fixed=\"1\" data-size=\"1\" id=\"tl_unit_-6185676099150237519\"><div class=\"topBorder\"></div><div class=\"timelineUnitContainer\" id=\"u_0_1e\" data-gt=\"{"eventtime":"1373491942","viewerid":"100006118350059","profileownerid":"1055580469","unitimpressionid":"23c8a629","contentid":"-6185676099150237519","timeline_unit_type":"BestPostedLinkUnit","timewindowsize":"3","query_type":"39","contextwindowstart":"0","contextwindowend":"1375340399"}\" data-time=\"1372627013\"><div class=\"\"><div role=\"article\"><div class=\"clearfix mbs pbs -cx-PRIVATE-fbTimelineUnitActor__root\"><a class=\"-cx-PUBLIC-fbTimelineUnitActor__imagewrap -cx-PRIVATE-uiImageBlockDeprecated__image -cx-PRIVATE-uiImageBlockDeprecated__smallimage\" href=\"http://jsbngssl.www.facebook.com/LawlabeeTheWallaby?hc_location=timeline\" data-ft=\"{"tn":"\\\\u003C"}\" tabindex=\"-1\" aria-hidden=\"true\" data-hovercard=\"/ajax/hovercard/user.php?id=1055580469&extragetparams=%7B%22hc_location%22%3A%22timeline%22%7D\"><img class=\"-cx-PRIVATE-fbTimelineUnitActor__image img\" src=\"http://jsbngssl.fbcdn-profile-a.akamaihd.net/hprofile-ak-prn2/276274_1055580469_962040234_q.jpg\" alt=\"\" /></a><div class=\"-cx-PRIVATE-uiImageBlockDeprecated__smallcontent -cx-PRIVATE-uiImageBlockDeprecated__content\"><h5 class=\"-cx-PRIVATE-fbTimelineUnitActor__header\" data-ft=\"{"tn":"C"}\"><span class=\"fcg\"><span class=\"fwb\"><a href=\"http://jsbngssl.www.facebook.com/LawlabeeTheWallaby\" data-hovercard=\"/ajax/hovercard/user.php?id=1055580469\">Gregor Richards</a></span> shared a <script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function ebfd69ee22627690bc1f7772e620a44d1ac8e09e0(event) {\\u000a LinkshimAsyncLink.swap(this, \\\"https:\\\\\\\\/\\\\\\\\/www.youtube.com\\\\\\\\/watch?v=GWZ0pN_T9AA\\\");\\u000a};\"), (\"s6090eddf34bf022e9915eaecba52739d7b44a34e\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function ebfd69ee22627690bc1f7772e620a44d1ac8e09e0(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"s6090eddf34bf022e9915eaecba52739d7b44a34e_0\"), (s6090eddf34bf022e9915eaecba52739d7b44a34e_0_instance), (this), (arguments)))\n };\n (null);\n (((JSBNG_Record.get)(LinkshimAsyncLink, (\"swap\")))[(\"swap\")])(this, \"https:\\\\/\\\\/www.youtube.com\\\\/watch?v=GWZ0pN_T9AA\");\n };\n var s6090eddf34bf022e9915eaecba52739d7b44a34e_0_instance;\n ((s6090eddf34bf022e9915eaecba52739d7b44a34e_0_instance) = ((JSBNG_Record.eventInstance)((\"s6090eddf34bf022e9915eaecba52739d7b44a34e_0\"))));\n ((JSBNG_Record.markFunction)((ebfd69ee22627690bc1f7772e620a44d1ac8e09e0)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function e96c9509d0e047acad6912da6507c0b47b2d84665(event) {\\u000a LinkshimAsyncLink.referrer_log(this, \\\"https:\\\\\\\\/\\\\\\\\/www.youtube.com\\\\\\\\/watch?v=GWZ0pN_T9AA\\\", \\\"https:\\\\\\\\/\\\\\\\\/www.facebook.com\\\\\\\\/si\\\\\\\\/ajax\\\\\\\\/l\\\\\\\\/render_linkshim_log\\\\\\\\/?u=https\\\\\\\\u00253A\\\\\\\\u00252F\\\\\\\\u00252Fwww.youtube.com\\\\\\\\u00252Fwatch\\\\\\\\u00253Fv\\\\\\\\u00253DGWZ0pN_T9AA&h=ZAQHk7a_HAQHmg__7E-hB4OVBt1kcRWOT9wqa79rS3dim1g&enc=AZNgKXh0PrzLcUPEdysmKm59c6iVLjuqp4nc-Co4NqVgUbeWL5SYqNTn5AdWuRAkPuKxm3XQd5buwDu3tenV3de3&s=1\\\");\\u000a};\"), (\"sfb17860fe0cb3dd3cb1c4998a94dea9ad3df297b\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function e96c9509d0e047acad6912da6507c0b47b2d84665(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"sfb17860fe0cb3dd3cb1c4998a94dea9ad3df297b_0\"), (sfb17860fe0cb3dd3cb1c4998a94dea9ad3df297b_0_instance), (this), (arguments)))\n };\n (null);\n (((JSBNG_Record.get)(LinkshimAsyncLink, (\"referrer_log\")))[(\"referrer_log\")])(this, \"https:\\\\/\\\\/www.youtube.com\\\\/watch?v=GWZ0pN_T9AA\", \"https:\\\\/\\\\/www.facebook.com\\\\/si\\\\/ajax\\\\/l\\\\/render_linkshim_log\\\\/?u=https\\\\u00253A\\\\u00252F\\\\u00252Fwww.youtube.com\\\\u00252Fwatch\\\\u00253Fv\\\\u00253DGWZ0pN_T9AA&h=ZAQHk7a_HAQHmg__7E-hB4OVBt1kcRWOT9wqa79rS3dim1g&enc=AZNgKXh0PrzLcUPEdysmKm59c6iVLjuqp4nc-Co4NqVgUbeWL5SYqNTn5AdWuRAkPuKxm3XQd5buwDu3tenV3de3&s=1\");\n };\n var sfb17860fe0cb3dd3cb1c4998a94dea9ad3df297b_0_instance;\n ((sfb17860fe0cb3dd3cb1c4998a94dea9ad3df297b_0_instance) = ((JSBNG_Record.eventInstance)((\"sfb17860fe0cb3dd3cb1c4998a94dea9ad3df297b_0\"))));\n ((JSBNG_Record.markFunction)((e96c9509d0e047acad6912da6507c0b47b2d84665)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><a href=\"http://www.facebook.com/l.php?u=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DGWZ0pN_T9AA&h=ZAQHk7a_HAQHmg__7E-hB4OVBt1kcRWOT9wqa79rS3dim1g&enc=AZNgKXh0PrzLcUPEdysmKm59c6iVLjuqp4nc-Co4NqVgUbeWL5SYqNTn5AdWuRAkPuKxm3XQd5buwDu3tenV3de3&s=1\" rel=\"nofollow\" onmouseover=\"return ebfd69ee22627690bc1f7772e620a44d1ac8e09e0.call(this, event);\" onclick=\"return e96c9509d0e047acad6912da6507c0b47b2d84665.call(this, event);\" target=\"_blank\">link</a>.</span> </h5><div class=\"-cx-PRIVATE-fbTimelineUnitActor__timestamp fsm fwn fcg\"><a class=\"uiLinkSubtle\" href=\"/LawlabeeTheWallaby/posts/10200325012062011\"><abbr title=\"Sunday, June 30, 2013 at 5:16pm\" data-utime=\"1372637813\">June 30</abbr></a><a data-hover=\"tooltip\" aria-label=\"Public\" class=\"uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator -cx-PRIVATE-fbTimelineUnitActor__privacy\" href=\"#\" role=\"button\"><i class=\"lock img sp_3fr8aa sx_3189ab\"></i></a></div></div></div><div class=\"userContentWrapper aboveUnitContent\" data-ft=\"{"tn":"K"}\"><div class=\"-cx-PRIVATE-fbTimelineText__featured mbm\"><span class=\"userContent\">OK everyone who wants me to talk more about travel, I made a travel vlog JUST FOR YOU: <script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function ec9fb5d88126fe2671bda92d81eda27246989550c(event) {\\u000a LinkshimAsyncLink.swap(this, \\\"https:\\\\\\\\/\\\\\\\\/www.youtube.com\\\\\\\\/watch?v=GWZ0pN_T9AA\\\");\\u000a};\"), (\"s2dd564bb3ba3beaf51c79be8cae04ee32b4065d4\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function ec9fb5d88126fe2671bda92d81eda27246989550c(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"s2dd564bb3ba3beaf51c79be8cae04ee32b4065d4_0\"), (s2dd564bb3ba3beaf51c79be8cae04ee32b4065d4_0_instance), (this), (arguments)))\n };\n (null);\n (((JSBNG_Record.get)(LinkshimAsyncLink, (\"swap\")))[(\"swap\")])(this, \"https:\\\\/\\\\/www.youtube.com\\\\/watch?v=GWZ0pN_T9AA\");\n };\n var s2dd564bb3ba3beaf51c79be8cae04ee32b4065d4_0_instance;\n ((s2dd564bb3ba3beaf51c79be8cae04ee32b4065d4_0_instance) = ((JSBNG_Record.eventInstance)((\"s2dd564bb3ba3beaf51c79be8cae04ee32b4065d4_0\"))));\n ((JSBNG_Record.markFunction)((ec9fb5d88126fe2671bda92d81eda27246989550c)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function e0e6b22055c41334741397157b9f310d7a09279ae(event) {\\u000a LinkshimAsyncLink.referrer_log(this, \\\"https:\\\\\\\\/\\\\\\\\/www.youtube.com\\\\\\\\/watch?v=GWZ0pN_T9AA\\\", \\\"https:\\\\\\\\/\\\\\\\\/www.facebook.com\\\\\\\\/si\\\\\\\\/ajax\\\\\\\\/l\\\\\\\\/render_linkshim_log\\\\\\\\/?u=https\\\\\\\\u00253A\\\\\\\\u00252F\\\\\\\\u00252Fwww.youtube.com\\\\\\\\u00252Fwatch\\\\\\\\u00253Fv\\\\\\\\u00253DGWZ0pN_T9AA&h=cAQGbNaRw&s=1\\\");\\u000a};\"), (\"sc95353c32f8e9e9e24b5a327276cbe0379e2cc71\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function e0e6b22055c41334741397157b9f310d7a09279ae(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"sc95353c32f8e9e9e24b5a327276cbe0379e2cc71_0\"), (sc95353c32f8e9e9e24b5a327276cbe0379e2cc71_0_instance), (this), (arguments)))\n };\n (null);\n (((JSBNG_Record.get)(LinkshimAsyncLink, (\"referrer_log\")))[(\"referrer_log\")])(this, \"https:\\\\/\\\\/www.youtube.com\\\\/watch?v=GWZ0pN_T9AA\", \"https:\\\\/\\\\/www.facebook.com\\\\/si\\\\/ajax\\\\/l\\\\/render_linkshim_log\\\\/?u=https\\\\u00253A\\\\u00252F\\\\u00252Fwww.youtube.com\\\\u00252Fwatch\\\\u00253Fv\\\\u00253DGWZ0pN_T9AA&h=cAQGbNaRw&s=1\");\n };\n var sc95353c32f8e9e9e24b5a327276cbe0379e2cc71_0_instance;\n ((sc95353c32f8e9e9e24b5a327276cbe0379e2cc71_0_instance) = ((JSBNG_Record.eventInstance)((\"sc95353c32f8e9e9e24b5a327276cbe0379e2cc71_0\"))));\n ((JSBNG_Record.markFunction)((e0e6b22055c41334741397157b9f310d7a09279ae)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><a href=\"http://www.facebook.com/l.php?u=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DGWZ0pN_T9AA&h=cAQGbNaRw&s=1\" rel=\"nofollow nofollow\" onmouseover=\"return ec9fb5d88126fe2671bda92d81eda27246989550c.call(this, event);\" onclick=\"return e0e6b22055c41334741397157b9f310d7a09279ae.call(this, event);\" target=\"_blank\">http://jsbngssl.www.youtube.com/watch?v=GWZ0pN_T9AA</a></span></div></div><div class=\"shareUnit\"><div class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__wrapper\"><div><div class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__root shareLink -cx-PRIVATE-fbTimelineExternalShareUnit__hasimage\"><script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function e89084e7a3517e8678024fec7869e857c8adb123e(event) {\\u000a CSS.addClass(this, \\\"-cx-PRIVATE-fbTimelineExternalShareUnit__loading\\\");\\u000a CSS.removeClass(this, \\\"-cx-PRIVATE-fbTimelineExternalShareUnit__video\\\");\\u000a};\"), (\"s443d0052684fc06fb97e128c4c09efdbcc1c62cb\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function e89084e7a3517e8678024fec7869e857c8adb123e(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"s443d0052684fc06fb97e128c4c09efdbcc1c62cb_0\"), (s443d0052684fc06fb97e128c4c09efdbcc1c62cb_0_instance), (this), (arguments)))\n };\n (null);\n (((JSBNG_Record.get)(CSS, (\"addClass\")))[(\"addClass\")])(this, \"-cx-PRIVATE-fbTimelineExternalShareUnit__loading\");\n (((JSBNG_Record.get)(CSS, (\"removeClass\")))[(\"removeClass\")])(this, \"-cx-PRIVATE-fbTimelineExternalShareUnit__video\");\n };\n var s443d0052684fc06fb97e128c4c09efdbcc1c62cb_0_instance;\n ((s443d0052684fc06fb97e128c4c09efdbcc1c62cb_0_instance) = ((JSBNG_Record.eventInstance)((\"s443d0052684fc06fb97e128c4c09efdbcc1c62cb_0\"))));\n ((JSBNG_Record.markFunction)((e89084e7a3517e8678024fec7869e857c8adb123e)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><a class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__video -cx-PRIVATE-fbTimelineExternalShareUnit__image -cx-PRIVATE-fbTimelineExternalShareUnit__content\" ajaxify=\"/ajax/flash/expand_inline.php?target_div=u_0_1d&share_id=10200325012062011&max_width=504&max_height=378&context=timelineOC\" rel=\"async\" href=\"#\" onclick=\"return e89084e7a3517e8678024fec7869e857c8adb123e.call(this, event);\" role=\"button\"><i class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__play\"></i><img class=\"-cx-PRIVATE-uiExternalImage__image img\" src=\"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y4/r/-PAXP-deijE.gif\" alt=\"\" height=\"116\" width=\"116\" style=\"background-image: url(http://jsbngssl.fbexternal-a.akamaihd.net/safe_image.php?d=AQBNVc6yXNVNFDHH&w=116&h=116&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FGWZ0pN_T9AA%2Fmaxresdefault.jpg%3Ffeature%3Dog&cfs=1);\" /></a><script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function e54e3657f3071a09b7950362fe5231c265dbfab76(event) {\\u000a LinkshimAsyncLink.swap(this, \\\"https:\\\\\\\\/\\\\\\\\/www.youtube.com\\\\\\\\/watch?v=GWZ0pN_T9AA\\\");\\u000a};\"), (\"sa35bae7a665a2340b491023aedc360a01dcb953f\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function e54e3657f3071a09b7950362fe5231c265dbfab76(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"sa35bae7a665a2340b491023aedc360a01dcb953f_0\"), (sa35bae7a665a2340b491023aedc360a01dcb953f_0_instance), (this), (arguments)))\n };\n (null);\n (((JSBNG_Record.get)(LinkshimAsyncLink, (\"swap\")))[(\"swap\")])(this, \"https:\\\\/\\\\/www.youtube.com\\\\/watch?v=GWZ0pN_T9AA\");\n };\n var sa35bae7a665a2340b491023aedc360a01dcb953f_0_instance;\n ((sa35bae7a665a2340b491023aedc360a01dcb953f_0_instance) = ((JSBNG_Record.eventInstance)((\"sa35bae7a665a2340b491023aedc360a01dcb953f_0\"))));\n ((JSBNG_Record.markFunction)((e54e3657f3071a09b7950362fe5231c265dbfab76)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function ef1bbe94dba3ff786f9dd593adac6bef8374dbcf3(event) {\\u000a LinkshimAsyncLink.referrer_log(this, \\\"https:\\\\\\\\/\\\\\\\\/www.youtube.com\\\\\\\\/watch?v=GWZ0pN_T9AA\\\", \\\"https:\\\\\\\\/\\\\\\\\/www.facebook.com\\\\\\\\/si\\\\\\\\/ajax\\\\\\\\/l\\\\\\\\/render_linkshim_log\\\\\\\\/?u=https\\\\\\\\u00253A\\\\\\\\u00252F\\\\\\\\u00252Fwww.youtube.com\\\\\\\\u00252Fwatch\\\\\\\\u00253Fv\\\\\\\\u00253DGWZ0pN_T9AA&h=GAQHBfoWSAQFV99ui-LWPQRq8Oe_04wFDlJ6FjuPhT5gpxg&enc=AZOJUPS21MjhODClWdk8-QBDMefIA5UCSnGR6xXHE0NFKTplvqErRcB-4QeDrTWshviGI9z5QAjlLksCECMikurY&s=1\\\");\\u000a};\"), (\"s9641cf74c8ec91adfa7c4d28f11c632c7ef4d566\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function ef1bbe94dba3ff786f9dd593adac6bef8374dbcf3(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"s9641cf74c8ec91adfa7c4d28f11c632c7ef4d566_0\"), (s9641cf74c8ec91adfa7c4d28f11c632c7ef4d566_0_instance), (this), (arguments)))\n };\n (null);\n (((JSBNG_Record.get)(LinkshimAsyncLink, (\"referrer_log\")))[(\"referrer_log\")])(this, \"https:\\\\/\\\\/www.youtube.com\\\\/watch?v=GWZ0pN_T9AA\", \"https:\\\\/\\\\/www.facebook.com\\\\/si\\\\/ajax\\\\/l\\\\/render_linkshim_log\\\\/?u=https\\\\u00253A\\\\u00252F\\\\u00252Fwww.youtube.com\\\\u00252Fwatch\\\\u00253Fv\\\\u00253DGWZ0pN_T9AA&h=GAQHBfoWSAQFV99ui-LWPQRq8Oe_04wFDlJ6FjuPhT5gpxg&enc=AZOJUPS21MjhODClWdk8-QBDMefIA5UCSnGR6xXHE0NFKTplvqErRcB-4QeDrTWshviGI9z5QAjlLksCECMikurY&s=1\");\n };\n var s9641cf74c8ec91adfa7c4d28f11c632c7ef4d566_0_instance;\n ((s9641cf74c8ec91adfa7c4d28f11c632c7ef4d566_0_instance) = ((JSBNG_Record.eventInstance)((\"s9641cf74c8ec91adfa7c4d28f11c632c7ef4d566_0\"))));\n ((JSBNG_Record.markFunction)((ef1bbe94dba3ff786f9dd593adac6bef8374dbcf3)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><a class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__content -cx-PRIVATE-fbTimelineExternalShareUnit__textwrapper\" href=\"http://www.facebook.com/l.php?u=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DGWZ0pN_T9AA&h=GAQHBfoWSAQFV99ui-LWPQRq8Oe_04wFDlJ6FjuPhT5gpxg&enc=AZOJUPS21MjhODClWdk8-QBDMefIA5UCSnGR6xXHE0NFKTplvqErRcB-4QeDrTWshviGI9z5QAjlLksCECMikurY&s=1\" target=\"_blank\" rel=\"nofollow\" onmouseover=\"return e54e3657f3071a09b7950362fe5231c265dbfab76.call(this, event);\" onclick=\"return ef1bbe94dba3ff786f9dd593adac6bef8374dbcf3.call(this, event);\"><div class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__text\"><div class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__itemlink fwb\" dir=\"ltr\">My first travel vlog!</div><div class=\"fsm fwn fcg\">www.youtube.com</div><div class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__previewtext fsm fwn fcg\" dir=\"ltr\">I hope you enjoy my first travel vlog RATE COMMENT SHARE SUBSCRIBE WORSHIP</div></div></a></div></div></div></div></div><div class=\"fbTimelineUFI uiCommentContainer\"><script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function e69cfae81ca475473c88864a78d73d448dfd55225(event) {\\u000a return ((window.Event && Event.__inlineSubmit) && Event.__inlineSubmit(this, event));\\u000a};\"), (\"s9bc11910d3b6467064ecd742e56dc3ae759328b8\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function e69cfae81ca475473c88864a78d73d448dfd55225(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"s9bc11910d3b6467064ecd742e56dc3ae759328b8_0\"), (s9bc11910d3b6467064ecd742e56dc3ae759328b8_0_instance), (this), (arguments)))\n };\n (null);\n return (((((JSBNG_Record.get)(window, (\"JSBNG__Event\")))[(\"JSBNG__Event\")]) && (((JSBNG_Record.get)(JSBNG__Event, (\"__inlineSubmit\")))[(\"__inlineSubmit\")])) && (((JSBNG_Record.get)(JSBNG__Event, (\"__inlineSubmit\")))[(\"__inlineSubmit\")])(this, JSBNG__event));\n };\n var s9bc11910d3b6467064ecd742e56dc3ae759328b8_0_instance;\n ((s9bc11910d3b6467064ecd742e56dc3ae759328b8_0_instance) = ((JSBNG_Record.eventInstance)((\"s9bc11910d3b6467064ecd742e56dc3ae759328b8_0\"))));\n ((JSBNG_Record.markFunction)((e69cfae81ca475473c88864a78d73d448dfd55225)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><form rel=\"async\" class=\"live_10200325012062011_316526391751760 commentable_item autoexpand_mode\" method=\"post\" action=\"/ajax/ufi/modify.php\" data-live=\"{"seq":0}\" onsubmit=\"return e69cfae81ca475473c88864a78d73d448dfd55225.call(this, event);\" id=\"u_0_1x\"><input type=\"hidden\" name=\"charset_test\" value=\"€,´,€,´,水,Д,Є\" /><input type=\"hidden\" name=\"fb_dtsg\" value=\"AQCttlPQ\" autocomplete=\"off\" /><input type=\"hidden\" autocomplete=\"off\" name=\"feedback_params\" value=\"{"actor":"1055580469","target_fbid":"10200325012062011","target_profile_id":"1055580469","type_id":"17","assoc_obj_id":"","source_app_id":"0","extra_story_params":[],"content_timestamp":"1372627013","check_hash":"AQCDUFoJLtB65-Ke","source":"13"}\" /><input type=\"hidden\" autocomplete=\"off\" name=\"data_only_response\" value=\"1\" /><input type=\"hidden\" autocomplete=\"off\" name=\"timeline_ufi\" value=\"1\" /><input type=\"hidden\" name=\"timeline_log_data\" value=\"AQACFgRImnzTiCidDckAnsXMzyyCTp2xlEkdxtLDdjHBxnem9BliGg5LEnDunnxvmLZ3fMMKmsD9ygBkRtmsP85o7-LYCuNIPaMahgk_-xIrgFtyL9LKNnaZOTTudzDfOens6YeAmPC3QnUyvB9IFKVci93BAZKWzKC4DehohxvbuKn4zcIyhG59kU5yOHk03PO-Ue-AKD7ZnJCSIAIhhmY4Y5d6S202CjqJdFJJaP_Y4tzOOgekKxAKONhL4W0mrsdASIKsmRQiuj-3UIAJSOvDnyAjBoy0RSsF1zLIfRPWpsBvEpJd7WDG4iCUccj0Lfglb3yuGtH1Om1AGO6fAJTHLuCvnR7BpptYndMLrEkD9JxBA2kaJHmCzYiTqHSEHHe8sKqwiBEgruorRn6UD6iKpV5vptKAUqIESRSKWUJqNQ\" /><div class=\"fbTimelineFeedbackHeader\"><div class=\"fbTimelineFeedbackActions clearfix\"><span></span><span class=\"UIActionLinks UIActionLinks_bottom\" data-ft=\"{"tn":"=","type":20}\"><button title=\"Like this item\" type=\"submit\" name=\"like\" class=\"like_link stat_elem as_link\" data-ft=\"{"tn":">","type":22}\"><span class=\"default_message\">Like</span><span class=\"saving_message\">Unlike</span></button> · <a class=\"share_action_link\" href=\"/ajax/sharer/?s=99&appid=2309869772&p%5B0%5D=1055580469&p%5B1%5D=10200325012062011&profile_id=1055580469&share_source_type=unknown\" rel=\"dialog\" data-ft=\"{"tn":"J","type":25}\" title=\"Send this to friends or post it on your timeline.\" role=\"button\">Share</a></span></div></div><div><div class=\"uiUfi UFIContainer\" id=\"u_0_1s\"></div></div></form></div><div class=\"-cx-PRIVATE-fbTimelineLightCurationControl__root\"><div class=\"-cx-PRIVATE-uiInlineBlock__root -cx-PRIVATE-uiInlineBlock__middle mtm mrs uiPopover -cx-PRIVATE-fbTimelineLightCloseButton__root lfloat\" id=\"u_0_1f\"><a class=\"-cx-PRIVATE-uiPopover__trigger uiCloseButton\" href=\"#\" role=\"button\" aria-haspopup=\"true\" aria-expanded=\"false\" rel=\"toggle\" title=\"Remove\" id=\"u_0_1g\"></a></div></div></div></div><i class=\"spinePointer\"></i><div class=\"bottomBorder\"></div></li><li class=\"fbTimelineUnit fbTimelineTwoColumn clearfix\" data-side=\"l\" data-fixed=\"1\" data-size=\"1\" id=\"tl_unit_3857418892059122853\"><div class=\"topBorder\"></div><div class=\"timelineUnitContainer\" id=\"u_0_1a\" data-gt=\"{"eventtime":"1373491942","viewerid":"100006118350059","profileownerid":"1055580469","unitimpressionid":"23c8a629","contentid":"3857418892059122853","timeline_unit_type":"BestPostedLinkUnit","timewindowsize":"3","query_type":"39","contextwindowstart":"0","contextwindowend":"1375340399"}\" data-time=\"1372262734\"><div class=\"\"><div role=\"article\"><div class=\"clearfix mbs pbs -cx-PRIVATE-fbTimelineUnitActor__root\"><a class=\"-cx-PUBLIC-fbTimelineUnitActor__imagewrap -cx-PRIVATE-uiImageBlockDeprecated__image -cx-PRIVATE-uiImageBlockDeprecated__smallimage\" href=\"http://jsbngssl.www.facebook.com/LawlabeeTheWallaby?hc_location=timeline\" data-ft=\"{"tn":"\\\\u003C"}\" tabindex=\"-1\" aria-hidden=\"true\" data-hovercard=\"/ajax/hovercard/user.php?id=1055580469&extragetparams=%7B%22hc_location%22%3A%22timeline%22%7D\"><img class=\"-cx-PRIVATE-fbTimelineUnitActor__image img\" src=\"http://jsbngssl.fbcdn-profile-a.akamaihd.net/hprofile-ak-prn2/276274_1055580469_962040234_q.jpg\" alt=\"\" /></a><div class=\"-cx-PRIVATE-uiImageBlockDeprecated__smallcontent -cx-PRIVATE-uiImageBlockDeprecated__content\"><h5 class=\"-cx-PRIVATE-fbTimelineUnitActor__header\" data-ft=\"{"tn":"C"}\"><span class=\"fcg\"><span class=\"fwb\"><a href=\"http://jsbngssl.www.facebook.com/LawlabeeTheWallaby\" data-hovercard=\"/ajax/hovercard/user.php?id=1055580469\">Gregor Richards</a></span> shared a <script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function e2f9c02801bf68a83e0948bcb6e67499eebde044d(event) {\\u000a LinkshimAsyncLink.swap(this, \\\"http:\\\\\\\\/\\\\\\\\/www.youtube.com\\\\\\\\/watch?v=i6cb0ggl8bQ&feature=share\\\");\\u000a};\"), (\"s8b960e8363cbc6022ffb2e3f4bab262eb4d5de2f\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function e2f9c02801bf68a83e0948bcb6e67499eebde044d(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"s8b960e8363cbc6022ffb2e3f4bab262eb4d5de2f_0\"), (s8b960e8363cbc6022ffb2e3f4bab262eb4d5de2f_0_instance), (this), (arguments)))\n };\n (null);\n (((JSBNG_Record.get)(LinkshimAsyncLink, (\"swap\")))[(\"swap\")])(this, \"http:\\\\/\\\\/www.youtube.com\\\\/watch?v=i6cb0ggl8bQ&feature=share\");\n };\n var s8b960e8363cbc6022ffb2e3f4bab262eb4d5de2f_0_instance;\n ((s8b960e8363cbc6022ffb2e3f4bab262eb4d5de2f_0_instance) = ((JSBNG_Record.eventInstance)((\"s8b960e8363cbc6022ffb2e3f4bab262eb4d5de2f_0\"))));\n ((JSBNG_Record.markFunction)((e2f9c02801bf68a83e0948bcb6e67499eebde044d)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function e6866db5eb3ead42effdd00e6a75c33709e4eabd5(event) {\\u000a LinkshimAsyncLink.referrer_log(this, \\\"http:\\\\\\\\/\\\\\\\\/www.youtube.com\\\\\\\\/watch?v=i6cb0ggl8bQ&feature=share\\\", \\\"https:\\\\\\\\/\\\\\\\\/www.facebook.com\\\\\\\\/si\\\\\\\\/ajax\\\\\\\\/l\\\\\\\\/render_linkshim_log\\\\\\\\/?u=http\\\\\\\\u00253A\\\\\\\\u00252F\\\\\\\\u00252Fwww.youtube.com\\\\\\\\u00252Fwatch\\\\\\\\u00253Fv\\\\\\\\u00253Di6cb0ggl8bQ\\\\\\\\u002526feature\\\\\\\\u00253Dshare&h=VAQEr7B7BAQHs7983YyXmXQCnT8EvhMZew8WxR9Z12BzI0A&enc=AZMpiQRxefwDdxZgdOAXpe6JNXrgpzqHcELLwbAD-qVRo_f494wBi85zAUob-RXVHmMzlt2IDZTeh_XX1XtOZkuD&s=1\\\");\\u000a};\"), (\"s8130875b141336d822719e55a942028ac44c581d\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function e6866db5eb3ead42effdd00e6a75c33709e4eabd5(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"s8130875b141336d822719e55a942028ac44c581d_0\"), (s8130875b141336d822719e55a942028ac44c581d_0_instance), (this), (arguments)))\n };\n (null);\n (((JSBNG_Record.get)(LinkshimAsyncLink, (\"referrer_log\")))[(\"referrer_log\")])(this, \"http:\\\\/\\\\/www.youtube.com\\\\/watch?v=i6cb0ggl8bQ&feature=share\", \"https:\\\\/\\\\/www.facebook.com\\\\/si\\\\/ajax\\\\/l\\\\/render_linkshim_log\\\\/?u=http\\\\u00253A\\\\u00252F\\\\u00252Fwww.youtube.com\\\\u00252Fwatch\\\\u00253Fv\\\\u00253Di6cb0ggl8bQ\\\\u002526feature\\\\u00253Dshare&h=VAQEr7B7BAQHs7983YyXmXQCnT8EvhMZew8WxR9Z12BzI0A&enc=AZMpiQRxefwDdxZgdOAXpe6JNXrgpzqHcELLwbAD-qVRo_f494wBi85zAUob-RXVHmMzlt2IDZTeh_XX1XtOZkuD&s=1\");\n };\n var s8130875b141336d822719e55a942028ac44c581d_0_instance;\n ((s8130875b141336d822719e55a942028ac44c581d_0_instance) = ((JSBNG_Record.eventInstance)((\"s8130875b141336d822719e55a942028ac44c581d_0\"))));\n ((JSBNG_Record.markFunction)((e6866db5eb3ead42effdd00e6a75c33709e4eabd5)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><a href=\"http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Di6cb0ggl8bQ%26feature%3Dshare&h=VAQEr7B7BAQHs7983YyXmXQCnT8EvhMZew8WxR9Z12BzI0A&enc=AZMpiQRxefwDdxZgdOAXpe6JNXrgpzqHcELLwbAD-qVRo_f494wBi85zAUob-RXVHmMzlt2IDZTeh_XX1XtOZkuD&s=1\" rel=\"nofollow\" onmouseover=\"return e2f9c02801bf68a83e0948bcb6e67499eebde044d.call(this, event);\" onclick=\"return e6866db5eb3ead42effdd00e6a75c33709e4eabd5.call(this, event);\" target=\"_blank\">link</a>.</span> </h5><div class=\"-cx-PRIVATE-fbTimelineUnitActor__timestamp fsm fwn fcg\"><a class=\"uiLinkSubtle\" href=\"/LawlabeeTheWallaby/posts/10200303357400658\"><abbr title=\"Wednesday, June 26, 2013 at 12:05pm\" data-utime=\"1372273534\">June 26</abbr></a><a data-hover=\"tooltip\" aria-label=\"Public\" class=\"uiStreamPrivacy inlineBlock fbStreamPrivacy fbPrivacyAudienceIndicator -cx-PRIVATE-fbTimelineUnitActor__privacy\" href=\"#\" role=\"button\"><i class=\"lock img sp_3fr8aa sx_3189ab\"></i></a></div></div></div><div class=\"userContentWrapper aboveUnitContent\" data-ft=\"{"tn":"K"}\"><div class=\"-cx-PRIVATE-fbTimelineText__featured mbm\"><span class=\"userContent\">Last one's the best.</span></div></div><div class=\"shareUnit\"><div class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__wrapper\"><div><div class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__root shareLink -cx-PRIVATE-fbTimelineExternalShareUnit__hasimage\"><script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function ef3a329de94f37212ac4302e421e4666987481044(event) {\\u000a CSS.addClass(this, \\\"-cx-PRIVATE-fbTimelineExternalShareUnit__loading\\\");\\u000a CSS.removeClass(this, \\\"-cx-PRIVATE-fbTimelineExternalShareUnit__video\\\");\\u000a};\"), (\"s21e28a68f076a75fc54423dc3cfd60bd6f6cab55\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function ef3a329de94f37212ac4302e421e4666987481044(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"s21e28a68f076a75fc54423dc3cfd60bd6f6cab55_0\"), (s21e28a68f076a75fc54423dc3cfd60bd6f6cab55_0_instance), (this), (arguments)))\n };\n (null);\n (((JSBNG_Record.get)(CSS, (\"addClass\")))[(\"addClass\")])(this, \"-cx-PRIVATE-fbTimelineExternalShareUnit__loading\");\n (((JSBNG_Record.get)(CSS, (\"removeClass\")))[(\"removeClass\")])(this, \"-cx-PRIVATE-fbTimelineExternalShareUnit__video\");\n };\n var s21e28a68f076a75fc54423dc3cfd60bd6f6cab55_0_instance;\n ((s21e28a68f076a75fc54423dc3cfd60bd6f6cab55_0_instance) = ((JSBNG_Record.eventInstance)((\"s21e28a68f076a75fc54423dc3cfd60bd6f6cab55_0\"))));\n ((JSBNG_Record.markFunction)((ef3a329de94f37212ac4302e421e4666987481044)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><a class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__video -cx-PRIVATE-fbTimelineExternalShareUnit__image -cx-PRIVATE-fbTimelineExternalShareUnit__content\" ajaxify=\"/ajax/flash/expand_inline.php?target_div=u_0_19&share_id=10200303357400658&max_width=504&max_height=378&context=timelineOC\" rel=\"async\" href=\"#\" onclick=\"return ef3a329de94f37212ac4302e421e4666987481044.call(this, event);\" role=\"button\"><i class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__play\"></i><img class=\"-cx-PRIVATE-uiExternalImage__image img\" src=\"http://jsbngssl.static.xx.fbcdn.net/rsrc.php/v2/y4/r/-PAXP-deijE.gif\" alt=\"\" height=\"116\" width=\"116\" style=\"background-image: url(http://jsbngssl.fbexternal-a.akamaihd.net/safe_image.php?d=AQA7R5r-YEOUHY7V&w=116&h=116&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2Fi6cb0ggl8bQ%2Fhqdefault.jpg%3Ffeature%3Dog&cfs=1);\" /></a><script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function e4678d09bb370018636ffb09026b9b5db5ae76a77(event) {\\u000a LinkshimAsyncLink.swap(this, \\\"http:\\\\\\\\/\\\\\\\\/www.youtube.com\\\\\\\\/watch?v=i6cb0ggl8bQ&feature=share\\\");\\u000a};\"), (\"sd7b3d4476f908c682124c87a4e8b7773760357ee\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function e4678d09bb370018636ffb09026b9b5db5ae76a77(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"sd7b3d4476f908c682124c87a4e8b7773760357ee_0\"), (sd7b3d4476f908c682124c87a4e8b7773760357ee_0_instance), (this), (arguments)))\n };\n (null);\n (((JSBNG_Record.get)(LinkshimAsyncLink, (\"swap\")))[(\"swap\")])(this, \"http:\\\\/\\\\/www.youtube.com\\\\/watch?v=i6cb0ggl8bQ&feature=share\");\n };\n var sd7b3d4476f908c682124c87a4e8b7773760357ee_0_instance;\n ((sd7b3d4476f908c682124c87a4e8b7773760357ee_0_instance) = ((JSBNG_Record.eventInstance)((\"sd7b3d4476f908c682124c87a4e8b7773760357ee_0\"))));\n ((JSBNG_Record.markFunction)((e4678d09bb370018636ffb09026b9b5db5ae76a77)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function e823d0311194ec414bfba9afb0f34b69cdf003789(event) {\\u000a LinkshimAsyncLink.referrer_log(this, \\\"http:\\\\\\\\/\\\\\\\\/www.youtube.com\\\\\\\\/watch?v=i6cb0ggl8bQ&feature=share\\\", \\\"https:\\\\\\\\/\\\\\\\\/www.facebook.com\\\\\\\\/si\\\\\\\\/ajax\\\\\\\\/l\\\\\\\\/render_linkshim_log\\\\\\\\/?u=http\\\\\\\\u00253A\\\\\\\\u00252F\\\\\\\\u00252Fwww.youtube.com\\\\\\\\u00252Fwatch\\\\\\\\u00253Fv\\\\\\\\u00253Di6cb0ggl8bQ\\\\\\\\u002526feature\\\\\\\\u00253Dshare&h=FAQFyjVVkAQENT8aVvtLdDM9V4f1bxvXEGM3qvi3ThKOy7Q&enc=AZO5WFHaANvpR_irk829CDl6cU9Z3zvT7IlcZbrgEPqTDg3jFL-0WNXKK1pRGqwYh-YN22GZktbxfwdN8naRj-tU&s=1\\\");\\u000a};\"), (\"sec484fa24fedb26e78fb21ef3cb2b64a42ac68bd\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function e823d0311194ec414bfba9afb0f34b69cdf003789(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"sec484fa24fedb26e78fb21ef3cb2b64a42ac68bd_0\"), (sec484fa24fedb26e78fb21ef3cb2b64a42ac68bd_0_instance), (this), (arguments)))\n };\n (null);\n (((JSBNG_Record.get)(LinkshimAsyncLink, (\"referrer_log\")))[(\"referrer_log\")])(this, \"http:\\\\/\\\\/www.youtube.com\\\\/watch?v=i6cb0ggl8bQ&feature=share\", \"https:\\\\/\\\\/www.facebook.com\\\\/si\\\\/ajax\\\\/l\\\\/render_linkshim_log\\\\/?u=http\\\\u00253A\\\\u00252F\\\\u00252Fwww.youtube.com\\\\u00252Fwatch\\\\u00253Fv\\\\u00253Di6cb0ggl8bQ\\\\u002526feature\\\\u00253Dshare&h=FAQFyjVVkAQENT8aVvtLdDM9V4f1bxvXEGM3qvi3ThKOy7Q&enc=AZO5WFHaANvpR_irk829CDl6cU9Z3zvT7IlcZbrgEPqTDg3jFL-0WNXKK1pRGqwYh-YN22GZktbxfwdN8naRj-tU&s=1\");\n };\n var sec484fa24fedb26e78fb21ef3cb2b64a42ac68bd_0_instance;\n ((sec484fa24fedb26e78fb21ef3cb2b64a42ac68bd_0_instance) = ((JSBNG_Record.eventInstance)((\"sec484fa24fedb26e78fb21ef3cb2b64a42ac68bd_0\"))));\n ((JSBNG_Record.markFunction)((e823d0311194ec414bfba9afb0f34b69cdf003789)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><a class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__content -cx-PRIVATE-fbTimelineExternalShareUnit__textwrapper\" href=\"http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Di6cb0ggl8bQ%26feature%3Dshare&h=FAQFyjVVkAQENT8aVvtLdDM9V4f1bxvXEGM3qvi3ThKOy7Q&enc=AZO5WFHaANvpR_irk829CDl6cU9Z3zvT7IlcZbrgEPqTDg3jFL-0WNXKK1pRGqwYh-YN22GZktbxfwdN8naRj-tU&s=1\" target=\"_blank\" rel=\"nofollow\" onmouseover=\"return e4678d09bb370018636ffb09026b9b5db5ae76a77.call(this, event);\" onclick=\"return e823d0311194ec414bfba9afb0f34b69cdf003789.call(this, event);\"><div class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__text\"><div class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__itemlink fwb\" dir=\"ltr\">Exploding Actresses 03 - Disney Princesses</div><div class=\"fsm fwn fcg\">www.youtube.com</div><div class=\"-cx-PRIVATE-fbTimelineExternalShareUnit__previewtext fsm fwn fcg\" dir=\"ltr\">by Simone Rovellini http://explodingactresses.tumblr.com/ info@simonerovellini.com</div></div></a></div></div></div></div></div><div class=\"fbTimelineUFI uiCommentContainer\"><script type=\"text/javascript\">try {\n ((JSBNG_Record.scriptLoad)((\"function e70ce6299eb46c7fa1a32d354f6a2b4471b55465b(event) {\\u000a return ((window.Event && Event.__inlineSubmit) && Event.__inlineSubmit(this, event));\\u000a};\"), (\"s8b1cd9a9bfbe6b1fcb683e51b8b42056e2e2c30e\")));\n ((window.top.JSBNG_Record.callerJS) = (true));\n function e70ce6299eb46c7fa1a32d354f6a2b4471b55465b(JSBNG__event) {\n if ((!(JSBNG_Record.top.JSBNG_Record.callerJS))) {\n return ((JSBNG_Record.eventCall)((arguments.callee), (\"s8b1cd9a9bfbe6b1fcb683e51b8b42056e2e2c30e_0\"), (s8b1cd9a9bfbe6b1fcb683e51b8b42056e2e2c30e_0_instance), (this), (arguments)))\n };\n (null);\n return (((((JSBNG_Record.get)(window, (\"JSBNG__Event\")))[(\"JSBNG__Event\")]) && (((JSBNG_Record.get)(JSBNG__Event, (\"__inlineSubmit\")))[(\"__inlineSubmit\")])) && (((JSBNG_Record.get)(JSBNG__Event, (\"__inlineSubmit\")))[(\"__inlineSubmit\")])(this, JSBNG__event));\n };\n var s8b1cd9a9bfbe6b1fcb683e51b8b42056e2e2c30e_0_instance;\n ((s8b1cd9a9bfbe6b1fcb683e51b8b42056e2e2c30e_0_instance) = ((JSBNG_Record.eventInstance)((\"s8b1cd9a9bfbe6b1fcb683e51b8b42056e2e2c30e_0\"))));\n ((JSBNG_Record.markFunction)((e70ce6299eb46c7fa1a32d354f6a2b4471b55465b)));\n} finally {\n ((window.top.JSBNG_Record.callerJS) = (false));\n ((window.top.JSBNG_Record.flushDeferredEvents)());\n};</script><form rel=\"async\" class=\"live_10200303357400658_316526391751760 commentable_item autoexpand_mode\" method=\"post\" action=\"/ajax/ufi/modify.php\" data-live=\"{"seq":"10200303357400658_4912511"}\" onsubmit=\"return e70ce6299eb46c7fa1a32d354f6a2b4471b55465b.call(this, event);\" id=\"u_0_1y\"><input type=\"hidden\" name=\"charset_test\" value=\"€,´,€,´,水,Д,Є\" /><input type=\"hidden\" name=\"fb_dtsg\" value=\"AQCttlPQ\" autocomplete=\"off\" /><input type=\"hidden\" autocomplete=\"off\" name=\"feedback_params\" value=\"{"actor":"1055580469","target_fbid":"10200303357400658","target_profile_id":"1055580469","type_id":"17","assoc_obj_id":"","source_app_id":"0","extra_story_params":[],"content_timestamp":"1372262734","check_hash":"AQBLYqqsJU1aAE5L","source":"13"}\" /><input type=\"hidden\" autocomplete=\"off\" name=\"data_only_response\" value=\"1\" /><input type=\"hidden\" autocomplete=\"off\" name=\"timeline_ufi\" value=\"1\" /><input type=\"hidden\" name=\"timeline_log_data\" value=\"AQBjxP4ev5UbI41Cf_ownvAK5wSwcSjK7GAWYTU8KnSqn2t_Ypp37x3IDlNc_BfBV4dfFe9GoUYgha-VTRMVz3dpkGjnczfoKm9Pc6q6ltIGpCpq8Os8MurGA6X0p6eYzwbjx5UdQyoSubsx3-KC0EyYoXAi7ZVuT9S94NilBKTEVjQrE1zHUdDW3oCqnX12h-NmlSSLEK8-Zl3GeZvMl9oT6OGOtjBCcadbLFoeTRhTBDVyFlSa9CmPwLENPJCuWg-BJ8y0THv-2L-2VxhG2yOpLvF6Q_QPCS5wQ3K3VGMlxqwfMEod7ukeqHfRhh9KxZx1QW7CvIb81bQYQqnrlJ1t5uNzW6C4ITbNOkYKkspVSGIQ5m9fGIutgw4H-9BVufuWZXNN4e8lUk-hy9ugyPiP\" /><div class=\"fbTimelineFeedbackHeader\"><div class=\"fbTimelineFeedbackActions clearfix\"><span></span><span class=\"UIActionLinks UIActionLinks_bottom\" data-ft=\"{"tn":"=","type":20}\"><button title=\"Like this item\" type=\"submit\" name=\"like\" class=\"like_link stat_elem as_link\" data-ft=\"{"tn":">","type":22}\"><span class=\"default_message\">Like</span><span class=\"saving_message\">Unlike</span></button> · <a class=\"share_action_link\" href=\"/ajax/sharer/?s=99&appid=2309869772&p%5B0%5D=1055580469&p%5B1%5D=10200303357400658&profile_id=1055580469&share_source_type=unknown\" rel=\"dialog\" data-ft=\"{"tn":"J","type":25}\" title=\"Send this to friends or post it on your timeline.\" role=\"button\">Share</a></span></div></div><div><div class=\"uiUfi UFIContainer\" id=\"u_0_1o\"></div></div></form></div><div class=\"-cx-PRIVATE-fbTimelineLightCurationControl__root\"><div class=\"-cx-PRIVATE-uiInlineBlock__root -cx-PRIVATE-uiInlineBlock__middle mtm mrs uiPopover -cx-PRIVATE-fbTimelineLightCloseButton__root lfloat\" id=\"u_0_1b\"><a class=\"-cx-PRIVATE-uiPopover__trigger uiCloseButton\" href=\"#\" role=\"button\" aria-haspopup=\"true\" aria-expanded=\"false\" rel=\"toggle\" title=\"Remove\" id=\"u_0_1c\"></a></div></div></div></div><i class=\"spinePointer\"></i><div class=\"bottomBorder\"></div></li> ";
2452 o29.parentNode = o16;
2454 f920654002_471.returns.push(o29);
2460 f920654002_427.returns.push(o29);
2465 f920654002_425.returns.push(o30);
2469 fo920654002_576_firstChild = function() { return fo920654002_576_firstChild.returns[fo920654002_576_firstChild.inst++]; };
2470 fo920654002_576_firstChild.returns = [];
2471 fo920654002_576_firstChild.inst = 0;
2472 defineGetter(o29, "firstChild", fo920654002_576_firstChild, undefined);
2476 fo920654002_576_firstChild.returns.push(o31);
2478 o30.appendChild = f920654002_429;
2480 fo920654002_576_firstChild.returns.push(o31);
2482 f920654002_429.returns.push(o31);
2486 fo920654002_576_firstChild.returns.push(o29);
2488 fo920654002_576_firstChild.returns.push(o29);
2490 f920654002_429.returns.push(o29);
2494 fo920654002_576_firstChild.returns.push(o32);
2496 fo920654002_576_firstChild.returns.push(o32);
2498 f920654002_429.returns.push(o32);
2504 fo920654002_576_firstChild.returns.push(o32);
2506 fo920654002_576_firstChild.returns.push(o32);
2508 f920654002_429.returns.push(o32);
2510 fo920654002_576_firstChild.returns.push(null);
2512 o28.appendChild = f920654002_429;
2514 f920654002_429.returns.push(o30);
2518 f920654002_464.returns.push("pagelet_timeline_recent_ocm");
2522 f920654002_427.returns.push(o30);
2526 o0.implementation = o33;
2528 f920654002_584 = function() { return f920654002_584.returns[f920654002_584.inst++]; };
2529 f920654002_584.returns = [];
2530 f920654002_584.inst = 0;
2532 o33.hasFeature = f920654002_584;
2536 f920654002_584.returns.push(false);
2540 f920654002_427.returns.push(o33);
2546 f920654002_427.returns.push(o33);
2548 f920654002_587 = function() { return f920654002_587.returns[f920654002_587.inst++]; };
2549 f920654002_587.returns = [];
2550 f920654002_587.inst = 0;
2552 o33.setAttribute = f920654002_587;
2554 f920654002_587.returns.push(undefined);
2556 o33.JSBNG__onchange = null;
2559 f920654002_588 = function() { return f920654002_588.returns[f920654002_588.inst++]; };
2560 f920654002_588.returns = [];
2561 f920654002_588.inst = 0;
2563 o33.removeAttribute = f920654002_588;
2567 f920654002_588.returns.push(undefined);
2571 f920654002_427.returns.push(o33);
2573 o33.setAttribute = f920654002_587;
2575 f920654002_587.returns.push(undefined);
2577 o33.JSBNG__oninput = null;
2580 o33.removeAttribute = f920654002_588;
2584 f920654002_588.returns.push(undefined);
2588 f920654002_56.returns.push(o33);
2592 ow920654002.JSBNG__attachEvent = undefined;
2594 f920654002_417.returns.push(0.7880629152059555);
2598 f920654002_427.returns.push(o33);
2602 o33.getElementsByTagName = f920654002_453;
2606 f920654002_453.returns.push(o34);
2614 o33.childNodes = o34;
2618 o34.item = f920654002_456;
2632 f920654002_467.returns.push(o33);
2636 o33.getElementsByTagName = f920654002_453;
2640 o33.parentNode = o34;
2642 f920654002_418.returns.push(1373491951301);
2646 f920654002_462.returns.push(o35);
2652 f920654002_14.returns.push(undefined);
2654 f920654002_12.returns.push(1202);
2656 f920654002_12.returns.push(1203);
2660 f920654002_425.returns.push(o35);
2662 f920654002_418.returns.push(1373491951309);
2666 f920654002_427.returns.push(o36);
2674 o35.appendChild = f920654002_429;
2676 f920654002_429.returns.push(o36);
2680 f920654002_429.returns.push(o35);
2686 f920654002_467.returns.push(o35);
2690 o35.getElementsByTagName = f920654002_453;
2694 o35.parentNode = o36;
2696 fo920654002_595_firstChild = function() { return fo920654002_595_firstChild.returns[fo920654002_595_firstChild.inst++]; };
2697 fo920654002_595_firstChild.returns = [];
2698 fo920654002_595_firstChild.inst = 0;
2699 defineGetter(o33, "firstChild", fo920654002_595_firstChild, undefined);
2701 fo920654002_595_firstChild.returns.push(null);
2703 fo920654002_595_firstChild.returns.push(null);
2705 f920654002_7.returns.push(undefined);
2707 ow920654002.JSBNG__onJSBNG__scroll = undefined;
2709 f920654002_7.returns.push(undefined);
2711 f920654002_602 = function() { return f920654002_602.returns[f920654002_602.inst++]; };
2712 f920654002_602.returns = [];
2713 f920654002_602.inst = 0;
2715 ow920654002.JSBNG__onresize = f920654002_602;
2717 o0.nodeName = "#document";
2719 o0.__FB_TOKEN = void 0;
2722 o0.getAttribute = void 0;
2724 f920654002_419.returns.push(undefined);
2726 o0.JSBNG__onmouseover = null;
2728 f920654002_419.returns.push(undefined);
2730 o0.JSBNG__onmousedown = null;
2732 f920654002_419.returns.push(undefined);
2734 o0.JSBNG__onmouseup = null;
2736 f920654002_419.returns.push(undefined);
2738 o0.JSBNG__onmousemove = null;
2740 f920654002_419.returns.push(undefined);
2742 o0.JSBNG__onmouseout = null;
2744 f920654002_419.returns.push(undefined);
2746 o0.JSBNG__onclick = null;
2748 f920654002_419.returns.push(undefined);
2750 o0.JSBNG__ondblclick = null;
2752 f920654002_419.returns.push(undefined);
2754 o0.JSBNG__onkeyup = null;
2756 f920654002_419.returns.push(undefined);
2758 o0.JSBNG__onkeypress = null;
2760 f920654002_419.returns.push(undefined);
2762 o0.JSBNG__onkeydown = null;
2764 f920654002_419.returns.push(undefined);
2766 o0.JSBNG__oninput = null;
2768 f920654002_419.returns.push(undefined);
2770 o0.JSBNG__onchange = null;
2772 f920654002_419.returns.push(undefined);
2774 o0.JSBNG__onselectionchange = null;
2776 f920654002_419.returns.push(undefined);
2778 o0.JSBNG__onDOMCharacterDataModified = void 0;
2782 f920654002_427.returns.push(o37);
2784 o37.setAttribute = f920654002_587;
2786 f920654002_587.returns.push(undefined);
2788 o37.JSBNG__ondrag = null;
2791 o37.removeAttribute = f920654002_588;
2795 f920654002_588.returns.push(undefined);
2799 f920654002_427.returns.push(o37);
2801 o37.setAttribute = f920654002_587;
2803 f920654002_587.returns.push(undefined);
2805 o37.JSBNG__onwheel = void 0;
2807 o37.removeAttribute = f920654002_588;
2811 f920654002_588.returns.push(undefined);
2813 f920654002_584.returns.push(false);
2817 f920654002_427.returns.push(o37);
2819 o37.setAttribute = f920654002_587;
2821 f920654002_587.returns.push(undefined);
2823 o37.JSBNG__onmousewheel = null;
2826 o37.removeAttribute = f920654002_588;
2830 f920654002_588.returns.push(undefined);
2832 f920654002_419.returns.push(undefined);
2834 o0.JSBNG__onDOMMouseScroll = void 0;
2836 o30.JSBNG__addEventListener = f920654002_419;
2842 f920654002_427.returns.push(o30);
2844 o30.setAttribute = f920654002_587;
2846 f920654002_587.returns.push(undefined);
2848 o30.JSBNG__onJSBNG__scroll = void 0;
2850 o30.removeAttribute = f920654002_588;
2854 f920654002_588.returns.push(undefined);
2858 f920654002_427.returns.push(o30);
2860 o30.setAttribute = f920654002_587;
2862 f920654002_587.returns.push(undefined);
2864 o30.JSBNG__onJSBNG__focus = void 0;
2866 o30.removeAttribute = f920654002_588;
2870 f920654002_588.returns.push(undefined);
2874 f920654002_427.returns.push(o30);
2876 o30.setAttribute = f920654002_587;
2878 f920654002_587.returns.push(undefined);
2880 o30.JSBNG__onfocusin = void 0;
2882 o30.removeAttribute = f920654002_588;
2886 f920654002_588.returns.push(undefined);
2888 fo920654002_595_firstChild.returns.push(null);
2890 f920654002_417.returns.push(0.7156839284580201);
2892 f920654002_418.returns.push(1373491951348);
2894 f920654002_418.returns.push(1373491951348);
2896 o0.activeElement = o16;
2898 o16.nodeName = "BODY";
2900 o16.contentEditable = "inherit";
2902 f920654002_418.returns.push(1373491951348);
2904 f920654002_418.returns.push(1373491951349);
2906 f920654002_418.returns.push(1373491951354);
2908 f920654002_418.returns.push(1373491951354);
2910 f920654002_418.returns.push(1373491951354);
2914 f920654002_418.returns.push(1373491951355);
2918 f920654002_425.returns.push(o30);
2920 f920654002_429.returns.push(o30);
2924 f920654002_418.returns.push(1373491951394);
2928 f920654002_425.returns.push(o30);
2930 f920654002_429.returns.push(o30);
2934 f920654002_418.returns.push(1373491951405);
2938 f920654002_425.returns.push(o30);
2940 f920654002_429.returns.push(o30);
2944 f920654002_418.returns.push(1373491951440);
2948 f920654002_425.returns.push(o30);
2950 f920654002_429.returns.push(o30);
2954 f920654002_418.returns.push(1373491951448);
2956 f920654002_418.returns.push(1373491951451);
2958 f920654002_418.returns.push(1373491951451);
2960 o33.nextSibling = null;
2962 o34.removeChild = f920654002_471;
2964 f920654002_471.returns.push(o33);
2967 o34.appendChild = f920654002_429;
2969 f920654002_429.returns.push(o33);
2971 f920654002_418.returns.push(1373491951460);
2973 f920654002_418.returns.push(1373491951460);
2975 f920654002_418.returns.push(1373491951460);
2977 f920654002_418.returns.push(1373491951461);
2979 f920654002_418.returns.push(1373491951461);
2981 f920654002_418.returns.push(1373491951461);
2983 f920654002_418.returns.push(1373491951461);
2987 fo920654002_595_firstChild.returns.push(o30);
2989 o30.getAttributeNode = f920654002_458;
2993 f920654002_458.returns.push(o37);
2995 o37.value = ".r[49e93]";
2999 o30.firstChild = o38;
3001 o38.getAttributeNode = f920654002_458;
3005 f920654002_458.returns.push(o39);
3007 o39.value = ".r[49e93].[1][4][0]";
3011 o38.firstChild = o40;
3017 o38.nextSibling = o40;
3021 o40.getAttributeNode = f920654002_458;
3025 f920654002_458.returns.push(o38);
3027 o38.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912489}";
3031 o40.firstChild = o41;
3033 o41.getAttributeNode = f920654002_458;
3037 f920654002_458.returns.push(o42);
3039 o42.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912489}.[0]";
3045 o41.firstChild = o42;
3049 o42.getAttributeNode = f920654002_458;
3053 f920654002_458.returns.push(o41);
3055 o41.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912489}.[0].[left]";
3061 o42.firstChild = o41;
3067 o42.nextSibling = o41;
3071 o41.getAttributeNode = f920654002_458;
3075 f920654002_458.returns.push(o42);
3077 o42.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912489}.[0].[right]";
3083 o41.firstChild = o42;
3087 o42.getAttributeNode = f920654002_458;
3091 f920654002_458.returns.push(o41);
3093 o41.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912489}.[0].[right].[0]";
3099 o42.firstChild = o41;
3103 o41.getAttributeNode = f920654002_458;
3107 f920654002_458.returns.push(o42);
3109 o42.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912489}.[0].[right].[0].[left]";
3115 o41.firstChild = o42;
3119 o42.getAttributeNode = f920654002_458;
3123 f920654002_458.returns.push(o41);
3125 o41.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912489}.[0].[right].[0].[left].[0]";
3131 o42.firstChild = o41;
3135 o41.getAttributeNode = f920654002_458;
3139 f920654002_458.returns.push(o42);
3141 o42.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912489}.[0].[right].[0].[left].[0].[0]";
3147 o41.firstChild = o42;
3151 o42.getAttributeNode = f920654002_458;
3155 f920654002_458.returns.push(o41);
3157 o41.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912489}.[0].[right].[0].[left].[0].[0].[0][0]";
3163 o42.firstChild = o41;
3169 o42.nextSibling = o41;
3173 o41.getAttributeNode = f920654002_458;
3177 f920654002_458.returns.push(o42);
3179 o42.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912489}.[0].[right].[0].[left].[0].[0].[0][1]";
3185 o41.firstChild = o42;
3191 o41.nextSibling = o42;
3195 o42.getAttributeNode = f920654002_458;
3199 f920654002_458.returns.push(o41);
3201 o41.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912489}.[0].[right].[0].[left].[0].[0].[0][2]";
3207 o42.firstChild = o41;
3213 o42.nextSibling = o41;
3217 o41.getAttributeNode = f920654002_458;
3223 f920654002_458.returns.push(o41);
3225 o41.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912489}.[0].[right].[0].[left].[0].[0].[3]";
3229 f920654002_458.returns.push(o38);
3231 f920654002_646 = function() { return f920654002_646.returns[f920654002_646.inst++]; };
3232 f920654002_646.returns = [];
3233 f920654002_646.inst = 0;
3235 o33.contains = f920654002_646;
3237 f920654002_646.returns.push(true);
3239 fo920654002_595_firstChild.returns.push(o30);
3241 f920654002_458.returns.push(o37);
3243 f920654002_458.returns.push(o39);
3245 f920654002_458.returns.push(o38);
3249 o40.nextSibling = o41;
3253 o41.getAttributeNode = f920654002_458;
3257 f920654002_458.returns.push(o40);
3259 o40.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912495}";
3263 o41.firstChild = o42;
3265 o42.getAttributeNode = f920654002_458;
3269 f920654002_458.returns.push(o43);
3271 o43.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912495}.[0]";
3277 o42.firstChild = o43;
3281 o43.getAttributeNode = f920654002_458;
3285 f920654002_458.returns.push(o42);
3287 o42.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912495}.[0].[left]";
3293 o43.firstChild = o42;
3299 o43.nextSibling = o42;
3303 o42.getAttributeNode = f920654002_458;
3307 f920654002_458.returns.push(o43);
3309 o43.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912495}.[0].[right]";
3315 o42.firstChild = o43;
3319 o43.getAttributeNode = f920654002_458;
3323 f920654002_458.returns.push(o42);
3325 o42.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912495}.[0].[right].[0]";
3331 o43.firstChild = o42;
3335 o42.getAttributeNode = f920654002_458;
3339 f920654002_458.returns.push(o43);
3341 o43.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912495}.[0].[right].[0].[left]";
3347 o42.firstChild = o43;
3351 o43.getAttributeNode = f920654002_458;
3355 f920654002_458.returns.push(o42);
3357 o42.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912495}.[0].[right].[0].[left].[0]";
3363 o43.firstChild = o42;
3365 o42.getAttributeNode = f920654002_458;
3369 f920654002_458.returns.push(o44);
3371 o44.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912495}.[0].[right].[0].[left].[0].[0]";
3377 o42.firstChild = o44;
3381 o44.getAttributeNode = f920654002_458;
3385 f920654002_458.returns.push(o42);
3387 o42.value = ".r[49e93].[1][4][1]{comment10200303357400658_4912495}.[0].[right].[0].[left].[0].[0].[0][0]";