- published: 24 Jul 2018
- views: 1230658
'+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; })); }); -->
Set the World on Fire is the second studio album by American rock band Black Veil Brides, released through Lava Records/Universal Republic Records on June 14, 2011. It is the first Black Veil Brides album with Christian "CC" Coma playing the drums. He replaced Sandra Alvarenga after her departure to join the band Modern Day Escape. The title track, "Set the World on Fire," was intended for use in Scream 4, but it was not included in the film. Instead, an extended preview was released for fans. "Fallen Angels" was the first single released in support of the album, accompanied by a music video directed by Nathan Cox. On May 3, a preview for another song titled "Youth and Whisky", was released online. It was then announced that the single had been pushed back on iTunes to May 10, and would be provided free of charge to those who pre-ordered the album simultaneously. The full track listing of the album was released on iTunes, with an exclusive bonus track, titled "Smoke and Mirrors". On May 10, official pre-order packages became available on the official BVB Army website. On May 23, it was announced that the song "Set the World on Fire" would be featured in Transformers: Dark of the Moon and would be the official theme song for WWE Hell in a Cell (2011). During a live stream from Black Veil Brides Stickam channel on May 30, they announced that the music video for their next single, "The Legacy" would premiere on YouTube on June 6, 2011. The next music video to be released from the album was "Rebel Love Song". Two months after being announced, the music video was released via YouTube on October 19, 2011.
A fallen angel is an angel that has been exiled or banished from Heaven.
Fallen Angel(s) or The Fallen Angel(s) may also refer to:
Fallen Angel is a 1981 made-for-TV film which explores pedophilia. It was directed by Robert Michael Lewis, written by Lew Hunter, and stars Dana Hill, Melinda Dillon, Richard Masur, and Ronny Cox. It is a Green/Epstein Production in association with Columbia Pictures Television. The film received a Primetime Emmy Award nomination for Outstanding Drama Special, and won a Young Artist Award for star Hill in the category of Best Young Actress.
After its initial airing on CBS, it was later released on VHS by RCA/Columbia Pictures Home Video in 1983, and turned up occasionally via syndication and cable television into the mid-1990s.
As the film opens, a child pornography shoot is disrupted when its young star Michelle refuses to perform, throwing a tantrum over a promised visit to the zoo. The man who recruited her, pedophile Howard "Howie" Nichols (Masur), attempts to reason with director Dennis, claiming he "just needs a few days" (in order for Michelle to have an abortion, as Howard had gotten her pregnant). However, Dennis has already made up his mind to dump Michelle and gives Howard an ultimatum: find a more cooperative young "star" or he'll blow the whistle on the operation and disappear, leaving Howard to take the rap. Faced with this threat, Howard agrees to begin searching for a new girl to take Michelle's place. 12-year-old Jennifer Phillips (Hill), a recent elementary school graduate and aspiring gymnast fits the mold perfectly. She was voted "Most Shy" in her class, her father was recently killed in a robbery of his catering truck, she feels unable to communicate with her mother Sherry (Dillon), and she cannot accept her mother's new boyfriend (who was also her father's co-worker), Frank Dawson (Cox).
Tarik Azzougarh, better known as Cilvaringz, is a rapper, executive manager and hip hop producer associated with the Wu-Tang Clan. He was discovered by Ol' Dirty Bastard and Method Man at a Wu-Tang Clan concert in Amsterdam, the Netherlands on May 26, 1997. After impressing Ol' Dirty Bastard with a live freestyle on stage he was introduced to RZA who signed him to Wu-Tang Records in 1999.
Cilvaringz became the first official non American affiliate of the Wu-Tang Clan which at the time was unheard of and lead to mass coverage in most of Europe's major media outlets. From 2002 till 2006 he toured the world as the official opening act of RZA, Method Man & Redman, Raekwon and Ghostface Killah. On April 9, 2007 he released his first solo album I through five different record labels around the world. Since 2008, he has been working under the patronage of RZA on Wu-Tang's secret album Once Upon a Time in Shaolin. The unique release of the album as only one available copy in the world was unprecedented and became one of the biggest and most widely covered music stories of 2014. Forbes magazine broke the story exclusively on March 26, 2014.
Provided to YouTube by Universal Music Group Set The World On Fire · Black Veil Brides Set The World On Fire ℗ 2011 Universal Republic Records, a division of UMG Recordings, Inc. & Lava Music, LLC Released on: 2011-01-01 Producer: Josh Abraham Producer: Lucian Walker Studio Personnel, Engineer, Mixer: Ryan Williams Studio Personnel, Mastering Engineer: Eddie Schreyer Composer Lyricist: Andy Biersack Composer Lyricist: Ashley Purdy Composer Lyricist: Jacob Pitts Composer Lyricist: Jeremy Ferguson Composer Lyricist: Josh Abraham Composer Lyricist: Luke Walker Auto-generated by YouTube.
Provided to YouTube by Universal Music Group New Religion · Black Veil Brides Set The World On Fire ℗ 2011 Universal Republic Records, a division of UMG Recordings, Inc. & Lava Music, LLC Released on: 2011-01-01 Producer: Josh Abraham Producer: Lucian Walker Studio Personnel, Engineer, Mixer: Ryan Williams Studio Personnel, Mastering Engineer: Eddie Schreyer Composer Lyricist: Andy Biersack Composer Lyricist: Ashley Purdy Composer Lyricist: Jacob Pitts Composer Lyricist: Josh Abraham Composer Lyricist: Luke Walker Auto-generated by YouTube.
Provided to YouTube by Universal Music Group Ritual · Black Veil Brides Set The World On Fire ℗ 2011 Universal Republic Records, a division of UMG Recordings, Inc. & Lava Music, LLC Released on: 2011-01-01 Producer: Josh Abraham Producer: Lucian Walker Studio Personnel, Engineer, Mixer: Ryan Williams Studio Personnel, Mastering Engineer: Eddie Schreyer Composer Lyricist: Andy Biersack Composer Lyricist: Ashley Purdy Composer Lyricist: Jacob Pitts Composer Lyricist: Luke Walker Composer Lyricist: Anne Preven Auto-generated by YouTube.
Provided to YouTube by Universal Music Group Love Isn't Always Fair · Black Veil Brides Set The World On Fire ℗ 2011 Universal Republic Records, a division of UMG Recordings, Inc. & Lava Music, LLC Released on: 2011-01-01 Producer: Josh Abraham Producer: Lucian Walker Studio Personnel, Engineer, Mixer: Ryan Williams Studio Personnel, Mastering Engineer: Eddie Schreyer Composer Lyricist: Andy Biersack Composer Lyricist: Ashley Purdy Composer Lyricist: Jacob Pitts Composer Lyricist: Luke Walker Auto-generated by YouTube.
Black veil brides set the world on fire
Provided to YouTube by Universal Music Group Saviour · Black Veil Brides Set The World On Fire ℗ 2011 Universal Republic Records, a division of UMG Recordings, Inc. & Lava Music, LLC Released on: 2011-01-01 Producer: Josh Abraham Producer: Lucian Walker Studio Personnel, Engineer, Mixer: Ryan Williams Studio Personnel, Mastering Engineer: Eddie Schreyer Composer Lyricist: Andy Biersack Composer Lyricist: Jeremy Ferguson Composer Lyricist: Luke Walker Auto-generated by YouTube.
aki les dejo un bello recuerdo del tema que conoci a BVB set the world on fire del album set the world on fire y te dejo mi face espero ke te guste
Here is a song requested by one of my best friends, who wanted me to make this. SOOO ENJOY COMMENT AND SUBSCRIBE PLEASE! And don't forget to tell me what song you want next!
Coming 06.14.11 ! www.bvbarmy.com www.facebook.com/blackveilbrides www.twitter.com/officialbvb
Buy Now: iTunes: http://smarturl.it/BVBWretchediT Amazon: http://smarturl.it/BVBWretchedAMZP Music video by Black Veil Brides performing Fallen Angels. (C) 2011 Universal Republic Records, a division of UMG Recordings, Inc. & Lava Music, LLC
Help preserve the Forest and Rivers in Brazil Donate Bitcoins: 1NnJntUvmMAvB4BFjpM2vf1ESCycHJmdAR Author: Dan Robson Name do Disc: Black Angel Date Criation: 1997 This article is about the view of fallen angels in Christianity. For other uses, see Fallen angel (disambiguation). "Rebel angels" redirects here. For other uses, see Rebel Angels (disambiguation). Statue of the Fallen Angel, Retiro Park (Madrid, Spain). Statue of "The Fallen Angels" (1893) by Salvatore Albano at the Brooklyn Museum in New York City. In religion, a fallen angel is a wicked or rebellious angel that has been cast out of heaven. The term "fallen angel" does not appear in the Bible, but it is used of angels who sinned (such as those referred to in 2 Peter 2:4, "For if God did not spare angels when they sinned, ...
Music Black Angel - The end of war Author: Dan Robson Name do Disc: Black Angel Date Criation: 1997 This article is about the view of fallen angels in Christianity. For other uses, see Fallen angel (disambiguation). "Rebel angels" redirects here. For other uses, see Rebel Angels (disambiguation). Statue of the Fallen Angel, Retiro Park (Madrid, Spain). Statue of "The Fallen Angels" (1893) by Salvatore Albano at the Brooklyn Museum in New York City. In religion, a fallen angel is a wicked or rebellious angel that has been cast out of heaven. The term "fallen angel" does not appear in the Bible, but it is used of angels who sinned (such as those referred to in 2 Peter 2:4, "For if God did not spare angels when they sinned, but cast them into hell and committed them to chains of gloomy d...
Music Black Angel - Surviving the destruction of love Author: Dan Robson Name do Disc: Black Angel Date Criation: 1997 This article is about the view of fallen angels in Christianity. For other uses, see Fallen angel (disambiguation). "Rebel angels" redirects here. For other uses, see Rebel Angels (disambiguation). Statue of the Fallen Angel, Retiro Park (Madrid, Spain). Statue of "The Fallen Angels" (1893) by Salvatore Albano at the Brooklyn Museum in New York City. In religion, a fallen angel is a wicked or rebellious angel that has been cast out of heaven. The term "fallen angel" does not appear in the Bible, but it is used of angels who sinned (such as those referred to in 2 Peter 2:4, "For if God did not spare angels when they sinned, but cast them into hell and committed them to...
Fact Fixing from the original Hebrew and Greek Text. The Ancient Writings They Don't Want You to Know About. 3rd Backup Secrets of the Universe https://www.youtube.com/channel/UCgwIgRFftARiKPScoddPbQw Learn Biblical Hebrew the Easy Way Biblical Poetry that lost it's meaning to ''translation'' Hidden Secret Knowledge of Ancient Alchemical Poetry. Reading Ancient Language and Ratting Out the Jackals. Connect at Mewe https://mewe.com/i/denispucheu Facebook https://www.facebook.com/denis.pucheu.7/ Reddit https://www.reddit.com/user/1sthill/posts/ Gab https://gab.com/1stillcon Link to Pay pal Donations. https://www.youtube.com/redirect?q=https%3A%2F%2Fwww.paypal.com%2Fcgi-bin%2Fwebscr%3Fcmd%3D_s-xclick%26hosted_button_id%3D2NN5VVDZ72...
Black Angel - Music Do you love or do you die Author: Dan Robson Name do Disc: Black Angel Date Criation: 1997 This article is about the view of fallen angels in Christianity. For other uses, see Fallen angel (disambiguation). "Rebel angels" redirects here. For other uses, see Rebel Angels (disambiguation). Statue of the Fallen Angel, Retiro Park (Madrid, Spain). Statue of "The Fallen Angels" (1893) by Salvatore Albano at the Brooklyn Museum in New York City. In religion, a fallen angel is a wicked or rebellious angel that has been cast out of heaven. The term "fallen angel" does not appear in the Bible, but it is used of angels who sinned (such as those referred to in 2 Peter 2:4, "For if God did not spare angels when they sinned, but cast them into hell and committed them to chains...
Set the World on Fire is the second studio album by American rock band Black Veil Brides, released through Lava Records/Universal Republic Records on June 14, 2011. It is the first Black Veil Brides album with Christian "CC" Coma playing the drums. He replaced Sandra Alvarenga after her departure to join the band Modern Day Escape. The title track, "Set the World on Fire," was intended for use in Scream 4, but it was not included in the film. Instead, an extended preview was released for fans. "Fallen Angels" was the first single released in support of the album, accompanied by a music video directed by Nathan Cox. On May 3, a preview for another song titled "Youth and Whisky", was released online. It was then announced that the single had been pushed back on iTunes to May 10, and would be provided free of charge to those who pre-ordered the album simultaneously. The full track listing of the album was released on iTunes, with an exclusive bonus track, titled "Smoke and Mirrors". On May 10, official pre-order packages became available on the official BVB Army website. On May 23, it was announced that the song "Set the World on Fire" would be featured in Transformers: Dark of the Moon and would be the official theme song for WWE Hell in a Cell (2011). During a live stream from Black Veil Brides Stickam channel on May 30, they announced that the music video for their next single, "The Legacy" would premiere on YouTube on June 6, 2011. The next music video to be released from the album was "Rebel Love Song". Two months after being announced, the music video was released via YouTube on October 19, 2011.
(Dennis DeYoung)
"Hell, nobody's perfect
One hundred percent
No saint, no Pope, no King no Queen
No President
But our hunger for heroes
Has made us blind
We seek salvation
From the cup of human kind
But every time we hear the voice
Of some new Abraham
We wake too late to realize
It was just another scam
Fallen angel, fallen angel
Well I guess you were no angel after all
Fallen angel, fallen angel
You always take us with you when you fall
I said nobody's perfect
From head to toe
Not Einstein or Elvis or Lenin or Marx
Or Marilyn Monroe
Cause it's mostly illusion
In flesh and bone
An image, a look, a song or a book
That we all claim for our own
But even in the best of us
There lies beneath the skin
The tragic flaw in nature's law
That's bound to do us in
Fallen angel, fallen angel
Well I guess you were no angel after all
Fallen angel, fallen angel
You always take us with you when you fall
Pretty faces up on the silver screen
Flawless bodies on covers of magazines
They all look perfect to us
So rich and cool and bored
But hold the presses boys
They've checked into Betty Ford
Turns out nobody's perfect
From "A" to "Z"
It's best to follow your heart
Then to follow me
Cause I'm only a singer
Playin' a song
And I've just been making it up
As I went along
See I met a man who told me once
"Sincerity's the key
And once you learn to fake it
Son you're gonna be home free"
Fallen angel, fallen angel
Well I guess you were no angel after all
Fallen angel, fallen angel