if (!Function.prototype.bindAsEventListener) {
	Function.prototype.bindAsEventListener = function() {
		var __method = this, args = $A(arguments), object = args.shift();
		return function(event) {
			return __method.apply(object, [event || window.event].concat(args));
		}
	}
}
var $A = Array.from = function(iterable) {
	if (!iterable) return [];
	if (iterable.toArray) {
		return iterable.toArray();
	} else {
		var results = [];
		for (var i = 0; i < iterable.length; i++)
			results.push(iterable[i]);
		return results;
	}
}
if (!Math.customRound) {
	Math.customRound = function (number, digits) {
		if (arguments.length == 1) var digits = 2;
		var d = Math.pow(10, digits);
		return parseInt(number * d) / d;
	}
}
if (typeof(IDTVVWP) == "undefined") {
	IDTVVWP = function () {this.initialize.apply(this, arguments);};
	IDTVVWP.prototype = {
		frame: null,
		initialize: function (ds) {

			this.ds = ds;
			this.element = document.getElementById('IDTVP_' + this.ds.id);
			if (!this.element && document.getElementsByClassName)
				try {
					this.element = document.getElementsByClassName ('idtv_7d87acbb32')[0];
				} catch(e) {}
			if (!this.element) { alert ('The iDesktop.tv video wall is not not embedded properly!'); return;}
			this.element.innerHTML = '<div class="idtv_' + this.ds.id + '"><div class="idtv_inres"></div><div class="idtv_bb">' +
				'<div class="idtv_btn_prev"></div><div class="idtv_btn_next"></div><div class="idtv_bb_pages"></div></div></div>';
			var divs = this.element.getElementsByTagName('div');
			this.elementout = divs[0];
			this.elementin = divs[1];
			this.btn_prev = divs[3];
			this.btn_next = divs[4];
			this.pagers_area = divs[5];
			if (this.ds.data.error) {
				this.elementin.innerHTML = '<div style="text-align:center">' + this.ds.data.error + '</div>';
			} else {
				this.btn_prev.onclick = this.prevP.bindAsEventListener(this);
				this.btn_next.onclick = this.nextP.bindAsEventListener(this);
				if (this.ds.only_public) { // go trough ds.data.results and remove all private videos
					var newdata = new Array();
					for (var i = 0; i < this.ds.data.results.length; i ++)
						if (!this.ds.data.results[i].isprivate)
							newdata.push(this.ds.data.results[i]);
					this.ds.data.results = newdata;
				}
				this.results = new Array();
				var jsonArr = this.ds.data.results;
				this.page = 0; this.resc = jsonArr.length;
				this.maxpage = Math.ceil(this.resc/this.ds.pp) ;
				for (var i = 0, n = this.resc; i < n; i ++) {
					if (this.ds.only_public && jsonArr[i].isprivate) continue;
					var nr = document.createElement('div');
					nr.className = 'idtv_res';
					if ((i % this.ds.cols + Math.floor(i / this.ds.cols)) % 2) nr.className += ' alt';
					jsonArr[i].title_esc = (jsonArr[i].title ? jsonArr[i].title.replace(/"/g, "&quot;") : '');  // comment only to fix code coloring "
					var title = jsonArr[i].title_esc + (this.ds.thumb_show_length && jsonArr[i].length_seconds ?' (' + jsonArr[i].length_seconds + ')':'');
					var t = '<img src="' + jsonArr[i].thumbnail_url + '" alt="' + jsonArr[i].title_esc + '" title="' + title + '" />';
					if (this.ds.thumb_show_title || this.ds.thumb_show_author || this.ds.thumb_show_length || this.ds.thumb_show_rating || this.ds.thumb_show_description) {
						var at = '';
						if (this.ds.thumb_show_title)
							//at = '<a href="http://www.idesktop.tv/?watch=' + jsonArr[i].id + '" title="' + jsonArr[i].title + '" target="_blank">' + jsonArr[i].title + "</a>";
							at = '<span class="t">' + (jsonArr[i].title ? jsonArr[i].title : '') + "</span>";
						if (this.ds.thumb_show_author) {
							at += '<span class="ah">' + (this.ds.thumb_show_labels?'<span class="lb">Author: </span>':'') + (jsonArr[i].author ? jsonArr[i].author : '') + '</span>';
						}
						if (this.ds.thumb_show_length || this.ds.thumb_show_views) {
							at += '<span class="lv">';
							if (this.ds.thumb_show_length) at += (this.ds.thumb_show_labels?'<span class="lb">Length: </span>':'') + (jsonArr[i].length_seconds ? jsonArr[i].length_seconds : '');
							if (this.ds.thumb_show_length && this.ds.thumb_show_views) at += ' | ';
							if (this.ds.thumb_show_views) at += (this.ds.thumb_show_labels?'<span class="lb">Views: </span>':'') + (jsonArr[i].view_count ? this.formatCommasInt(jsonArr[i].view_count) : '');
							at += '</span>';
						}
						if (this.ds.thumb_show_rating)
							at += '<span class="r">' + (this.ds.thumb_show_labels?'<span class="lb">Rating: </span>':'') + (jsonArr[i].rating_avg ? Math.customRound(jsonArr[i].rating_avg, 1) : '') + "</span>";
						if (this.ds.thumb_show_description) {
							at += '<span class="d">' + (jsonArr[i].description ? jsonArr[i].description : '') + "</span>";
						}
						t = t + '<div class="out" title="' + title + '"><div class="in">' + at + '</div></div>';
					}
					if (this.ds.mark_private && jsonArr[i].isprivate)
						nr.innerHTML += '<div class="private_mark">PRIVATE</div>';
					nr.innerHTML += t;
					this.elementin.appendChild(nr);
					nr.style.display = 'none';
					this.results.push(nr);
					nr.onclick = this.onresclick.bindAsEventListener(this, i);
				}
				this.showRes();
			}
			var f = document.createElement('iframe');
			f.src = "http://www.idesktop.tv/embed/7d87acbb32/utr.html?r=" + document.location;
			f.style.cssText = 'width:0;height:0;border:none;';
			f.frameborder = f.frameBorder = f.border = "0";
			this.element.appendChild(f);
		},
		onresclick: function (event,i) {
			var elem = event.target || event.srcElement;
			if (elem.tagName == 'A') return;
			if (this.ds.plpl == "newwin") {
				var loaded = false;
				if (this.frw) {
					try {
						this.frw.Player.playlist.selectItem(i);
						this.frw.Player.playlist.playSelected();
						loaded = true;
					} catch(e) {
						loaded = false;
					}
				}
				if (!loaded) {
					this.frw = window.open ('http://'+this.ds.chost+'/embed/'+this.ds.id+'/play.html?vid='+this.ds.data.results[i].id, 'idtvwin', 'width=' + this.ds.plw + ',height=' + this.ds.plh);
				}
				return;
			}
			if (!this.frame) {
				this.plclbtn = document.createElement('img');
				this.plclbtn.src = this.ds.clbtnsrc;
				this.plclbtn.onclick = this.closeplr.bindAsEventListener(this);
				this.plclbtn.className = 'idtvp_clbtn';
				this.frameholder = document.createElement('div');
				this.frameholder.id = 'idtvpfh' + this.ds.id;
				this.frame = document.createElement('iframe');
				this.frame.id = 'idtvpf' + this.ds.id;
				this.frame.frameborder = this.frame.frameBorder = this.frame.border = "0";
				try {
					document.body.appendChild(this.frameholder);
					this.ba = true;
				} catch (e) {
					this.elementout.appendChild(this.frameholder);
					this.ba = false;
				}
				this.frameholder.appendChild(this.plclbtn);

			}
			/*this.frameholder.style.top = this.results[i].offsetTop + "px";
			this.frameholder.style.left = this.results[i].offsetLeft + this.results[i].offsetWidth + "px";*/
			var scrlX = (window.pageXOffset || document.body.scrollLeft || document.documentElement.scrollLeft);
		    var scrlY = (window.pageYOffset || document.body.scrollTop || document.documentElement.scrollTop);
		    var viewportW = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth ;
		    var viewportH = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
		    var element = this.elementout;
			var elFixedX = 0, elFixedY = 0;
		    do {
		    	elFixedY += element.offsetTop  || 0; elFixedX += element.offsetLeft || 0; element = element.offsetParent || element.parentNode;
		    } while (element);
		    var nx = 0, ny =0;
			switch (this.ds.plpl) {
				case "center":
					nx = scrlX + ((viewportW - this.ds.plw) / 2) - elFixedX;
					ny = scrlY + ((viewportH - this.ds.plh) / 2) - elFixedY;
					break;
				case "left":
					nx = this.results[i].offsetLeft - this.ds.plw;
					ny = this.results[i].offsetTop - this.ds.pldelta;
					break;
				case "right":
					nx = this.results[i].offsetLeft + this.results[i].offsetWidth;
					ny = this.results[i].offsetTop - this.ds.pldelta;
					break;
				case "top":
					nx = this.results[i].offsetLeft - this.ds.pldelta;
					ny = this.results[i].offsetTop - this.ds.plh;
					break;
				case "bottom":
					nx = this.results[i].offsetLeft - this.ds.pldelta;
					ny = this.results[i].offsetTop + this.results[i].offsetHeight;
					break;
				default: return;
			}
			if (this.ba) {
				nx += elFixedX; ny += elFixedY;
				if (nx < 0) nx = 0;
				if (ny < 0) ny = 0;
			} else {
				if (this.ds.plpl != "center") { // some checks if top/left it is out of the viewport
					var rx = nx + elFixedX, ry = ny + elFixedY;
					if (rx < 0) nx -= rx;
					if (ry < 0) ny -= ry;
				}
			}
			this.frameholder.style.left = nx + "px";
			this.frameholder.style.top = ny + "px";

			this.frameholder.style.display = 'block';
			var loaded = false;
			try {
				if (this.frame.contentWindow && this.frame.contentWindow.Player) { // detect if script access is allowed
					this.frame.contentWindow.Player.playlist.selectItem(i);
					this.frame.contentWindow.Player.playlist.playSelected();
					loaded = true;
				}
			} catch (e) {};
			if (!loaded) {
				if (this.frame.parentNode == this.frameholder) this.frameholder.removeChild(this.frame);
				this.frame.src = 'http://'+this.ds.chost+'/embed/'+this.ds.id+'/play.html?vid='+(this.ds.data.results[i].id ? this.ds.data.results[i].id : i);
				this.frameholder.appendChild(this.frame);
			}
		},
		closeplr: function (event) { this.frameholder.style.display='none'; this.frameholder.removeChild(this.frame); },
		showRes: function () {
			if (this.results.length == 0)
				this.pagers_area.innerHTML = 'no results';
			else {
				var s = this.page * this.ds.pp, e = Math.min (s + this.ds.pp, this.results.length) - 1;
				for (var i = 0, n = this.results.length; i < n; i ++)
					this.results[i].style.display =  (i < s || i > e ? 'none' : 'block');
				this.pagers_area.innerHTML = (s+1) + ' - ' + (e+1) + ' (' + this.results.length + ')';
			}
		},
		nextP: function () { if (this.page < this.maxpage - 1) { this.page ++; this.showRes(); } },
		prevP: function () { if (this.page > 0) { this.page --; this.showRes(); } },
		formatCommasInt: function (val) {
			var s = new String(val);
			var rgx = /(\d+)(\d{3})/;
			while (rgx.test(s)) s = s.replace(rgx, '$1' + ',' + '$2');
			return s;
		}
	}
}

var IDTVLBDataSource7d87acbb32 = {
	id: '7d87acbb32', chost:'www.idesktop.tv',clbtnsrc:'http://www.idesktop.tv/images/player_icons/close.gif',
	width: 102, height: 308, pp: 4,
	rows: 4, cols: 1,
	plw: 500, plh: 420,
	createP: function () {
		if (this.reverse_playlist) this.data.results = this.data.results.reverse();
		this.p = new IDTVVWP(this);
	},
	plpl: 'center',
	only_public:true,mark_private:true,
	thumb_show_title : true, thumb_show_author : false,
	thumb_show_rating : false, thumb_show_views: false,
	thumb_show_length : false, thumb_show_description : false,
	thumb_show_labels : false,
	thumbnail_text: 'O',
	reverse_playlist: false,
	pldelta: 0,
Table './idesktop/yt_cache' is marked as crashed and should be repaired<br>Query: insert into yt_cache values ('http://gdata.youtube.com/feeds/api/videos?alt=atom&orderby=relevance&safeSearch=moderate&max-results=4&start-index=1&q=Internet+Celebrities&v=2&client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&key=AI39si5QWl6WGY_2385XkoUaIPz1HOMVnixcqhiWVfd_YNvJAeHGWsXOBTb-a3jz5noA5jGUkd5ydVTwzEy8OLkG4jC_Lh7Mew', 218, '<?xml version=\'1.0\' encoding=\'UTF-8\'?><feed xmlns=\'http://www.w3.org/2005/Atom\' xmlns:media=\'http://search.yahoo.com/mrss/\' xmlns:openSearch=\'http://a9.com/-/spec/opensearch/1.1/\' xmlns:gd=\'http://schemas.google.com/g/2005\' xmlns:yt=\'http://gdata.youtube.com/schemas/2007\' gd:etag=\'W/&quot;DEEHQ3gyeCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:videos</id><updated>2012-02-09T05:50:32.690Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><title>YouTube Videos matching query: Internet Celebrities</title><logo>http://www.youtube.com/img/pic_youtubelogo_123x63.gif</logo><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com\'/><link rel=\'http://schemas.google.com/g/2005#feed\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://schemas.google.com/g/2005#batch\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/batch?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos?alt=atom&amp;q=Internet+Celebrities&amp;start-index=1&amp;max-results=4&amp;client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;restriction=38.107.179.207&amp;safeSearch=moderate&amp;orderby=relevance&amp;v=2\'/><link rel=\'service\' type=\'application/atomsvc+xml\' href=\'http://gdata.youtube.com/feeds/api/videos?alt=atom-service&amp;v=2\'/><link rel=\'next\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos?alt=atom&amp;q=Internet+Celebrities&amp;start-index=5&amp;max-results=4&amp;client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;restriction=38.107.179.207&amp;safeSearch=moderate&amp;orderby=relevance&amp;v=2\'/><author><name>YouTube</name><uri>http://www.youtube.com/</uri></author><generator version=\'2.1\' uri=\'http://gdata.youtube.com\'>YouTube data API</generator><openSearch:totalResults>42764</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>4</openSearch:itemsPerPage><entry gd:etag=\'W/&quot;CU8DQ347eCp7I2A9WhRbFUg.&quot;\'><id>tag:youtube.com,2008:video:JUIP-MjlzyE</id><published>2012-01-18T23:20:22.000Z</published><updated>2012-02-06T18:44:32.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Famous\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Internet\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Censor\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Censorship\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Celebrity\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Impressions\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Congress\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'#PIPA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'#SOPA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Petition\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Senate\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ban\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Banned\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Family\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Guy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Arnold\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Schwarzenegger\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Terminator\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ice\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Coco\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Law\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Bill\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Legislature\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Senator\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'President\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Obama\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Best\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Amazing\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Joe\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Gaudet\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Youtube\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Hollywood\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'United States Congress\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Funny\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Speech\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Free\'/><title>Famous Internet Celebrities React To Congress #SOPA And #PIPA</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/JUIP-MjlzyE?version=3&amp;f=videos&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=JUIP-MjlzyE&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/JUIP-MjlzyE/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/JUIP-MjlzyE/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/JUIP-MjlzyE/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/JUIP-MjlzyE/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=JUIP-MjlzyE\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/JUIP-MjlzyE?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>JoeGaudet</name><uri>http://gdata.youtube.com/feeds/api/users/uIiJn9Ni6Y2lKsc9lagQlQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/JUIP-MjlzyE/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'82\'/></gd:comments><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/JUIP-MjlzyE?version=3&amp;f=videos&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'214\' yt:format=\'5\'/><media:content url=\'rtsp://v2.cache2.c.youtube.com/Cm8LENy73wIaZgkhz-XI-A9CJRMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUgZ2aWRlb3NyIQEdvwYASiqYpLyMvUyBlmR_DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'214\' yt:format=\'1\'/><media:content url=\'rtsp://v1.cache7.c.youtube.com/Cm8LENy73wIaZgkhz-XI-A9CJRMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUgZ2aWRlb3NyIQEdvwYASiqYpLyMvUyBlmR_DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'214\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>JoeGaudet</media:credit><media:description type=\'plain\'>Please don\'t let congress censor us! Sign the petition against #PIPA and #SOPA. my celebrity impressions need a voice and an outlet! My name is Joe Gaudet. I\'m an actor/ voice actor. My dream is to be a full time actor. I love to entertain and create fun videos. If congress censors the internet, #SOPA #PIPA I can\'t be heard. WE CAN\'T BE HEARD! Thank you as always for your support. Subscribe/ like if you enjoyed.</media:description><media:keywords>Famous, Internet, Censor, Censorship, Celebrity, Impressions, Congress, #PIPA, #SOPA, Petition, Senate, Ban, Banned, Family, Guy, Arnold, Schwarzenegger, Terminator, Ice, Coco, Law, Bill, Legislature, Senator, President, Obama, Best, Amazing, Joe, Gaudet, Youtube, Hollywood, United States Congress, Funny, Speech, Free</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=JUIP-MjlzyE&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/JUIP-MjlzyE/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:47\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/JUIP-MjlzyE/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/JUIP-MjlzyE/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:53.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/JUIP-MjlzyE/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:47\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/JUIP-MjlzyE/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:40.500\' yt:name=\'end\'/><media:title type=\'plain\'>Famous Internet Celebrities React To Congress #SOPA And #PIPA</media:title><yt:duration seconds=\'214\'/><yt:uploaded>2012-01-18T23:20:22.000Z</yt:uploaded><yt:videoid>JUIP-MjlzyE</yt:videoid></media:group><gd:rating average=\'4.979487\' max=\'5\' min=\'1\' numRaters=\'195\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'45\' viewCount=\'2844\'/><yt:rating numDislikes=\'1\' numLikes=\'194\'/></entry><entry gd:etag=\'W/&quot;DEQEQX47eCp7I2A9WhRbFk4.&quot;\'><id>tag:youtube.com,2008:video:Yl5EipLJ-fo</id><published>2011-06-13T13:35:29.000Z</published><updated>2012-02-07T17:38:20.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'People\' label=\'People &amp; Blogs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'The\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEW\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Internet\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Celebrities\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'of\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2011\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Chris\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Crocker\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Brandon\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Hilton\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Gabriel\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Cyphre\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Dahvie\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Vanity\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Raquel\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Reed\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jeffree\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Star\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'alone\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'all\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'leave\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'not\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'lucky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'stars\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'you\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'jimmy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'chris crocker\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'not alone\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'britney\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'spears\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'lady\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'gaga\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2010\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2012\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2013\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'super\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'rock\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pop\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'electric\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'music\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'drag\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'queen\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'scene\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'crime\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'beauty\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'killer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'fame\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'glamour\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sex\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hollywood\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'famous\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'actor\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'singer\'/><title>The NEW Internet Celebrities of the 2011</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/Yl5EipLJ-fo?version=3&amp;f=videos&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=Yl5EipLJ-fo&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Yl5EipLJ-fo/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Yl5EipLJ-fo/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Yl5EipLJ-fo/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Yl5EipLJ-fo/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=Yl5EipLJ-fo\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Yl5EipLJ-fo?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>Frainkatzed28</name><uri>http://gdata.youtube.com/feeds/api/users/QlMNAX1kOW9FlHFfY3Ic0w</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/Yl5EipLJ-fo/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'6\'/></gd:comments><media:group><media:category label=\'People &amp; Blogs\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>People</media:category><media:content url=\'http://www.youtube.com/v/Yl5EipLJ-fo?version=3&amp;f=videos&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'211\' yt:format=\'5\'/><media:content url=\'rtsp://v2.cache2.c.youtube.com/Cm8LENy73wIaZgn6-cmSikReYhMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUgZ2aWRlb3NyIQEdvwYASiqYpLyMvUyBlmR_DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'211\' yt:format=\'1\'/><media:content url=\'rtsp://v2.cache6.c.youtube.com/Cm8LENy73wIaZgn6-cmSikReYhMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUgZ2aWRlb3NyIQEdvwYASiqYpLyMvUyBlmR_DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'211\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>Frainkatzed28</media:credit><media:description type=\'plain\'>The NEW Internet Celebrities of the 2011 Chris Crocker, Brandon Hilton, Gabriel Cyphre, Dahvie Vanity, Raquel Reed, Jeffree Star Song title \"Dancing with my heart\" by Gabriel Cyphre</media:description><media:keywords>The, NEW, Internet, Celebrities, of, 2011, Chris, Crocker, Brandon, Hilton, Gabriel, Cyphre, Dahvie, Vanity, Raquel, Reed, Jeffree, Star, alone, all, leave, not, lucky, stars, you, jimmy, chris crocker, not alone, britney, spears, lady, gaga, 2010, 2012, 2013, super, rock, pop, electric, music, drag, queen, scene, crime, beauty, killer, fame, glamour, sex, hollywood, famous, actor, entertainment, singer</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=Yl5EipLJ-fo&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Yl5EipLJ-fo/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:45.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Yl5EipLJ-fo/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Yl5EipLJ-fo/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:52.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Yl5EipLJ-fo/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:45.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Yl5EipLJ-fo/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:38.250\' yt:name=\'end\'/><media:title type=\'plain\'>The NEW Internet Celebrities of the 2011</media:title><yt:duration seconds=\'211\'/><yt:uploaded>2011-06-13T13:35:29.000Z</yt:uploaded><yt:videoid>Yl5EipLJ-fo</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'7\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'7\' viewCount=\'633\'/><yt:rating numDislikes=\'0\' numLikes=\'7\'/></entry><entry gd:etag=\'W/&quot;DU8DRX47eCp7I2A9WhRbEUs.&quot;\'><id>tag:youtube.com,2008:video:grVeOqsm2D0</id><published>2010-06-10T22:20:03.000Z</published><updated>2012-02-02T07:31:14.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Nonprofit\' label=\'Nonprofits &amp; Activism\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Net Neutrality\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'advocacy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Internet\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'culture\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'charlie bit my finger\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'vlogbrothers\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'nerdfighters\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mythbusters\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'maureen johnson\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'john green\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hank green\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'adam savage\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'wil wheaton\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'unculturedproject\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'kittens\'/><title>Internet Stars for Internet Freedom</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/grVeOqsm2D0?version=3&amp;f=videos&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=grVeOqsm2D0&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/grVeOqsm2D0/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/grVeOqsm2D0/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/grVeOqsm2D0/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/grVeOqsm2D0/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=grVeOqsm2D0\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/grVeOqsm2D0?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>videofreepress</name><uri>http://gdata.youtube.com/feeds/api/users/pjf0pXYTE06_Y7wUMX4PmA</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/grVeOqsm2D0/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'120\'/></gd:comments><yt:hd/><media:group><media:category label=\'Nonprofits &amp; Activism\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Nonprofit</media:category><media:content url=\'http://www.youtube.com/v/grVeOqsm2D0?version=3&amp;f=videos&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'159\' yt:format=\'5\'/><media:content url=\'rtsp://v4.cache3.c.youtube.com/Cm8LENy73wIaZgk92CarOl61ghMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUgZ2aWRlb3NyIQEdvwYASiqYpLyMvUyBlmR_DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'159\' yt:format=\'1\'/><media:content url=\'rtsp://v7.cache5.c.youtube.com/Cm8LENy73wIaZgk92CarOl61ghMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUgZ2aWRlb3NyIQEdvwYASiqYpLyMvUyBlmR_DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'159\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>videofreepress</media:credit><media:description type=\'plain\'>Free Press and the Harry Potter Alliance collaborated on this video featuring a series of online celebrities and writers speaking about the importance of Net Neutrality. Featuring John and Hank Green (the vlogbrothers); actor and blogger Wil Wheaton; bestselling author Maureen Johnson (www.maureenjohnsonbooks.com); Shawn Ahmed from the UnculturedProject; vloggers and musicians Kristina Horner and Luke Conard; and Adam Savage from Mythbusters. Take action to save the Internet now www.savetheinternet.com</media:description><media:keywords>Net Neutrality, advocacy, Internet, culture, charlie bit my finger, vlogbrothers, nerdfighters, mythbusters, maureen johnson, john green, hank green, adam savage, wil wheaton, unculturedproject, kittens</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=grVeOqsm2D0&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/grVeOqsm2D0/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:19.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/grVeOqsm2D0/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/grVeOqsm2D0/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:39.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/grVeOqsm2D0/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:19.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/grVeOqsm2D0/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:59.250\' yt:name=\'end\'/><media:title type=\'plain\'>Internet Stars for Internet Freedom</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'159\'/><yt:uploaded>2010-06-10T22:20:03.000Z</yt:uploaded><yt:videoid>grVeOqsm2D0</yt:videoid></media:group><gd:rating average=\'4.9654675\' max=\'5\' min=\'1\' numRaters=\'695\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'271\' viewCount=\'26336\'/><yt:rating numDislikes=\'6\' numLikes=\'689\'/></entry><entry gd:etag=\'W/&quot;CEMGQn47eCp7I2A9WhRRF08.&quot;\'><id>tag:youtube.com,2008:video:T8daGJzituA</id><published>2011-12-01T06:53:43.000Z</published><updated>2011-12-01T06:53:43.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'top internet celebrities\'/><title>Forbes.com Top 25 Internet Celebrities</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/T8daGJzituA?version=3&amp;f=videos&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=T8daGJzituA&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/T8daGJzituA/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/T8daGJzituA/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/T8daGJzituA/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/T8daGJzituA/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=T8daGJzituA\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/T8daGJzituA?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>gossipnewstalk</name><uri>http://gdata.youtube.com/feeds/api/users/JvmXCBb2N2mKpBzLuxVkRw</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'allowed\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/T8daGJzituA/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'0\'/></gd:comments><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/T8daGJzituA?version=3&amp;f=videos&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'842\' yt:format=\'5\'/><media:content url=\'rtsp://v4.cache5.c.youtube.com/Cm8LENy73wIaZgngtuKcGFrHTxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUgZ2aWRlb3NyIQEdvwYASiqYpLyMvUyBlmR_DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'842\' yt:format=\'1\'/><media:content url=\'rtsp://v2.cache7.c.youtube.com/Cm8LENy73wIaZgngtuKcGFrHTxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUgZ2aWRlb3NyIQEdvwYASiqYpLyMvUyBlmR_DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'842\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>gossipnewstalk</media:credit><media:description type=\'plain\'>Thank you for watching Terrell T. Slaughter Online News</media:description><media:keywords>top internet celebrities</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=T8daGJzituA&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/T8daGJzituA/default.jpg\' height=\'90\' width=\'120\' time=\'00:07:01\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/T8daGJzituA/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/T8daGJzituA/1.jpg\' height=\'90\' width=\'120\' time=\'00:03:30.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/T8daGJzituA/2.jpg\' height=\'90\' width=\'120\' time=\'00:07:01\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/T8daGJzituA/3.jpg\' height=\'90\' width=\'120\' time=\'00:10:31.500\' yt:name=\'end\'/><media:title type=\'plain\'>Forbes.com Top 25 Internet Celebrities</media:title><yt:duration seconds=\'842\'/><yt:uploaded>2011-12-01T06:53:43.000Z</yt:uploaded><yt:videoid>T8daGJzituA</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'1\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'13\'/><yt:rating numDislikes=\'0\' numLikes=\'1\'/></entry></feed>', now(), now())
