- published: 19 Sep 2011
- views: 6873
'+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; })); }); -->
Sam Donahue (18 March 1918 – 22 March 1974) was an American swing music jazz tenor saxophonist, trumpeter and musical arranger. Born in Detroit, Michigan, he is known for his work with Gene Krupa, Tommy Dorsey, Benny Goodman, Billy May, Woody Herman, Stan Kenton, among many others.
Donahue was born Samuel Koontz Donahue in Detroit. He played in the bands of Gene Krupa, Harry James, and Benny Goodman. During World War II, Donahue took over the Navy band of Artie Shaw, and after the war he assembled and led a group that had several successful recordings for Capitol Records.
He is the father of guitarist Jerry Donahue and plays sax on the Fotheringay 2 album.
"Take Me Away" is the song recorded by the Dutch group Twenty 4 Seven. It was released as the third single from their second album, Slave to the Music, in 1994. Unlike previous singles from the album, the song did not feature any raps. The single was a hit in Austria, Germany, Switzerland, Sweden and Belgium, and peaked at number 11 in the Netherlands on the Dutch Top 40. (In America, "Slave to the Music" and "Leave Them Alone" were their only minor hits in that country). A studio video was shot in Johannesburg, Durban, and Cape Town (South Africa).
"Supersonic" is the debut single by the English rock band Oasis, written by lead guitarist Noel Gallagher. The song appears on their debut album Definitely Maybe, released in August 1994.
The song was released on 11 April 1994 and peaked at number 31 on the UK Singles Chart, Oasis's lowest-peaking single. However, over time it has amassed sales of over 215,000, making it their 13th biggest selling single ever in the UK, even outselling their 2002 number one "The Hindu Times", and both of their 2005 number ones, "Lyla" and "The Importance of Being Idle".
"Supersonic" was also the band's first single to chart in the United States, where it peaked at number 11 on the US Billboard Modern Rock Tracks chart on 10 December 1994. The song was performed by the band on their debut national TV performance on Channel 4's The Word. It remains a favourite song of both the band and their fans (on the Definitely Maybe DVD, Noel cites it as his favourite Oasis song). The single went silver in the UK in 2006.
"Pocketful of Sunshine" is a song performed by British singer and songwriter Natasha Bedingfield, released as the second single from her second North American studio album of the same name (2008). Bedingfield co-wrote the song together with American songwriter Danielle Brisebois and American musician and songwriter John Shanks; Shanks also produced the track as well as performing on most of the instruments present. Epic Records serviced the song to mainstream radios on 11 February 2008 in the United States. It received an international release in spring 2011 to promote the release of Strip Me Away (2011).
Bedingfield noted "Pocketful of Sunshine" as her favorite, stating that it centers on escaping from one's troubles. It adapts dance-pop and adult contemporary styles, differing from her previous recordings. Lyrically, the song discusses escapism and finding a peaceful place in difficult situations. The message is amplified by the melancholic tone of the lyrics mixing with the exuberance displayed in Bedingfield's voice. "Pocketful of Sunshine" was well received by contemporary music critics; the majority of them named it as one of the album's highlights. Several critics also praised it as a bright and lively summer tune.
Sam Donahue (18 March 1918 -- 22 March 1974) was an American swing music jazz tenor saxophonist, trumpeter and musical arranger. Born in Detroit, Michigan, he is probably best known for his work with Gene Krupa, Tommy Dorsey, Benny Goodman, Billy May, and many others. He is the father of guitarist Jerry Donahue and plays sax on the Fotheringay 2 album. (extract from Wikipedia 2011)
As a “Big Band” purist, I have always had strong feelings about “Ghost Bands”. In case you don’t know, a “Ghost Band” is a Big Band that has continued to exist and perform after the death of it’s leader. They are led by new leaders. In my opinion, most “Ghost Bands” lack the drive and excitement of the band under the replacement leaders. I make no apology for saying this, because I have heard them all. (To be fair, the average listener can’t tell the difference. However I have been listening to Big Bands since I was a child, and have played in them since 1971) I recently purchased a cd by a famous “Ghost Band” under a leader that continues to lead that band. The cd seems to me to be going through the motions. They play all the correct notes, but the music is executed listlessly. A w...
Album:" Sam Donahue / Dance Date " Recorded:1950's
A Rainy Night In Rio (Robin-Schwartz) by Sam Donahue & his Orchestra, vocal by Sam Donahue A top-10 radio play track for the Donahue band, Arthur Schwartz and Leo Robin wrote this tune plus “A Gal In Calico” and “Oh, But I Do” for the Warner Brothers musical “The Time, The Place, And The Girl.” THE 1947 HITS ARCHIVE - here in one place, a good-quality library of original-release-version best-sellers and songs that made an impact that were either released or enjoyed a major chunk of their popularity within the calendar year 1947 (some were recorded in 1946). . ---------------------------------------------------------------------------------------------- The three* MusicProf channels are home to The HITS ARCHIVES, YouTube’s most comprehensive collection of U.S. ‘popular music’ recordings f...
The special service of the war department presents Downbeat! Recorded: 1944, Los Angeles, CA 1.) Theme Song (Minor Deluxe) 0:00 2.) Just You, Just Me 0:46 3.) Dinah 3:24 4.) I Can´t Give You Anything But Love (Vocal: Rocky Coluccio) 8:23 5.) Homeward Bound 11:15 6.) Outro (Minor Deluxe)14:06 FAIR USE DISCLAIMER: I do not own copyright for this copyrighted artwork, but under Section 107 United States Copyright Law as noted by the United States Copyright Office (Copyright Act 1976), allowance is made for fair use for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. I state here in a good faith that I have made and uploaded here this copy of this copyrighted artwork completely for the purposes of teaching and research, that my action - i.e. my...
Sam Donahue (1918-1974) recorded this track for Capitol on June 11, 1945.
Sam Donahue's US Navy Band of the Liberation Forces from 1945 and the US Navy Band Commodores of 1976. Two classic bands separated by 31 years. Lots of good music and historical facts.
Here is a great record from the forgotten band of Sam Donahue (1918-1974). Sam recorded this bouncy number for Capitol on July 30, 1946 with Bill Lockwood on vocal. Whatever happened to Bill Lockwood?
The Whistler (Dickinson-Hatch) by Sam Donahue & his Orchestra, vocal by Shirley Lloyd and group Note the composer credits on this novel adaptation of the well-known radio mystery program theme for “The Whistler” (CBS 1942-1955): lyrics by Hal Dickinson of the Modernaires, with the original theme from the pen of long-time radio & TV composer Wilbur Hatch, now best-remembered for his years as musical director for Desilu Studios and his music contributions to the various Lucille Ball television programs, beginning with “I Love Lucy.” THE 1947 HITS ARCHIVE - here in one place, a good-quality library of original-release-version best-sellers and songs that made an impact that were either released or enjoyed a major chunk of their popularity within the calendar year 1947 (some were recorded in ...
Album:" Sam Donahue / Dance Date " Recorded:1950's
Oasis - 'Supersonic' (Official Video) [HD Remastered] Taken from the album 'Definitely Maybe' Directed by Mark Szaszy ‘Definitely Maybe’ - Deluxe 30th Anniversary Editions, released 30th August 2024. Featuring unheard Monnow Valley versions and Sawmills Studios outtakes. Pre-order now: https://OasisMusic.lnk.to/DM30YP SUBSCRIBE ▶︎ https://Oasis.lnk.to/YTSubscribeYo Listen to 'Definitely Maybe': https://Oasis.lnk.to/DefMaybeID Stream the best of Oasis playlists: https://Oasis.lnk.to/OASISESSENTIALSYo Join Oasis online: Website: https://Oasis.lnk.to/WebsiteYo Official Store: https://Oasis.lnk.to/shopYo Facebook: https://Oasis.lnk.to/FacebookYo Twitter: https://Oasis.lnk.to/TwitterYo Instagram: https://Oasis.lnk.to/InstagramYo Lyrics: I need to be myself I can't be no one else I'm fee...
Provided to YouTube by The Orchard Enterprises Supersonic (Remastered) · Oasis · Noel Gallagher Definitely Maybe (Deluxe Edition Remastered) ℗ 2014 Big Brother Recordings Ltd Released on: 2014-05-19 Producer: Oasis Producer: Mark Coyle Music Publisher: Dead Leg Music/Sony/ATV Music Publishing Ltd Auto-generated by YouTube.
supersonic by oasis I do not own any of this music.
The best version ever Enjoy
1st night https://youtube.com/playlist?list=PL_9HGFkD4x5cchveGcXz5fqBi3GAc7q2h 2nd night https://youtube.com/playlist?list=PL_9HGFkD4x5e73cL2CZ_CFP9daA9M0c0y Twitter https://twitter.com/Mint_Titan37 Instagram https://www.instagram.com/mint_titan37/ #oasis #オアシス #OasisKnebworth1996 #Supersonic #洋楽 #ロック #洋ロック
Oasis - Supersonic (Live Wembley 2008) (High Quality video) (HD)
Album: Definitely Maybe Spotify: https://open.spotify.com/track/2VNCp5qBfG9kXxMclBFYod?si=foXUCTnoTO6ixORKKIrwtg Supersonic Lyrics: I need to be myself I can't be no one else I'm feeling supersonic Give me gin and tonic You can have it all but how much do you want it? You make me laugh Give me your autograph Can I ride with you in your BMW ? You can sail with me in my yellow submarine You need to find out 'Cos no one's gonna tell you what I'm on about You need to find a way for what you wanna say But before tomorrow 'Cos my friend said he'd take you home He sits in a corner all alone He lives under a waterfall Nobody can see him Nobody can ever hear him call [2x] You need to be yourself You can't be no one else I know a girl called Elsa She's into Alka Seltzer She sniffs it throu...
Oasis - 'Supersonic' (Official Video, UK Version) Taken from album: 'Definitely Maybe' To celebrate the 30th anniversary of the seminal debut single, Oasis will be re-releasing the original CD, plus a limited edition numbered and pearl coloured 7”, on April 12th 2024. Pre-order here: https://oasismusic.lnk.to/Supersonic30 Directed by: Mark Szaszy SUBSCRIBE ▶︎ https://Oasis.lnk.to/YTSubscribeYo Listen to ‘Definitely Maybe’: https://Oasis.lnk.to/DefMaybeID Stream the best of Oasis playlists: https://Oasis.lnk.to/OASISESSENTIALSYo https://www.youtube.com/playlist?list=PLBeeiCx5Kc2uJ7TjYPpQyLaNkHDKegMBB Join Oasis online: Website: https://Oasis.lnk.to/WebsiteYo Official Store: https://Oasis.lnk.to/shopYo Facebook: https://Oasis.lnk.to/FacebookYo Twitter: https://Oasis.lnk.to/TwitterY...
Liam Gallagher performs Supersonic at Reading & Leeds 2024. Watch more highlights on BBC iPlayer: https://www.bbc.co.uk/iplayer/episodes/b007xt4m Listen to sets and highlights on BBC Sounds: https://www.bbc.co.uk/sounds/brand/m00224qy Follow all on social @BBCR1 / @BBCRadio1
Sam Donahue (18 March 1918 – 22 March 1974) was an American swing music jazz tenor saxophonist, trumpeter and musical arranger. Born in Detroit, Michigan, he is known for his work with Gene Krupa, Tommy Dorsey, Benny Goodman, Billy May, Woody Herman, Stan Kenton, among many others.
Donahue was born Samuel Koontz Donahue in Detroit. He played in the bands of Gene Krupa, Harry James, and Benny Goodman. During World War II, Donahue took over the Navy band of Artie Shaw, and after the war he assembled and led a group that had several successful recordings for Capitol Records.
He is the father of guitarist Jerry Donahue and plays sax on the Fotheringay 2 album.
[Verse]
Another Mission
Of the invincible
Another Mission
Of the incorruptible
Get Ready!
Throw me Away!
Take Me Away!
[Pre-chorus]
Are You Afraid
For the fight of your life!
[chorus]
Let the flame burn away(Burn away)
Remove the fear of your mind(Remove!)
Turn Away from the the things you want to find!
Take Me Away!
I'm beginning to break
Take Me Away!
Don't Make me take!
Just take me away!
I'm turning away...from you
I'm throwing away...everything about you
I'm so tired of you.Leave me alone!
[verse2]
Your Unbreakable
Your Unshakeable
Your Indestructible
Your Invincible(invincible)
Your Unbreakable
Your Unshakeable
Your Indestructible
Your Invincible(invincible)
[pre-chorus]
Are You Afraid
For the fight of your life!
[Chorus]
Let the flame burn away(Burn away)
Remove the fear of your mind(Remove!)
Turn Away from the the things you want to find!
Take Me Away!
I'm beginning to break
Take Me Away!
Don't Make me take!
Just take me away!
I'm turning away...from you
I'm throwing away...everything about you
I'm so tired of you.Leave me alone!
[Bridge]
Feel the flame
Nothings the same
Every,Broken,Enemy,Will Die!
Orders to kill you!
Unbreakable
Unshakeable
Your Idestructible
Your Invincible
Unbreakable
Unshakeable
Your Idestructible
Your Invincible!
[pre chorus]
Are You Afraid
For the fight of your life
Are You Afraid
For the fight of your life
Are You Afraid
For the fight of your life
Are You Afraid
For the fight of your life!
[chorus]
Let the flame burn away(Burn away)
Remove the fear of your mind(Remove!)
Turn Away from the the things you want to find!
Take Me Away!
I'm beginning to break
Take Me Away!
Don't Make me take!
Just take me away!
I'm turning away...from you
I'm throwing away...everything about you