- published: 14 Feb 2024
- views: 83991799
'+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; })); }); -->
Christopher Maurice "Chris" Brown (born May 5, 1989) is an American singer, dancer, rapper and actor. Born in Tappahannock, Virginia, he was involved in his church choir and several local talent shows from a young age. Having signed with Jive Records in 2004, Brown released his self-titled debut studio album the following year. It peaked at number two on the US Billboard 200 and was later certified double platinum by the Recording Industry Association of America (RIAA). With his first single "Run It!" peaking atop the US Billboard Hot 100, Brown became the first male artist as a lead since Diddy in 1997 to have his debut single top the chart. His second album Exclusive (2007) spawned his second Hot 100 number one "Kiss Kiss", in addition to "With You" and "Forever". The album was also certified double platinum by the RIAA.
In 2009, Brown received much media attention after pleading guilty to felony assault of his then girlfriend, singer Rihanna; he was sentenced to five years of probation and six months of community service. His third album Graffiti was released later that year, and included the top-twenty single "I Can Transform Ya". Brown's fourth album F.A.M.E. (2011) became his first to top the Billboard 200; it spawned the successful singles "Yeah 3x", "Look at Me Now", and "Beautiful People". F.A.M.E. earned Brown his first Grammy Award for Best R&B Album at the 54th Grammy Awards. His fifth album Fortune was released in 2012. However, after the release of Exclusive, Brown's albums have not been well received commercially or by music critics, with the exception of X, which received a normalized rating of 63. Brown's seventh studio album Royalty was released on December 18, 2015.
Chris Brown (born 11 September, 1978) is an Australian veterinarian, television personality and author. He is best known for his television series Bondi Vet, which began screening in 2009. He is also a regular guest panellist on The Project and a co-host on The Living Room, as well as being a co-host on the Australian series of I'm a Celebrity...Get Me Out of Here!
Brown was born and grew up in the suburbs of Newcastle, New South Wales, Australia, where his father was a local vet. He attended Merewether Heights Public School and Merewether High School. He graduated from Sydney University with First Class Honours in Veterinary Science in 2001.
After graduating from university, Brown began work at a clinic in Sydney's North Shore. He travelled to remote Aboriginal communities in the Northern Territory to treat animals.<ref name=cbs
Brown's first television presenting role as a vet was on Harry's Practice in 2003, for which he was nominated for a "Most Popular New Talent" Logie Award. He became a presenter on Channel Nine’s Burke's Backyard in 2004 and made regular appearances on Today. His first book, The Family Guide to Pets, was released in 2005 and sold over 25,000 copies. In 2008, he also began writing a column called "Pet Page" in Woman’s Day magazine and was interviewed on radio stations Triple M and Vega FM.
Christopher Mark "Chris" Brown (27 March 1973) is a former Cook Islands cricketer, who previously played representative cricket for Auckland at New Zealand domestic level. Born in Rarotonga, Brown's early cricket was played for Auckland under-age teams, and he went on to represent the New Zealand national under-19s in several matches as a right-arm fast bowler. Making his first-class debut during the 1993–94 season of the Shell Trophy, he took ten wickets in his debut match, and represented the New Zealand Cricket Academy twice later in the season.
Brown regularly played for Auckland in both the first-class and limited-overs competitions during the mid-1990s, despite the squad also including several international bowlers. However, after the 1997–98 season, he ceased playing for Auckland. Brown resumed his career in the early 2000s for the Cook Islands national cricket team, playing in regional competitions, and going on to play for a representative East Asia-Pacific team. He regularly captained the country of his birth throughout the remainder of the decade, becoming one of the only first-class players to play for the country. After retiring from playing, Brown took up umpiring, and is currently a member of New Zealand Cricket's Umpiring "A" Panel.
Listen to “11:11” here: https://chrisbrown.lnk.to/1111 Credits: Director: Jamar Harding Executive Producer: Andrew Listermann Production Company: Riveting Entertainment Head of Production: Emerald Listermann Executive Producer: Scott Sheridan Commissioner: Camille Yorrick Producer: Hans Boysen Production Manager: Joseph Barbalaco 1st Assistant Director: Robert Blair Director of Photography: Timothy S. Jensen Production Designer: Alen Stubbs Editor: Jamar Harding Colorist: Loren White Unreal Environment: Alex Vicente VFX Artists: Matt Cairns, Jordan Allen Artist: Chris Brown Siren: Sierra Capri Follow Chris Brown: Facebook: https://www.facebook.com/chrisbrown Twitter: https://twitter.com/chrisbrown Instagram: https://www.instagram.com/chrisbrownofficial/ YouTube: https://www.yout...
Chris Brown - "Under The Influence" Out Now! Listen Now: https://chrisbrown.lnk.to/UnderTheInfluence 'BREEZY' - Out Now! Listen Now: https://chrisbrown.lnk.to/BREEZY Listen to more by Chris: https://ChrisBrown.lnk.to/listenYD Subscribe to the official Chris Brown YouTube Channel: https://ChrisBrown.lnk.to/subscribeYD Follow Chris Brown: Instagram: https://www.instagram.com/chrisbrownofficial Facebook: https://www.facebook.com/chrisbrown Twitter: https://twitter.com/chrisbrown TikTok: https://www.tiktok.com/@chrisbrownofficial Lyrics: Fuckin' Robitussin I don't know why this shit got me lazy right now, yeah Can't do Percocets or Molly (Molly) I'm turnin' one, tryna live it up here right, right, right Baby, you can Ride it, ooh, yeah Bring it over to my place And you be like "Ba...
Watch the official music video for "Loyal" by Chris Brown featuring Lil Wayne & Tyga Listen to Chris Brown: https://ChrisBrown.lnk.to/listenYD Subscribe to the official Chris Brown YouTube channel: https://ChrisBrown.lnk.to/subscribeYD Watch more videos by Chris Brown: https://ChrisBrown.lnk.to/listenYD/youtube Follow Chris Brown: Facebook: https://ChrisBrown.lnk.to/followFI Twitter: https://ChrisBrown.lnk.to/followTI Instagram: https://ChrisBrown.lnk.to/followII Website: https://ChrisBrown.lnk.to/followWI Spotify: https://ChrisBrown.lnk.to/followSI --------- Lyrics: I wasn't born last night I know these hoes ain't right But you was blowing up her phone last night But she ain't have her ringer nor her ring on last night, oh Nigga, that's that nerve Why give a bitch your heart ...
Listen to 11:11 Deluxe here: https://chrisbrown.lnk.to/1111deluxe Follow Chris Brown: Facebook: https://www.facebook.com/chrisbrown Twitter: https://twitter.com/chrisbrown Instagram: https://www.instagram.com/chrisbrownofficial/ YouTube: https://www.youtube.com/user/ChrisBrownVEVO Sound Cloud: https://soundcloud.com/chris_brown Website: http://www.chrisbrownworld.com/ #ChrisBrown #1111Deluxe #Residuals
Listen to “Sensational” here: https://chrisbrown.lnk.to/sensational Lyrics: INTRO Uh huh Yes Let’s go (Haha) how you feeling Hook 1 Sensational Yeh What tin I do for you girl And I know and I know and I know girl I act a fool for you Loves like a riddle Yea Give me the clues solve the riddle Oh ah Laugh just a little Yea Life’s pretty sweet can be bitter VERSE 1 She tell me love her till the morning na na na Love her till the night time na na na I don’t get no body I don’t get no body yea If you give me body I won’t tell no body yea Valley girl she west coasting West side Know she want me pull skirt so me pull skirt Valley girl she want west coasting You see it’s obvious it’s obvious HOOK 2 Sensational Yeh What tin I do for you girl And I know and I know and I know girl I act a fool for ...
Watch the official music video for "Forever" by Chris Brown Listen to Chris Brown: https://ChrisBrown.lnk.to/listenYD Subscribe to the official Chris Brown YouTube channel: https://ChrisBrown.lnk.to/subscribeYD Watch more videos by Chris Brown: https://ChrisBrown.lnk.to/listenYD/youtube Follow Chris Brown: Facebook: https://ChrisBrown.lnk.to/followFI Twitter: https://ChrisBrown.lnk.to/followTI Instagram: https://ChrisBrown.lnk.to/followII Website: https://ChrisBrown.lnk.to/followWI Spotify: https://ChrisBrown.lnk.to/followSI Lyrics: It's like I've waited my whole life (Oh) for this one night (Oh) It's gon' be me, you and the dance floor 'Cause we only got one night (Oh, oh) Double your pleasure, double your fun And dance fore-e-ever, fore-e-ever Fore-e-ever, f...
PENITH is here!!! Listen: https://LilDicky.lnk.to/PenithID To listen to Freaky Friday https://LilDicky.lnk.to/FreakyFriday For FF merch https://www.lildickymerch.com Directed by Tony Yacenda Edited by Brian Vannucci and Mike Small Produced by Libby de Leon, Julia Bales, Natalie Metzger, Nic Stanich and Sue Yeon Ahn Produced by DJ Mustard , Co-produced by Twice As Nice and Benny Blanco Song executive produced by Benny Blanco
Official HD Video for "With You" by Chris Brown Listen to Chris Brown: https://ChrisBrown.lnk.to/listenYD Subscribe to the official Chris Brown YouTube channel: https://ChrisBrown.lnk.to/subscribeYD Watch more videos by Chris Brown: https://ChrisBrown.lnk.to/listenYD/youtube Follow Chris Brown: Facebook: https://ChrisBrown.lnk.to/followFI Twitter: https://ChrisBrown.lnk.to/followTI Instagram: https://ChrisBrown.lnk.to/followII Website: https://ChrisBrown.lnk.to/followWI Spotify: https://ChrisBrown.lnk.to/followSI --------- Lyrics: I need you boo, (oh) I gotta see you boo (hey) And the heart's all over the world tonight, Said the heart's all over the world tonight Hey! Little mama, Ooh, you're a stunner Hot little figure, Yes, you're a winner And I'...
Listen to “11:11” Deluxe here: https://chrisbrown.lnk.to/1111deluxe Follow Chris Brown: Facebook: https://www.facebook.com/chrisbrown TikTok: https://www.tiktok.com/@chrisbrownofficial?lang=en Twitter: https://twitter.com/chrisbrown Instagram: https://www.instagram.com/chrisbrownofficial/ YouTube: https://www.youtube.com/user/ChrisBrownVEVO Sound Cloud: https://soundcloud.com/chris_brown Website: http://www.chrisbrownworld.com/ Follow Davido: Facebook: https://www.facebook.com/davidoofficial2 Twitter: https://twitter.com/iam_Davido Instagram: https://www.instagram.com/davidoofficial/ Youtube: https://www.youtube.com/user/DavidoVEVO Sound Cloud: https://soundcloud.com/davido16056 Website: https://www.iamdavido.com/ Director / Executive Producer: Travis Colbert Creative Director: Ma...
Official video for "Go Crazy" by Chris Brown & Young Thug Produced By: Paradise City Entertainment Executive Producer: Matt Goldstein Executive Producer: Jake Miosge Director: Mat Fuller DP: Pascal Combes-Knoke Post/VFX: Dark Matter FX Editor: George Manzanilla Follow Chris Brown: http://www.chrisbrownworld.com/ https://twitter.com/chrisbrown https://www.facebook.com/chrisbrown http://instagram.com/chrisbrownofficial Follow Young Thug: https://www.youngthugmusic.com/ http://www.twitter.com/youngthug http://instagram.com/thuggerthugger1 http://www.facebook.com/youngthugmusic #ChrisBrown #YoungThug #GoCrazy
Christopher Maurice "Chris" Brown (born May 5, 1989) is an American singer, dancer, rapper and actor. Born in Tappahannock, Virginia, he was involved in his church choir and several local talent shows from a young age. Having signed with Jive Records in 2004, Brown released his self-titled debut studio album the following year. It peaked at number two on the US Billboard 200 and was later certified double platinum by the Recording Industry Association of America (RIAA). With his first single "Run It!" peaking atop the US Billboard Hot 100, Brown became the first male artist as a lead since Diddy in 1997 to have his debut single top the chart. His second album Exclusive (2007) spawned his second Hot 100 number one "Kiss Kiss", in addition to "With You" and "Forever". The album was also certified double platinum by the RIAA.
In 2009, Brown received much media attention after pleading guilty to felony assault of his then girlfriend, singer Rihanna; he was sentenced to five years of probation and six months of community service. His third album Graffiti was released later that year, and included the top-twenty single "I Can Transform Ya". Brown's fourth album F.A.M.E. (2011) became his first to top the Billboard 200; it spawned the successful singles "Yeah 3x", "Look at Me Now", and "Beautiful People". F.A.M.E. earned Brown his first Grammy Award for Best R&B Album at the 54th Grammy Awards. His fifth album Fortune was released in 2012. However, after the release of Exclusive, Brown's albums have not been well received commercially or by music critics, with the exception of X, which received a normalized rating of 63. Brown's seventh studio album Royalty was released on December 18, 2015.
[Chris Brown]
Girl you wanna play with me baby
Money ain’t a thing cause I got paper
I’m lookin' at your body
You about to get exactly what you came for
Now I can throw it up throw it up
Break it down down down
Even if it ain’t loud she gets me aroused
Slow it up slow it up slow it down
You the sh-t you the sh-t
Go ahead play with it baby
Cause I’mma keep my hands to myself
And my back on the wall
Now I’m playing with it baby
I know you don’t give a f-ck
Cause you gon’ get your money up
I, I, I
Get your ass up on that pole
Get this money in my hand
I, I, I
All this money dripping on you
Like paint from a Mona Lisa
Drop it to the flo’ b-tch
All this money dripping on you
Like paint from a Mona Lisa
[Kevin McCall]
I f-cked with my first b-tch
I upgrade my second broad
Corporate my credit card
Vintaged out my f-ck-ng watch
Vintaged out my f-ck-ng cars
No... just f-ck-ng yacht
Your new b-tch, my old b-tch
You can have the hoe cause she talk a lot
Now get your ass up on this pole, you can get this money
Now I got them carats, I got all them playboy bunnies
I’m throwing them honies
Racks on top of racks and they backs look like…
[Chris Brown]
And they ass big as some mountain
Put my drink on it, she cold
My zipper down but my money up
Better get your ass up on that pole
Two mo’ shots then I’m out, black, black then I reload
... might earn 20 more, get yo ass up on that pole
Damn look at Lakeisha getting that money just like a zesta
All of these bunnies hopping and popping
You fighting to get up in my 2 seater
My chain, 6 rings
I, I, I
Get your ass up on that pole
Get this money in my hand
I, I, I
All this money dripping on you
Like paint from a Mona Lisa
Drop it to the flo’ b-tch
All this money dripping on you
Like paint from a Mona Lisa
I don’t make it rain
Nigga I make a monsoon like a tidal wave
Me taking 23 shots, that’s a MJ
I mean a fadeaway, we ’bout to fadeaway
She said she like my pants
I think she like my pockets
B-tch I’m in the building counting millions
You should try it
Yeah what d’you mean
She tried to kiss me, I said stop it
Put that money in the face then she get that pussy popping
I, I, I
Get your ass up on that pole
Get this money in my hand
I, I, I
All this money dripping on you
Like paint from a Mona Lisa
Drop it to the flo' b-tch
All this money dripping on you