- published: 22 Jul 2023
- views: 16039
'+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; })); }); -->
Shed Seven are an English Indie Rock band from York and were one of the groups which contributed to the Britpop music scene that evolved during the 1990s, yet never received the degree of mainstream success achieved by bands such as Oasis and Blur. They formed in 1990 and originally comprised Rick Witter (vocals), Joe Johnson (guitar and keyboards, later replaced by Paul Banks), Tom Gladwin (bass) and Alan Leach (drums).
They belonged to the post-Smiths wave of UK musicians such as The Sundays and Marion, with a sound relying heavily on complex guitar arpeggios often in a minor key, and wailing vocals. At the height of their popularity between 1994 and 1999 they had fifteen Top 40 singles and four Top 20 albums in the UK. The band officially broke up in 2003, but reformed for a greatest hits tour in July 2007. The band have continued to play shows around the UK periodically but have not released a new studio album.
Truth Be Told may refer to:
Truth Be Told is the fourth studio album by the British rock band Shed Seven, released via Artful Records in May, 2001. Initial copies of the album featured a limited edition bonus disc with additional CD-ROM material along with an exclusive bonus track.
The album is the first to feature original guitarist, Joe Johnson, who left the band in 1993 before the release of their debut album, Change Giver. He had been replaced by new guitarist Paul Banks, who left the band in December 1999 prior to the band re-recruiting Johnson to fill the void.
All tracks written by Johnson/Smith/Witter.
Truth Be Told is American jam band Blues Traveler's seventh studio album, released on August 5, 2003 (see 2003 in music).
"Mount Normal" is the only song from this album that has yet to be played live.
Shed Seven's new album “A Matter of Time” will be released in January 2024. New single “Kissing California” is OUT NOW!! Pre-order the album from the official store and get access to pre-sale tickets for our October UK Tour here: https://shedseven.bio.to/AMOT Follow Shed Seven: http://www.shedseven.com/ https://www.facebook.com/shedseven https://twitter.com/shedseven https://www.instagram.com/shedsevenof... #ShedSeven #newmusic #KissingCalifornia
Music video by Shed Seven performing Chasing Rainbows (Stereo). © 1998 Polydor Ltd. (UK) http://vevo.ly/hAfTN3
Music video by Shed Seven performing Going For Gold. (C) 1996 Polydor Ltd. (UK) http://vevo.ly/QTjdfD
Music video by Shed Seven performing Disco Down (Stereo). © 1999 Polydor Ltd. (UK) http://vevo.ly/NoR1Yo
Music video by Shed Seven performing On Standby (Stereo). © 1996 Polydor Ltd. (UK) http://vevo.ly/4DYp8v
Music video by Shed Seven performing Getting Better (Stereo). © 1996 Polydor Ltd. (UK) http://vevo.ly/2k3mKw
Shed Seven perform Chasing Rainbows at TRNSMT 2018 in Glasgow. Visit the TRNSMT 2018 website for more videos: http://www.bbc.co.uk/trnsmt
Shed Seven's new album “A Matter of Time” will be released in January 2024. New single “Kissing California” is OUT NOW!! Pre-order the album from the official store and get access to pre-sale tickets for our October UK Tour here: https://shedseven.bio.to/AMOT Follow Shed Seven: http://www.shedseven.com/ https://www.facebook.com/shedseven https://twitter.com/shedseven https://www.instagram.com/shedsevenofficial/ #ShedSeven #newmusic #KissingCalifornia
From the new album “Instant Pleasures” out now: https://ShedSeven.lnk.to/IPID Follow Shed Seven: http://www.shedseven.com/ https://www.facebook.com/shedseven https://twitter.com/shedseven http://vevo.ly/Cr3RlD
Music video by Shed Seven performing Dolphin (Stereo). © 1994 Polydor Ltd. (UK) http://vevo.ly/SLhFRV
Watch the official music video for “Truth be Told” now! Listen to #TruthBeTold everywhere: https://matthewwest.lnk.to/BrandNewID!TBTMV Connect with Matthew: Email List: https://matthewwest.lnk.to/emailsignupID!TBTMV Facebook: https://matthewwest.lnk.to/FacebookID!TBTMV Twitter: https://matthewwest.lnk.to/TWID!TBTMV Instagram: https://matthewwest.lnk.to/IGID!TBTMV Website: https://matthewwest.lnk.to/websiteID!TBTMV Truth Be Told Lie number 1 you’re supposed to have it all together And when they ask how you’re doing just smile and tell them “never better” Lie number 2 everybody’s life is perfect except yours So keep your messes and your wounds and your secrets safe with you behind closed doors Truth be told The truth is rarely told I say I’m fine, yeah I’m fine oh I’m fine, hey I’m f...
Every truth has a consequence. Watch Truth Be Told now on the Apple TV app: http://apple.co/_TruthBeTold When new evidence compels podcaster Poppy Parnell (Octavia Spencer) to reopen the murder case that made her a national sensation, she comes face to face with Warren Cave (Aaron Paul), the man she may have mistakenly helped to put behind bars. Her investigation navigates urgent concerns about privacy, media and race. Truth Be Told is created by Nichelle Tramble Spellman and stars Octavia Spencer, Aaron Paul, Lizzy Caplan, Elizabeth Perkins, Michael Beach, Mekhi Phifer, Tracie Thoms, Haneefah Wood and Ron Cephas Jones. Song: "Mme Rieux" — Algiers https://apple.co/mmerieux Subscribe to Apple TV’s YouTube channel: https://apple.co/AppleTVYouTube Follow Truth Be Told: Instagram: http...
I’m so excited to share this special version of “Truth Be Told” with Carly Pearce! Listen to #TruthBeTold: https://matthewwest.lnk.to/TruthBeToldwithCarlyPearce Connect with Matthew: Email List: https://matthewwest.lnk.to/emailsignupID!TBTCP Facebook: https://matthewwest.lnk.to/FacebookID!TBTCP Twitter: https://matthewwest.lnk.to/TWID!TBTCP Instagram: https://matthewwest.lnk.to/IGID!TBTCP Website: https://matthewwest.lnk.to/websiteID!TBTCP Truth Be Told Lie number 1 you’re supposed to have it all together And when they ask how you’re doing just smile and tell them “never better” Lie number 2 everybody’s life is perfect except yours So keep your messes and your wounds and your secrets safe with you behind closed doors Truth be told The truth is rarely told I say I’m fine, yeah I’m ...
Kevin Gates - Truth Be Told (Official Audio) Stream ‘Khaza’ Album Now! https://www.kevingates.lnk.to/khaza See Kevin live! https://www.kvngates.com/tour Get your merchandise here! smarturl.it/kevingates.store Follow Kevin Gates: TikTok: https://www.tiktok.com/t/ZTdKJ3VWW Instagram: http://instagram.com/iamkevingates Twitter: http://twitter.com/iamkevingates Facebook: https://facebook.com/kvngates Soundcloud: https://soundcloud.com/kevingates Website: http://www.kvngates.com Subscribe to Kevin’s channel for all the latest official music videos, official audio, albums, behind the scenes and more! https://kevingates.lnk.to/Subscribe The official YouTube channel of Bread Winners' Association/Atlantic Records Artist Kevin Gates. Kevin Gates is a hip-hop music heavyweight with hits li...
Toosii - Truth Be Told Download/Stream "Platinum Heart" Here: https://toosii2x.lnk.to/PlatinumHeart Connect with Toosii: https://twitter.com/toosii2x?ref_src=... https://www.instagram.com/toosii2x/?h... https://www.facebook.com/Toosii2x/ #Toosii #TruthBeTold #PlatinumHeart
Knowing who to trust is only half the battle in the fight for justice. Gabrielle Union joins Octavia Spencer for a new season of Truth Be Told is streaming now on Apple TV+ https://apple.co/_TruthBeTold Descend into the world of true-crime podcasts. This NAACP Image Award–winning drama stars Octavia Spencer as a podcaster who risks everything—including her life—to pursue truth and justice. Song: "Some Of Us Are Brave" by Danielle Ponder https://apple.co/_SomeOfUsAreBrave Subscribe to Apple TV’s YouTube channel: https://apple.co/AppleTVYouTube Follow Truth Be Told: Instagram: https://instagram.com/TruthBeTold Twitter: https://twitter.com/TruthBeTold Follow Apple TV: Instagram: https://instagram.com/AppleTV Facebook: https://facebook.com/AppleTV Twitter: https://twitter.com/AppleTV ...
🚨SUBSCRIBE NOW🚨 : https://bit.ly/2wfMzlS ➡️ VISIT : https://p110.co.uk ✅ DOWNLOAD P110 THE ALBUM : https://apple.co/2BxzsSM 🖥 TWITTER : https://twitter.com/p110media 📲 INSTAGRAM : https://www.instagram.com/p110.co.uk 🖥 FACEBOOK : https://www.facebook.com/P110Media/ 🚀🎥 ALL ENQUIRIES : [email protected]
Provided to YouTube by BMG Rights Management (UK) Limited Truth Be Told · Megadeth The System Has Failed ℗ 2004 Sanctuary Records Group Ltd., a BMG Company Released on: 2004-09-14 Performer: Megadeth Composer: Dave Mustaine Auto-generated by YouTube.
ON RUMBLE.COM/DAVIDLOW1057. YOUTUBE.COM/@MOMENTSOFTRUTH9920.COM X@DAVIDLOWERYJR1 LINKEDLN DAVID LOWERY TECNTV.COM. 6PM CSTN. 7PM EST website letthetruthbetoldradio.com
LYRICS DOWN BELOW ▼ SUBSCRIBE: https://geni.us/SUB-2-LLV ▼ GEAR I USE ▼ CAMERA DRONE: https://geni.us/DBvg0S EDITING SOFTWARE: https://geni.us/EHngL COMPUTER: https://geni.us/SKWPvd MOUSE: https://geni.us/6zuswO HEADPHONES: https://geni.us/0GQm 👇FOLLOW ME HERE👇 INSTAGRAM: http://instagram.com/landongingerich FACEBOOK: http://facebook.com/landonegingerich ▼ LISTEN TO THE SONG HERE ▼ ITUNES: https://geni.us/f1lNmM2 APPLE MUSIC: https://geni.us/sp50dtS SPOTIFY: https://geni.us/KZI62CP AMAZON MUSIC: https://geni.us/ZAi2c SONG BY:@MatthewWestOfficial SUGGEST A SONG HERE: http://landongingerich.com/suggest-a-song LYRICS: [Verse 1] Lie number one: You're supposed to have it all together And when they ask how you're doing, just smile and tell them "Never better" Lie number two: Everybod...
Shed Seven are an English Indie Rock band from York and were one of the groups which contributed to the Britpop music scene that evolved during the 1990s, yet never received the degree of mainstream success achieved by bands such as Oasis and Blur. They formed in 1990 and originally comprised Rick Witter (vocals), Joe Johnson (guitar and keyboards, later replaced by Paul Banks), Tom Gladwin (bass) and Alan Leach (drums).
They belonged to the post-Smiths wave of UK musicians such as The Sundays and Marion, with a sound relying heavily on complex guitar arpeggios often in a minor key, and wailing vocals. At the height of their popularity between 1994 and 1999 they had fifteen Top 40 singles and four Top 20 albums in the UK. The band officially broke up in 2003, but reformed for a greatest hits tour in July 2007. The band have continued to play shows around the UK periodically but have not released a new studio album.
And it really hurts when I'm thinking about you
my bet is you feel the same
And it just gets worse
all these promises were cruel
but my bet is you will remain
did I ever tell you that you shook me to the bone
When all you did was be yourself
Have I ever told you
That you move the world I'm on
And This is my cry for help
And it really hurts when I'm thinking about you
And I'm still crying from the pain
And it only goes to show that I already know
That I, Yeah I guess you will remain
Did I ever tell you that you shook me to the bone
When all you did was be yourself
Have I ever told you
That you move the world I'm on
And This is my cry for help
And This is my cry for help
And it really hurts when I'm thinking about you
And that don't sit too good with me
And it just gets worse
all them promises so cruel
but my bet is you will remain
did I ever tell you that you brought me to my knees
When all you did was be yourself
Have I ever told you
That you Made my whole world bleed
And This is my cry for help
And This is my cry for help
And it really hurts
But my bet is you will
And this is my Cry For Help
And this is my Cry for help
This is me crying
This is me crying
This is me crying