- published: 14 Jan 2008
- views: 20764330
'+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; })); }); -->
Frederick William Hammond (born December 27, 1960) is a gospel singer, bass guitar player, and record producer.
Hammond has been active both as a member of the gospel performing group Commissioned, and as a solo artist (currently for Verity Records). He is a multiple Grammy-, Dove-, Stellar-award winner and nominee as a performer, producer and writer.
Hammond first gained recognition while playing bass guitar for the gospel group The Winans. By 1985 he was one of the six original members of the group Commissioned, participating in 10 of the group's 12 albums.
After his time with Commissioned ended, he regained fame in the gospel community after selling millions of albums with his musical group Radical For Christ.
In 2002 Hammond returned to the group Commissioned (now with members Keith Staten, Marvin Sapp, Mitchell Jones, Karl Reid, Michael Williams, and Marcus Cole) to produce the Commissioned Reunion Live album.
Hammond produced Make Me Like The Moon, a stirring gospel ballad co-written by Chanté Moore and Kenny Lattimore for their 2006 double-CD of gospel and R&B love songs entitled Uncovered/Covered (released October 10, 2006 by LaFace/Verity/Zomba Music Group). He also performs with Sean Combs on the album Thank You.
Keep On is the third album from original Pop Idol winner Will Young. The album was released on 21 November 2005, debuting at number 2 on the albums chart in the United Kingdom, as the album sold 107,318 copies in its first week. However, its biggest sales were 132,109, in its fifth week when the album placed at number 13. This is also his first album not to go number 1. It is, however, his second best-selling album, with sales of almost 1.01 million.
Keep On was released in two formats, CD and DualDisc. The Dual Disc contains the audio tracks on one side, and DVD content on the other, containing 25 minutes of exclusive footage.
Workin' Overtime is the seventeenth studio album by American singer Diana Ross, released on June 6, 1989 by Motown. It was Ross' first Motown album since Diana (1980), after Ross left the label for a then record breaking $20 million deal with RCA. Upon Diana's return to the label, Motown founder Berry Gordy, Jr. had sold the label to MCA Records and had positioned Jheryl Busby to the head of Motown. Ross was at first reluctant to return to her old label but Gordy promised her a lot in her return: not only would Ross return to Motown as a recording act, but she would be the label's part-owner. Ross reunited with collaborator Nile Rodgers to make this album - which was an attempt to gear her to a much younger audience bringing in new jack swing productions and house music.
Upon its release, Workin' Overtime received negative reviews from music critics and failed despite the title track reaching number three at R&B radio. The album peaked at number 116 on the Billboard 200 album chart, earning the distinction of being the lowest charting studio album of Ross' entire solo career. Its final sales were slightly higher than 100,000 copies in the United States. Additional singles "This House" and "Bottom Line" were issued, as well as a remix of "Paradise" remixed by Shep Pettibone, but all failed to revive the disc. In the United Kingdom the album charted at number 23 and was certified silver for sales in excess of 60,000 copies.
"Keep On" is a post-disco song written by Hubert Eaves III, James Williams of D. Train. It was remixed by François Kevorkian and Eaves III. The song reached #2 on Billboard 's Hot Dance Club Play chart and number #15 on R&B chart in 1982.
Purpose By Design 2000
Provided to YouTube by Verity Records No Weapon · Fred Hammond · Radical For Christ Spirit Of David ℗ 1996 Zomba Recording LLC Released on: 1997-03-30 Associated Performer: Fred Hammond & Radical For Christ Composer, Lyricist: Alvin Moore Auto-generated by YouTube.
A SERIES OF VIDEOS FROM FRED HAMMAONDS LIVE IN CHICAGO DVD SOMETHING THAT WILL INDEED CHANGE YOUR LIFE
Music video by Fred Hammond performing I Will Trust. (C) 2014 RCA Records, A division of Sony Music Entertainment
This is the first song in the HOOD BOOK Stage Play! Enjoy! #HoodBook #FredHammond #StagePlay
Performing Hood Book Stage Play on the Tom Joyner Cruise. Enjoy! #HoodBook #FredHammond #StagePlay
Provided to YouTube by Verity Records We're Blessed · Fred Hammond Nothing But The Hits: Fred Hammond ℗ 1991 Verity Gospel Music Group, a unit of Sony Music Entertainment Released on: 2003-09-07 Composer, Lyricist: Tommie Walker Producer: Dan Cleary Auto-generated by YouTube.
Thank you joining us this morning as we continue our series "Living Life by the Book." Series: Living Life by the The Book Sermon: Our Weapon Against Temptation Scripture: Luke 4:1-13 Shaping Questions: How do you manage when temptation comes your way? Scripture References: Exodus 16; 17:7; 20:3 Numbers 14 DEUTERONOMY 6:13,16; 8:2-3 1 Samuel 17 Psalm 2:8; 91:11-12 Matthew 4:1-11 Mark 1:12-13; 8:36 Romans 15:4 1 Corinthians 10:13 Galatians 5:18 Ephesians 5:18; 6:10-18 James 4:7 1 Peter 5:8-11 1 John 2:15-17 If you have questions about this message or a relationship with God, please feel free to contact us at the link below. Sycamore Hill Church-Wilmington https://www.sycamorehillchurch.org/wilmington Send Prayer Requests at https://sycamorehill.life/prayer-request SONG CREDITS: ...
Caleb Sean - Main Keys/MD Matt Ramsey - Bass Victor Encarnacion - Guitar Tony Taylor - Drums Charles Spaulding - Aux
https://www.facebook.com/Unidisc https://www.instagram.com/unidiscmusic https://soundcloud.com/unidisc-music © Unidisc Music
Provided to YouTube by Sony Music Labels Inc. Keep on Keeping on · SawanoHiroyuki[nZk] · mizuki A/Z / aLIEz ℗ 2014 Sony Music Entertainment (Japan) Inc. Released on: 2014-09-10 Associated Performer: SawanoHiroyuki[nZk]:mizuki Lyricist: Benjamin Anderson Composer, Arranger: Hiroyuki Sawano Lyricist: Mpi Auto-generated by YouTube.
~ デジモンアドベンチャー ~ Digimon Adventure ~ 前田 愛(AiM)「keep on」 ED2 | Ending Theme 2 Karaoke: https://youtu.be/MbcrZQIUCEA
MC Lyte Feat Xscape - Keep On Keepin' On Please follow link to Subscribe http://bit.ly/Musicworldnet
Travie McCoy's music video for 'Keep On Keeping On' featuring Brendon Urie - available now on DCD2 Records / Fueled By Ramen. Download it at http://smarturl.it/keeponkeepingon Subscribe: http://smarturl.it/fbryoutube Site: http://traviemccoy.com Facebook: http://facebook.com/traviemccoy Twitter: http://twitter.com/traviemccoy Instagram: http://instagram.com/travielazarus LYRICS You gotta keep on keeping on Even with the feeling that you're gonna keep losing You gotta come back strong Oh Oh He spent most of his youth with his head down chubby, fugly, awkward walk and not much of a talker He was good at setting bad examples but bad at math, crunch time He kept it moving like the lunch line Working on his salad bars and fruit punch lines His simple triplets had his english teachers t...
#RenzVerano #KeepOnLovingYour #OfficialLyricVideo LISTEN to "Keep on Loving You - I'm Sad" https://backl.ink/203720 Don’t forget to subscribe: http://bit.ly/1ocCqit We are the number one independent record label in the Philippines. Home of the best Original Pilipino Music (OPM) artists, our roster includes Gary Valenciano, Parokya Ni Edgar, Ice Seguerra, Noel Cabangon, Christian Bautista, Sponge Cola, Neocolours, Gloc-9, Elmo Magalona, Julie Anne San Jose, Claudia Barretto, Donny Pangilinan, Angelina Cruz, TALA, Janina Vela, Shanti Dope, Kyle Juliano, Better Days, Mark Oblea, Paolo Sandejas, Gracenote, Coln, Hannah Pangilinan, Maine Mendoza, JKris, Dotty's World, Paolo Mallari, Imago, Kurei, Woopis, Sam Cruz, The Knobs, Kemrie, Gio Marlo and more! Subscribe to our channel for exclusive ...
[TWS COMEBACK SHOW] TWS - Keep On [TWS 있잖아 오늘부터] 투어스 - 내가 태양이라면 #TWS #투어스 More from #M2? :D Facebook: https://www.facebook.com/MnetM2 X: https://twitter.com/M2MPD Instagram: https://www.instagram.com/M2MPD TikTok: https://www.tiktok.com/@m2mpd
Provided to YouTube by Universal Music Group Keep On · Eric Church Chief ℗ 2011 Capitol Records Nashville Released on: 2011-01-01 Producer: Jay Joyce Composer: Eric Church Composer: Ryan Tyndell Auto-generated by YouTube.
You’re doing great, through the ups, the downs, and everything in between. Keep living, keep pushing forward, and keep embracing life one moment at a time. You’ve come so far, and there’s so much more ahead for you to experience and enjoy. A collection of lo-fi chill music, a playlist of relaxing chillhop lofi hip hop Artist : searching All music was made by me and 9 friends on discord (we own the channel together) #lofi #chillbeats #instrumental #beats #lofibeats #lofi #lofihiphop #lofihiphopbeat #lofihiphopbeats #chilllofi #chilllofihiphop #chilllofimusic #lofimusicwithoutlyrics #lofimusicforsleep #lofimusicforstudying #studylofi #studylofimusic #lofihiphopmix #lofihiphopmixtape #lofimixtape #musicforstudying #lofiforstudy #retrolofi #miamilofi #chillhop #citypopbeats
Provided to YouTube by Rhino/Elektra Keep On, Keepin' On (feat. Xscape) · MC Lyte · Xscape Bad As I Wanna B ℗ 1996 Elektra Entertainment Group, a division of Warner Communications Inc. for the United States and WEA International Inc. for the world outside of the United States. Unknown: Alex Lowe Scratching: DJ Master Tee Mixer: Jermaine Dupri Unknown: Jermaine Dupri Producer: Jermaine Dupri for So So Def Productions Bass Guitar: Larmarquis Jefferson Unknown: Mc Lyte Vocals: Mc Lyte Unknown: Merlin Bobb Unknown: Nat Robinson Engineer, Mixer: Phil Tan Backing Vocals: Xscape Composer: Carl-So-Lowe Composer, Lyricist: Jermaine Dupri Lyricist: Mc Lyte Contributor: Robin Newland Contributor: The 908 Posse Contributor: Tracci Johnson Auto-generated by YouTube.
Frederick William Hammond (born December 27, 1960) is a gospel singer, bass guitar player, and record producer.
Hammond has been active both as a member of the gospel performing group Commissioned, and as a solo artist (currently for Verity Records). He is a multiple Grammy-, Dove-, Stellar-award winner and nominee as a performer, producer and writer.
Hammond first gained recognition while playing bass guitar for the gospel group The Winans. By 1985 he was one of the six original members of the group Commissioned, participating in 10 of the group's 12 albums.
After his time with Commissioned ended, he regained fame in the gospel community after selling millions of albums with his musical group Radical For Christ.
In 2002 Hammond returned to the group Commissioned (now with members Keith Staten, Marvin Sapp, Mitchell Jones, Karl Reid, Michael Williams, and Marcus Cole) to produce the Commissioned Reunion Live album.
Hammond produced Make Me Like The Moon, a stirring gospel ballad co-written by Chanté Moore and Kenny Lattimore for their 2006 double-CD of gospel and R&B love songs entitled Uncovered/Covered (released October 10, 2006 by LaFace/Verity/Zomba Music Group). He also performs with Sean Combs on the album Thank You.
Chorus
Every step of a righteous man
Is ordered by God
Ordered
Though you may not know his mind
He will reveal it all in time
Just know till then
Your steps are ordered by God
Verse 1
When it feels like the mountains to high
And your tired of the climb
When it feels like my patience is frustrated with time
I depend on the spirit
To gently remind
(Chorus)
Verse 2
When my faith is challenged
And my vision is obscured
When I'm hanging on by a thread
And my footings unsure
I hear in the spirit
One word to help me endure
And it says ordered
Vamp
Ordered, Ordered, Ordered
Before the world was framed
Ordered, Ordered, Ordered
Before the whole world was framed
Ordered, Ordered, Ordered
Through the fire
Through the flood
When life takes you through winding turns