- published: 25 Mar 2024
- views: 1136479
'+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 Fog is a 1980 American horror film directed by John Carpenter, who also co-wrote the screenplay and created the music for the film. It stars Adrienne Barbeau, Jamie Lee Curtis, Tom Atkins, Janet Leigh and Hal Holbrook. It tells the story of a strange, glowing fog that sweeps in over a small coastal town in California, bringing with it the vengeful ghosts of mariners who were killed in a shipwreck there exactly 100 years prior.
The Fog was Carpenter's first theatrical film after the success of his 1978 horror film Halloween, which also starred Jamie Lee Curtis. Although initially given mixed to positive reviews, the film was a commercial success and has achieved a cult following years since its release. A remake of the film was made in 2005.
As the Californian coastal town of Antonio Bay is about to celebrate its 100th anniversary, paranormal activity begins to occur at the stroke of midnight. Town priest Father Malone is in his church when a piece of masonry falls from the wall, revealing a cavity containing an old journal, his grandfather's diary from a century ago. It reveals that in 1880, six of the founders of Antonio Bay (including Malone's grandfather) deliberately sank and plundered a clipper ship named the Elizabeth Dane. The ship was owned by Blake, a wealthy man with leprosy who wanted to establish a leper colony nearby. Gold from the ship was used to build Antonio Bay and its church.
The Fog is a 2005 horror film directed by Rupert Wainwright and starring Tom Welling, Selma Blair and Maggie Grace. It is a remake of John Carpenter's 1980 film of the same name and was produced by Carpenter and Debra Hill who co-wrote the original film. The film's narrative follows a strange fog that sweeps in over an island town in the coast of Oregon; it brings vindictive apparitions of mariners who were murdered there exactly 100 years prior. The townspeople find themselves trapped and fighting for their lives while investigating the truth of their history.
William Blake arranges to purchase half of Antonio Island, off the coast of Oregon, to establish a leper colony for his people. However, island residents Patrick Malone, Norman Castle, Richard Wayne and David Williams double-cross Blake. During a foggy night, they loot his clipper ship the Elizabeth Dane and set it on fire, killing all aboard. 134 years later, the residents of Antonio Island prepare to honor their founding fathers—the same men who burned the Elizabeth Dane—and a statue of them is to be unveiled on the town's anniversary. During a boating trip, Nick Castle and his friend Spooner unwittingly disturb a bag containing a pocket-watch and a hairbrush from the Elizabeth Dane lying on the seabed.
The Fog is a horror novel by English writer James Herbert, published in 1975. It is about a deadly fog that drives its victims insane when they come into contact with it. Herbert's second book, it is completely unrelated to the 1980 film of the same name by John Carpenter.
John Holman is a worker for the Department of the Environment investigating a Ministry of Defence base in a small rural village. An unexpected earthquake swallows his car releasing a fog that had been trapped underground for many years. An insane Holman is pulled up from the crack, a product of the deadly fog.
Soon the fog shifts and travels as though it has a mind of its own, turning those unfortunate enough to come across it into homicidal/suicidal maniacs who kill without remorse, and often worse. Respectable figures including teachers and priests engage in crimes ranging from public urination to paedophilia. A Boeing 747 pilot is also made insane and crashes the aircraft into the BT Tower in London.
Soul Assassins, Chapter 1 is the first album by Soul Assassins, group of rappers led by DJ Muggs.
"Chapter 1" is the first solo album of Japanese idol Yuma Nakayama.
Chapter 1 is released in Japan on November 26, 2014 by Johnnys Entertainment. There are two versions the Limited Edition and the Regular Edition. This album also has an event ID for Nakayama Yuma's Special Event in 2015 (together with the event IDs in Get Up! single).
CD
DVD
①Booklet
②DVD
③Nakayama Yuma Special Event ID
①Booklet ②Nakayama Yuma Special Event ID(First Press)
"Chapter 1" (sometimes "Episode 101") is the pilot episode of the American political thriller drama television series House of Cards and is the first episode of the first season. It premiered on February 1, 2013, when it was released along with the rest of the first season on the American streaming service Netflix. This episode became the first web television webisode to earn Primetime Emmy Awards and nominations. "Chapter 1" was written by series developer Beau Willimon and directed by executive producer David Fincher. The episode also earned 3 other Emmy nominations as well as WGA: Episodic Drama and DGA – Drama Series nominations.
Frank Underwood (Kevin Spacey) is an ambitious Democratic congressman and the House Majority Whip. Underwood helped ensure the election of President Garrett Walker (Michel Gill), who promised to appoint Underwood as Secretary of State. However, before Walker is sworn in, Chief of Staff Linda Vasquez (Sakina Jaffrey) announces that the president will not honor the agreement and will instead nominate Senator Michael Kern. Furious at Walker's betrayal, Underwood and his wife Claire (Robin Wright), an environmental activist, make a pact to destroy Kern. When Zoe Barnes (Kate Mara) makes her resources available, she becomes one of their pawns.
A sun dance is a Native American ceremony. Sun dance or Sundance may also refer to:
LEAVE A LIKE IF YOU ENJOYED!!!! GAMER CHANNEL: @calvinsucks NIGHT: @niqhthd IN GAME CAPES & HAT LINK: https://store.lunarclient.com/category/calvin tiktok: https://www.tiktok.com/@igncalvin INSTAGRAM: CXLVXNS
A Northern California fishing town, built 100 years ago over an old leper colony, is the target for revenge by a killer fog containing zombie-like ghosts seeking revenge for their deaths. Released on 1980 Directed by: John Carpenter Starring: Adrienne Barbeau, Jamie Lee Curtis, Janet Leig
Written by Full Blown Entertainment, Machel Montano, Nikholai Greene & Kasey Phillips Produced & Mixed by Precision Productions Mastered by Sterling Sound, New York. "The FOG", imaginatively puts into words and music the transcendent mass hysteria that overwhelms all senses, uniting participants of this one of a kind festival in celebratory spirit, as differences melt away, euphoria rises, and bodies join in gyrations raising a mystical dust that covers parading souls for Jouvert, Carnival Tuesday or on its ever popular manifestation, Machel Monday. This release captivates the essence of the rapture that envelopes every fete, masquerader, and music aficionado during this time, and is the result of the sublime combination of Precision Productions, Full Blown Entertainment, and Machel Monta...
Starring: Tom Welling, Maggie Grace, Selma Blair The Fog (2005) Official Trailer 1 - Selma Blair Movie A thick fog enshrouds a coastal town. The fog is reminiscent of one 100 years earlier that wrecked a ship and drowned the seamen aboard. Sure enough, the sailors are back and out to kill whomever they find. Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn We're on SNAPCHAT: http://bit.ly/2cOzfcy Like us on FACEBOOK: http://bit.ly/1QyRMsE Follow us on TWITTER: http://bit.ly/1ghOWmt Welcome to the Fandango MOVIECLIPS Trailer Vault Channel. Where trailers from the past, from recent to long ago, from a time before YouTube, can be enjoyed by all. We search near and far for original movie trailer ...
bet you can't hit that like goal 👀 GAMER CHANNEL: @calvinsucks IN GAME CAPES & HAT LINK: https://store.lunarclient.com/category/calvin tiktok: https://www.tiktok.com/@igncalvin INSTAGRAM: CXLVXNS
my lunar cosmetics! https://lunarclient.com/stimpy follow my socials! https://twitch.tv/stimp https://twitter.com/StimpyPvP https://youtube.com/stimpFPS (2nd Channel) Music:
#minecrafthorror #horrorgaming #minecraft100days #SwayleMC #minecrafthorror #minecraft100days -------------------------------------------------------------------------------------------------- Inspired by @Calvin9000 -------------------------------------------------------------------------------------------------- JOIN THE CORD - https://discord.gg/swayle #cavedweller #minecrafthorror #thegoatman #doyoucopy -------------------------------------------------------------------------------------------------- Video Concept: There's A New Dweller.....The Goatman -------------------------------------------------------------------------------------------------- About Me: Hey there, I'm SwayleMC, your go-to source for entertaining Minecraft content! I specialize in crafting hilarious video...
SUBSCRIBE Leave a like FOR SEASON TWOOO!!!! GAMER CHANNEL: @calvinsucks IN GAME CAPES & HAT LINK: https://store.lunarclient.com/category/calvin twitter: https://twitter.com/calvinsucks tiktok: https://www.tiktok.com/@igncalvin
Subscribe if like this content it free and it would mean a lot to me: https://www.youtube.com/channel/UCunG5ZATim8uJwQGKifo-LA MODS From the fog: https://www.curseforge.com/minecraft/mc-mods/from-the-fog Man from the fog: https://www.curseforge.com/minecraft/mc-mods/the-man-from-the-fog Cave dweller: https://www.curseforge.com/minecraft/mc-mods/better-cave-dweller Ambient sounds: https://www.curseforge.com/minecraft/mc-mods/ambientsounds Eyes in the darkness: https://www.curseforge.com/minecraft/mc-mods/eyes-in-the-darkness Night lurker: https://www.curseforge.com/minecraft/mc-mods/the-midnight-lurker Sound physics echos:https://modrinth.com/mod/sound-physics-remastered Shaders I use BSL: https://www.curseforge.com/minecraft/shaders/bsl-shaders Complementary: https://www.c...
" 不知一切的人哪,去到那個一切未知的目的地。" 完整聆聽 郭頂 2016 作品《飛行器的執行週期》 🎧 Apple Music ▶️ https://goo.gl/XGE0x9 🎧 Spotify ▶️ https://goo.gl/gB5WBG 🎧 KKbox ▶️ https://goo.gl/RSVhWM 🎧 myMusic ▶️ https://goo.gl/fMablf 🎧 Omusic ▶️ https://goo.gl/G37LCN 🌟 郭頂官方微博 ✅ https://goo.gl/Dzj905 🌟 郭頂 Facebook 粉絲專頁 ✅ https://goo.gl/8DH5yz 🌟 環球音樂華語部微博 ✅ https://goo.gl/LuW8oE 🌟 環球音樂台灣 Facebook ✅ https://goo.gl/2b7jh8 淒美地 詞曲 / 郭頂 曾經我是不安河水 穿過森林誤入你心 沒計劃紮營 擱下了是非 一去不回 如今我是造夢的人吶 悵然若失流連忘返啊 等潮汐來臨 我就能記起 你的樣子 我沒看過 平坦山丘 怎麼觸摸 開花沼澤 嘿 等我找到你 試探你眼睛 心無旁騖地 相擁 那是我 僅有的溫柔也是我愛你的原因 在這淒美地 曾經這裡是無人之地 為何沒留下有效地址 肆意的消息 迷失在十月 沒有音訊 如今這裡是風和日麗 等你再回來雨過遷徙 看夜幕將近 我又能記起 你的樣子 我還記得 平坦山丘 如今身在 開花沼澤 嘿 等我找到你 試探你眼睛 心無旁騖地 相擁 那是我 僅有的溫柔也是我愛你的原因 在這淒美地 在這之前 別說再見 我已再經不起離別 在這之前 別說再見 我已經開始了想念 在這之前 別說再見 請幫我停住這時間 就這樣 別安慰 嘿 等我找到你 望住...
The Fog is a 1980 American horror film directed by John Carpenter, who also co-wrote the screenplay and created the music for the film. It stars Adrienne Barbeau, Jamie Lee Curtis, Tom Atkins, Janet Leigh and Hal Holbrook. It tells the story of a strange, glowing fog that sweeps in over a small coastal town in California, bringing with it the vengeful ghosts of mariners who were killed in a shipwreck there exactly 100 years prior.
The Fog was Carpenter's first theatrical film after the success of his 1978 horror film Halloween, which also starred Jamie Lee Curtis. Although initially given mixed to positive reviews, the film was a commercial success and has achieved a cult following years since its release. A remake of the film was made in 2005.
As the Californian coastal town of Antonio Bay is about to celebrate its 100th anniversary, paranormal activity begins to occur at the stroke of midnight. Town priest Father Malone is in his church when a piece of masonry falls from the wall, revealing a cavity containing an old journal, his grandfather's diary from a century ago. It reveals that in 1880, six of the founders of Antonio Bay (including Malone's grandfather) deliberately sank and plundered a clipper ship named the Elizabeth Dane. The ship was owned by Blake, a wealthy man with leprosy who wanted to establish a leper colony nearby. Gold from the ship was used to build Antonio Bay and its church.
The Boy Vs. The Cynic, Chapter one, page one.
I'll start from the top...
I'll embrace dreams again when I can breath again
And at that point I won't be needing them
It became clear to me that I was fighting a war I couldn't win
You don't make it on your own merit
Only royalty inherits the kingdom
And that's a system good intentions can't help
Your courage is not good here so don't try to excel
What a sad day when you realize nothing can change
The revolution didn't leave you it never came
There will be no parades, no royal balls
Just long days topped off with last calls for alcohol
Go to sleep wake up and repeat the same routine
Smooth skin dressed with wrinkles and brown eyes
With dark rings and entertainers sing of extremes that don't exist for you or me
When real life is reality TV no wonder our youth don't believe in anything
It's all a joke there are no heroes just those of us with high hopes
It's just not that simple
I'm not trying to save it all I just want to create a ripple
And even if one individual is affected it's monumental with an unusual perspective
That's beautiful in essence traditional thinking won't suggest this
Is life really that precious well yes it is
But there will be no celebrations or congratulations
No pat on the back just your mind intact
And the freedom to feel your heart beat at the speed of life
Go to sleep tonight knowing you did it right
And rest easy outside of a system that resents you for not doing what they expect you to do
Psychologically wear you down and then they make the suggestion that you get on a prescription to deal with your depression
Anxious lazy temperamental obese
That's what money makers like to call a disease
And they'll be looking for or creating new problems with profitable solutions
To solve them but you won't get any better you'll just come back for more
Until your medicine drawer is filled with unreliable cures
And that's the way of the beast
And I can't do nothing about it
I could shout it in a room that's crowded but I doubt it'd make a difference
So ignorance will be my disguise cause 21st century America likes its witchcraft civilized