- published: 15 Jan 2016
- views: 953548
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
The X-Files is an American science fiction horror drama television series created by Chris Carter. The program originally aired from September 10, 1993, to May 19, 2002, on Fox, spanning nine seasons, with 202 episodes and a feature film of the same name, before returning with a second film in 2008 and a six-episode tenth season in 2016. The series revolves around FBI special agents Fox Mulder (David Duchovny) and Dana Scully (Gillian Anderson) who investigate X-Files: marginalized, unsolved cases involving paranormal phenomena. Mulder believes in the existence of aliens and the paranormal while Scully, a medical doctor and a skeptic, is assigned to make scientific analyses of Mulder's discoveries to debunk his work and thus return him to mainstream cases. Early in the series, both agents become pawns in a larger conflict and come to trust only each other and a very few select people. They develop a close relationship which begins as a platonic friendship, but becomes a romance by the end of the series. In addition to the series-spanning story arc, "Monster-of-the-Week" episodes form roughly two-thirds of all episodes.
The X-Files is an American sci-fi/drama television series that aired from 1993 until 2002.
The term X-Files may also refer to several other articles:
"The X-Files" is a 1996 instrumental recorded by American film and television composer Mark Snow. It is a remixed version of the original theme Snow composed for the science fiction television series The X-Files in 1993. Released in March 1996 in most countries, it achieved a huge success, particularly in France where it reached number-one on the singles chart.
The composition has since been covered by DJ Dado and Mike Oldfield among others. The song was also used as background music for a sketch in the 1998 Alvin and the Chipmunks album The A-Files: Alien Songs where Alvin portrayed "Agent Moldy" and Brittany portrayed "Agent Scuzzy."
"The X-Files" typically used more instrumental music score than most hour-long dramas. According to the "Behind the Truth" segment on the Season 1 DVD, Mark Snow created the echo effect on his famous X-Files theme song by accident. Snow said that he had gone through several revisions, but Chris Carter felt that something was not quite right. Carter walked out of the room and Snow put his hand and forearm on his keyboard in frustration. Snow said, "this sound was in the keyboard. And that was it."
Sarah or Sara (/ˈsɛərə/;Hebrew: שָׂרָה, Modern Sara, Tiberian Śārā ISO 259-3 Śarra; Latin: Sara; Arabic: سارا or سارة Sāra;) was the wife and half–sister of Abraham and the mother of Isaac as described in the Hebrew Bible and the Quran. Her name was originally Sarai. According to Genesis 17:15, God changed her name to Sarah as part of a covenant after Hagar bore Abraham his first son, Ishmael.
The Hebrew name Sarah indicates a woman of high rank and is translated as "princess" or "noblewoman".
Sarah was the wife of Abraham, as well as being his half-sister, the daughter of his father Terah. Sarah was approximately ten years younger than her husband.
She was considered beautiful to the point that Abraham feared that when they were near more powerful rulers she would be taken away and given to another man. Twice he purposely identified her as being only his sister so that he would be "treated well" for her sake. No reason is given why Sarah remained barren (childless) for a long period of time. She was originally called "Sarai", which is translated "my princess". Later she was called "Sarah", i.e., "princess".
Sarah Jane Smith is a fictional character played by Elisabeth Sladen in the long-running BBC Television science fiction series Doctor Who and two of its spin-offs. In the fictional universe of Doctor Who and its spin-offs, Sarah Jane is a dogged investigative journalist who first encounters alien time traveller the Doctor while trying to break a story on a top secret research facility, and subsequently becomes his travelling companion on a series of adventures spanning the breadth of space and time. After travelling with the Doctor in four seasons of the show they suddenly part ways, and after this she continues to investigate strange goings-on back on Earth. Over time, Sarah Jane establishes herself as a committed defender of Earth from alien invasions and other supernatural threats, occasionally reuniting with the Doctor in the course of her own adventures, all the while continuing to work as a freelance investigative journalist.
Sarah Jane is one of the Doctor's longest-serving companions, co-starring in 18 stories with the Third and Fourth incarnations of the Doctor, on the programme from 1973 to 1976 (seasons 11 – 14). She and robotic dog K-9 appear in the 1981 television pilot K-9 and Company. She returned in the 20th-anniversary Fifth Doctor story The Five Doctors (1983) and the 30th-anniversary story Dimensions In Time (1993). After the programme's revival in 2005, she appears in several episodes with the Tenth Doctor, and once with the Eleventh Doctor, and as the central character of her own series The Sarah Jane Adventures from 2007 to 2011.
Sarah (alternatively spelled Sara) is a Jewish feminine given name found in many different areas of the world. Sarah is a consistently popular given name across Europe and North America, as well as in the Middle East—being commonly used as a female first name by Jews, Christians and Muslims alike, and remaining popular also among non-religious members of cultures influenced by these religions.
Frequently, the name refers to Sarah, the wife of Abraham in the Hebrew Bible, the Christian Old Testament, and the Islamic Quran. In Arabic, Hebrew, and Persian, it means woman of high rank, often simply translated as "Princess". In Modern Hebrew, "sarah" (שרה) is the word for "woman minister".
In the United States, Sarah has been counted among the top 150 given names since 1880, when name popularity statistics were first recorded in the United States. Sarah ranked among the top 10 names from 1978 to 2002, reaching a plateau of popularity from the early 1980s to 1988. Every year since and including 1989 it has fallen in popularity, but it remained the 30th most popular name for newborn girls in 2010. Its most common variant spelling, Sara, was number 121.
The next mind-bending chapter of THE X-FILES debuts with a special two-night event beginning Sunday, January 24th and continuing with its time period premiere on Monday, January 25th. The thrilling, six-episode event series, helmed by creator/executive producer Chris Carter and starring David Duchovny and Gillian Anderson as FBI Agents FOX MULDER and DANA SCULLY, marks the momentous return of the Emmy Award- and Golden Globe-winning pop culture phenomenon, which remains one of the longest-running sci-fi series in network television history. Subscribe to tvpromosdb on Youtube for more The X-Files season 10 promos in HD! Official website: http://www.fox.com/the-x-files Official Twitter page: https://twitter.com/thexfiles Official Facebook page: https://www.facebook.com/thexfilesonfox
the x files theme song
'Watching X-Files with no lights on'. For more awesome content, check out: http://whatculture.com/ Follow us on Facebook at: https://www.facebook.com/whatculture Catch us on Twitter: https://twitter.com/whatculture
X-files: They're the stories that made us want to believe. Join http://www.WatchMojo.com as we count down our picks for the Top 10 X-Files Episodes. Subscribe►►http://www.youtube.com/subscription_center?add_user=watchmojo Facebook►►http://www.Facebook.com/WatchMojo. Twitter►►http://www.Twitter.com/WatchMojo Instagram►►http://instagram.com/watchmojo Suggestion Tool►►http://www.WatchMojo.com/suggest Channel Page►►http://www.youtube.com/watchmojo For this list, we're paying attention to the episodes that had people abuzz around the watercoolers the next day, and fans on the internet talking for years to come. Special thanks to our users VincetVega, AlkisenSuper and TwOne Firdaus for submitting the idea using our interactive suggestion tool at http://www.WatchMojo.com/suggest Check out the ...
The Cigarette Smoking Man is a pivotal recurring character in the X-Files television series. Patreon - https://www.patreon.com/FilmComicsExplained Check out my videos on the Flukeman, Purity Virus and Mr Chuckle Teeth below Flukeman - https://www.youtube.com/watch?v=LAa4pxWBRoo&t=1s Purity Virus - https://www.youtube.com/watch?v=j3BNRC6PAiM&t=147s Mr Chuckle Teeth - https://www.youtube.com/watch?v=BS83jgH-U-Q To purchase a copy of The X-Files head to - https://amzn.to/2Pf2bNT ABOUT ME This channel was created to assist in answering all your questions about Films, Comics and Popular culture in a fun and engaging way! Disclaimer: I do not own rights to any of the source materials I used in this work, appealing to allowance made for "fair use" purposes such as criticism, comment, news r...
X-files episode 8 season 11 avec sous-titre français. Bon visionnage :)
Too Long; Didn't Watch (TL;DW) is a weekly Mashable series where we summarize movies & TV series in mere minutes. Each episode features a mix of recap, analysis and humor for busy people like you. New episodes every other Monday! Subscribe for TL;DW and more: http://on.mash.to/subscribe More TL;DW episodes: http://on.mash.to/TLDW MASHABLE ON YOUTUBE Subscribe: http://on.mash.to/subscribe Best of playlist: Best of playlist: http://on.mash.to/BestOf MASHABLE ACROSS THE WEB Mashable.com: http://on.mash.to/1hCcRpl Facebook: http://on.mash.to/1KkCTIP Twitter: http://on.mash.to/1Udp1kz Tumblr: http://on.mash.to/1NBBijY Instagram: http://on.mash.to/1U6D40z Google+: http://on.mash.to/1i27L5R Mashable is a leading global media company that informs, inspires and entertains the digital generation. ...
Ryan Reynolds, Lucy Liu, and more all had small parts in the X-Files at the very beginning of their careers. ---------------------------------- Follow IGN for more! ---------------------------------- IGN OFFICIAL APP: http://www.ign.com/mobile FACEBOOK: https://www.facebook.com/ign TWITTER: https://twitter.com/ign INSTAGRAM: https://instagram.com/igndotcom/?hl=en WEBSITE: http://www.ign.com/ GOOGLE+: https://plus.google.com/+IGN
Gillian gets very flustered while trying to remember a reason she and David didn’t get along in the past. SUBSCRIBE to get the latest #KIMMEL: http://bit.ly/JKLSubscribe Watch the latest Halloween Candy Prank: http://bit.ly/KimmelHalloweenCandy Watch Mean Tweets: http://bit.ly/JKLMeanTweets8 Connect with Jimmy Kimmel Live Online: Visit the Jimmy Kimmel Live WEBSITE: http://bit.ly/JKLWebsite Like Jimmy Kimmel Live on FACEBOOK: http://bit.ly/JKLFacebook Follow Jimmy Kimmel Live on TWITTER: http://bit.ly/JKLTwitter Follow Jimmy Kimmel Live on INSTAGRAM: http://bit.ly/JKLInstagram About Jimmy Kimmel Live: Jimmy Kimmel serves as host and executive producer of Emmy-winning "Jimmy Kimmel Live," ABC's late-night talk show. "Jimmy Kimmel Live" is well known for its huge viral video success...
A complete playthrough of Fox Interactive's 1999 FMV graphic-adventure game for the Sony PlayStation, The X-Files. This is pretty ambitious (and pretty good) as far as interactive movie/adventure games go. It's got pretty high production values with cameo appearances by all of the major characters from the show The writing is a bit hokey, but then, that just keeps it all the more authentic! A really enjoyable game with excellent quality video (it should when is spans four discs!) and interactivity - not in the Night Trap kind of way, but in the way Sierra managed it in games like Phantasmagoria and The Beast Within. It's nowhere near as good as either of those, but just for the sake of comparison - it's not JUST click and watch video clips. It's a nice departure from the norm for the gen...
THE X-FILES Season 11 Official Trailer (2018) TV Show HD © 2017 - FOX Comedy, Kids, Family and Animated Film, Blockbuster, Action Cinema, Blockbuster, Scifi Movie or Fantasy film, Drama... We keep you in the know! Subscribe now to catch the best movie trailers 2017 and the latest official movie trailer, film clip, scene, review, interview.
This is another scene I can't believe isn't (as far as I can see) on YouTube. Eddie Van Blundht (the 'h' is silence) is played by Darin Morgan, a brilliant writer on the show, as well as actor of the Flukeman! Small Potatoes is Season 4 Episode 20 of The X Files. Directed by: Cliff Bole (his first directing credit for the show) Written by: Vince Gilligan
The X-Files pilot episode played out at The Theatre On King in Peterborough, ON Canada on June 30, 2015 to an excited audience. Directed by Kate Story and featuring a group of local actors and tech this is part of a four episodes being staged.
I made this video for fun. But if this video gets into dumb copyright stuff I will delete. But wait it takes 3 strikes to get my channel removed, there are 3 sides on a triangle. Illuminati Confirmed!
The X-Files is an American science fiction horror drama television series created by Chris Carter. The program originally aired from September 10, 1993, to May 19, 2002, on Fox, spanning nine seasons, with 202 episodes and a feature film of the same name, before returning with a second film in 2008 and a six-episode tenth season in 2016. The series revolves around FBI special agents Fox Mulder (David Duchovny) and Dana Scully (Gillian Anderson) who investigate X-Files: marginalized, unsolved cases involving paranormal phenomena. Mulder believes in the existence of aliens and the paranormal while Scully, a medical doctor and a skeptic, is assigned to make scientific analyses of Mulder's discoveries to debunk his work and thus return him to mainstream cases. Early in the series, both agents become pawns in a larger conflict and come to trust only each other and a very few select people. They develop a close relationship which begins as a platonic friendship, but becomes a romance by the end of the series. In addition to the series-spanning story arc, "Monster-of-the-Week" episodes form roughly two-thirds of all episodes.
I've seen The Serpent and the Rainbow 5 million times
My usual unusual, my morning rich will confuse you
Got my city up on the block, I'm spinning some
Flintstones doables
You think about some rappers and the evil shit I do to
Fuck everybody, yea they think this more than you do to
I got a appetite for weaponry
You beatie with the semi while I open Sesami
Cookie face I corner, mediocre fire weapons see?
For murder I got the recipe
Freak on Ramsey's, body parts stuck up in the pantry
Limbs do not explain the light so let's estimate
Yup yup yup yup welcome to the corner where with diesel
fume I goggle
Spittin' flames, chop all your brains down to your
corridors
I fuck roll like it's 86 particles
Stage the purp, hear me ho
Get everything, you're on a road to high high
More evil than alive
It's the bla bla how I got to the ra ra ra
I'll beat the grandest body up until it's chilly con
carne
No rapper but a step for my vicinity
I'm wishing your career severe ear to ear literally
Manure labels, it's direction – gravity
Up and nice sincerity, he was gone but lil illiterately
You blooth shootin', Duke Nuke hit with heavy artillery
I mean it's so so severly
It smacked out your back
Paranormal activity
I got 40 gun totems that will pop off instantly
Yea, it's paranormal activity
Got phantoms, banshees that will kill your whole family
Yea, it's paranormal activity
It's the night of the creeps, you better not fall
asleep nigga
Yea, it's paranormal activity
That's a midnight dead white, we are on the creep nigga
Yea, it's paranormal activity
It's caution in the house pickin up with GO nigga
Yea, it's paranormal activity
I bring van Gogh's paranormal activity
Paranormal entities on the chimy I mean I need double D
Felomptous, throw that on the Ouija
This is my game, you will always be a weegy
Circus ring reckoning for the day that the heavens ring
After my door step I ain't going under the floor yet
Who's religious and who isn't
Why are the richest people jews and Christians
Who's offended by my euphemisms?
Blame my wallets and my jeans, I carry the true
religion
So I don't trick on no stupid bitches, that's
superstition
Focus like Chopin with the key
Smokin' loud gang, chauffeur rolling down university
Such as life, what a fucking life
I got a loving niggas skin is with you every night
Losing vitals cause their jewels they were in forfeit
Take 'em off, striptease on some Demi Moore shit
Wear it at the social arkita, what? More shit
Thought they'd never afford to get their Mr. Ed horse
shit
Seen demons out you never seen
In fact in my head put a hex on my melodies
Normal nigga I will never be
Better act a pair, too different for my era
I love too much mascara often white girls in horror
movies like Sarah Michelle Gellar
All fellas wild fellas
Neighborhood midnight park dweller
Man I give you the picture like the art fella
Powder bitch slap your teeth
Ganking at your Mona Lisa on a freak
I'm courteous, doing 3 balls from pizza
Paranormal activity
I got 40 gun totems that will pop off instantly
Yea, it's paranormal activity
Got phantoms, banshees that will kill your whole family
Yea, it's paranormal activity
It's the night of the creeps, you better not fall
asleep nigga
Yea, it's paranormal activity
That's a midnight dead white, we are on the creep nigga
Yea, it's paranormal activity
It's caution in the house pickin up with sway
Yea, it's paranormal activity
Yea, it's paranormal activity
It's caution in the house pickin up
Yea, it's paranormal activity
The illest alive, 50 dope dealer pin die
Got your girl on the back with her heels to the sky
Wool in the fiber, sunset filling the vibe
That K indian burn if you're killin' your tribe
Act like I'm your son just to find what you hire
Realized that you let a fucking pilgrim inside
Yell! Catch you baggin, put your brains on the stair
My name sway now is grazed in the city of hell
City of Phil, gotta be really as hell
If you slip, watch your own blood drift in the shells
In this industry the bitch niggas halla and yell
How they rich but they ain't got a dollar for bail
You ain't rich til your kids got dollars to yell
And everybody in your squad getting dollars as well
Have points from the shotgun, double the shells
The man there, he's a hit with the poets as well
Back, my crowd's scared from the sounds of the gat
Fuck the nigga day up like he sat on his head
6-0, south-west, I put my saddle in man
Come to Philly, they will tell you how it go where I'm
It's real real
Paranormal activity
I got 40 gun totems that will pop off instantly
Yea, it's paranormal activity
Got phantoms, banshees that will kill your whole family
Yea, it's paranormal activity
It's the night of the creeps, you better not fall