- published: 26 May 2023
- views: 4034
'+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; })); }); -->
Paris, Ontario (2011 population, 11,763) is a community on the Grand River in Ontario, Canada. The town was established in 1850. In 1999, its town government was amalgamated into that of the County of Brant, thus ending 149 years as a separate incorporated municipality.
The town was first settled on May 7, 1829, when its founder, Hiram Capron, bought the land for $10,000 and built a mill on the present townsite. The town of Paris was officially established in 1856. Since the late 1990s, Paris has experienced substantial population growth, which may be in part attributed to the rising popularity of rural communities among GTA bound commuters (see bedroom community) and the completion of Highway 403 between Hamilton and Woodstock.
Paris was named for the nearby deposits of gypsum, used to make plaster of Paris. Paris is referred to as "the cobblestone capital of Canada" (in reference to a number of aged cobblestone houses). Paris, Ontario is located at 43°12′N 80°23′W / 43.200°N 80.383°W / 43.200; -80.383.
Paris (UK: /ˈpærɪs/ PARR-iss; US: i/ˈpɛərɪs/ PAIR-iss; French: [paʁi]) is the capital and most populous city of France. Situated on the Seine River, in the north of the country, it is in the centre of the Île-de-France region, also known as the région parisienne, "Paris Region". The City of Paris has an area of 105 km² (41 mi²) and a population of 2,241,346 (2014 estimate) within its administrative borders essentially unchanged since 1860.
Since the 19th century, the built-up area of Paris has grown far beyond its administrative borders; together with its suburbs, the whole agglomeration has a population of 10,550,350 (Jan. 2012 census).Paris' metropolitan area spans most of the Paris region and has a population of 12,341,418 (Jan. 2012 census), or one-fifth of the population of France. The administrative region covers 12,012 km² (4,638 mi²), with approximately 12 million inhabitants as of 2014, and has its own regional council and president.
Paris was founded in the 3rd century BC by a Celtic people called the Parisii, who gave the city its name. By the 12th century, Paris was the largest city in the western world, a prosperous trading centre, and the home of the University of Paris, one of the first in Europe. In the 18th century, it was the centre stage for the French Revolution, and became an important centre of finance, commerce, fashion, science, and the arts, a position it still retains today.
"Paris (Ooh La La)" is the second single from Grace Potter and the Nocturnals' eponymous third studio album.
Paris, Texas is a city and county seat of Lamar County, Texas, United States. As of the 2010 census, the population of the city was 25,171. It is situated in Northeast Texas at the western edge of the Piney Woods, and 98 miles (158 km) northeast of the Dallas–Fort Worth Metroplex. Physiographically, these regions are part of the West Gulf Coastal Plain.
Following a tradition of American cities named "Paris", a 65-foot (20 m) replica of the Eiffel Tower was constructed in 1993. In 1998, presumably as a response to the 1993 construction of a 60-foot (18 m) tower in Paris, Tennessee, the city placed a giant red cowboy hat atop the tower. The current tower is at least the second Eiffel Tower replica built in Paris; the first was constructed of wood and later destroyed by a tornado.
Lamar County was first settled in different parts of an area to the west of Jonesborough and Clarksville. There was a settlement on the Red River at a place called Fulton, one near what is now called Emberson, one to the southeast of that near where today is the North Lamar school complex, a fourth southwest of that at the Chisum-Johnson community called Pinhook, and a group of pioneers east of that at Moore's Springs. In late 1839, George W. Wright moved from his farm northeast of Clarksville to a hill where he had purchased 1,000 acres of unoccupied land. It was on the old road from the Kiomatia River's mouth at the Red River to the Grand Prairie. Wright opened a general store on the road. By December 1840 a new county had been formed, named for Republic of Texas President Mirabeau B. Lamar. By September 1841 Wright's store was called Paris and served as the local postal office. In August 1844, the county commissioners took Wright's offer of 50 acres and made Paris the county seat.
This is a list of past and present Senators of Canada representing the province of Ontario. Ontario has had an allocation of 24 senators since the time of Confederation. The province is also one of four regional Senate divisions under Section 26 of the Constitution Act that allows for the expansion of the Senate by one or two senators per region.
Notes:
1 Senators are appointed to represent Ontario. Each senator may choose to designate a geographic area within Ontario as his or her division.
2 Senators are appointed by the Governor-General of Canada in the Queen's name on the recommendation of the prime minister.
3 Division designated as Toronto Centre from 000000001984-01-13-0000January 13, 1984 to 000000002001-02-14-0000February 14, 2001 and Toronto Centre-York from 000000002001-02-15-0000February 15, 2001 to the present.
Notes:
1 Senators are appointed to represent Ontario. Each senator may choose to designate a geographic area within Ontario as his or her division.
2 Senators are appointed by the Governor-General of Canada in the Queen's name on the recommendation of the prime minister; the initial 24 senators were named by a Royal Proclamation at the time of confederation.
If you're looking for a place to call home in Paris, Ontario, then this neighborhood guide is for you! This guide will show you all the important information about the neighborhoods in and around Paris, from schools and real estate market to shopping, dining, attractions, and more. After you've seen this guide, you'll have a better understanding of what to expect in Paris and will be able to find the perfect place to call home! Thanks for watching! For more information and search for homes for sale in Ontario visit: ➡️ https://exprealty.ca/ontario/ ------------------------------------------ Our channel is about living in the great city and suburbs of Canada. We're focused on delivering the best videos for people looking to relocate to Canada or perhaps move from one province to anothe...
PARIS Ontario Canada Travel 4K vlog Set at the junction of the Grand and Nith Rivers, Paris is a picturesque town known for its array of stone buildings such as the Paris Plains Church. Its quaint streets are lined with warm cafes, boutiques, and specialty shops. It was voted "the Prettiest Little Town in Canada" by Harrowsmith Magazine. In this video we walked along Paris streets, Grand River, William, Broadway street. Most of the shops and Paris Arlington Hotel are located on Grand River St. Cobblestone Common is one of the best viewpoints of Grand River. #paris #canada #travel Visit my Store: https://www.amazon.com/shop/hummansunson As an Amazon Associate I earn from qualifying purchases. Canada travel vlog channel Copyright © 2021 Lvfree Adventures. All Rights Reserved
Thinking About Moving to Paris, Ontario? Top Factors to Consider Before Relocating Considering relocating to the charming town of Paris, Ontario? Before packing your bags, get the full scoop on what it's REALLY like to live there! In this tell-all video, Matthew breaks down the pros and cons of calling Paris home. From the top parks and trails to the downtown vibe and real estate market breakdown, he dishes on all the must-know details. Please feel free to share your thoughts and questions in the comment section below. I will be more than happy to answer them all. 🚨 Subscribe👇🏼 to learn more about Living in Hamilton, Ontario Canada ✅ https://bit.ly/LivingInHamiltonOntario ___________ 📲 I have so many people contacting me who are moving here to Hamilton Ontario, and I ABSOLUTELY love ...
In today's vlog I'm going to bring you with me to explore Paris… no, not the famous Paris, but a city in the Ontario countryside that bears the same name. We'll walk the streets, shop in a 19th century market, eat well and enjoy a beautiful summer day. Oh, and in the end, there is still something that will surprise you about this city. 🔴🔴🔴Subscribe to my Channel: https://bit.ly/3cwm0kR 🔴🔴🔴 👩💻MORE ON MY BLOG 👩💻 https://lucianacouto.com 🎬EQUIPMENTS I USE TO MAKE MY VLOGS 🎬 iPhone 12 PRO MAX: https://bit.ly/36B0OUZ GoPro: https://bit.ly/2SUNZBp Blue Snowball Microphone: https://bit.ly/3hPvaYY ND Filter: https://bit.ly/3wkYThC RODE MICROFONE: https://bit.ly/3kp5NhL 🎵Music from Epidemic Sound🎵 Get 30 Days for free: https://www.epidemicsound.com/referral/7rd2e1/ 👗 WHAT I WORE 👗 TOP: htt...
Another month and here we go! Grab your water bottle and Take 5 with me as we talk about another favourite neighbourhood of mine...Paris. 1️⃣ Explore • 🌳 There are over 100 km of trails in Paris and around town. No wonder they deem it one of the “prettiest towns in Ontario”. Hike or Bike the 18KM Cambridge to Paris Rail trail and soak up the scenery overlooking the Grand River. 2️⃣ Eat Local • 🍽 Paris is known for some it’s best “waterfront” restaurants and patios. If you haven’t taken in the views at Stillwaters yet, be sure to visit here and also enjoy their fantastic menu. A few other favourites to visit are Edit, The Landmark restaurant of the Arlington Hotel, or the fine dining restaurant Juniper. 3️⃣ Shop • 👜 Downtown Paris is known for some incredible shopping. Start at the Par...
Paris Ontario was named one of the prettiest towns in all of Canada and is currently where JustDisc is located! Therefore, to give everyone a better idea of where we live and how beautiful it can be, we thought we'd provide you with a drone flight trailer showcasing our wonderful town! We truly hope you enjoy the aerial footage and inspiring music that helps portray this beautiful town of Canada. It's a very popular tourist spot, so if you are ever in the area or are planning a trip to Ontario Canada, be sure to stop by! You won't be disappointed. And who knows, maybe we can organize a beautiful disc golf round together at the Dwayne Bereziuk Memorial Disc Golf Course :D Touristic Sites Seen in Video: 1- The Grand River 2- Penman's Railway Bridge 3- Penman's Dam 4- Downtown Paris Wo...
Paris, Ontario Paris (2016 population, 12,310) is a community located at the spot where the Nith River empties into the Grand River in Ontario, Canada. It was voted "the Prettiest Little Town in Canada" by Harrowsmith Magazine.[1] The town was established in 1850. In 1999, its town government was amalgamated into that of the County of Brant, thus ending 149 years as a separate incorporated municipality but Paris remained the largest population centre in the county. While Brantford is located within Brant geographically, it is a fully independent community with its own municipal government.[2] more information: https://en.wikipedia.org/wiki/Paris,_Ontario
介紹加拿大安大略省鵝卵石之都巴黎小鎮 Paris Ontario Canada #加拿大#安大略#巴黎小鎮#旅遊#旅游#Paris#Ontario#Canada#Travel
Join me on an adventure through Paris, Ontario, Canada. This town has been named the prettiest in the country, and it deserves that distinction! Popular attractions appearing in this video: - Penmans Pass - Arlington Hotel - Paris War Memorial - Cobblestone Pub House - Paris Baptist Church - Public Library - King's Ward Park - St. Paul's United Church - Paris Wincey Mills Co. #parisontario #parisontariocanada #brant #brantcounty #brantcountyontario #brantcountyontariocanada Camera used: Samsung Galaxy S21 5G Smartphone Editing app used: VLLO For more of my travel videos, please click on the link below: https://www.youtube.com/playlist?list=PLXeWEworSk2sJWUjXQhJu6ozyoV5U2-q_ Instagram username: heman1977
From Director Arnaud Weissenburger and Staring Florian François and Xavier Yuvens. ~ Synopsis: When he arrives at the unremarkable Ontario town of Paris, a French tourist will have to test his ability and willingness to cross the language barrier. AVAILABLE IN CANADA February 24th on CBC Gem https://gem.cbc.ca/media/canadian-reflections/s01
Paris, Ontario (2011 population, 11,763) is a community on the Grand River in Ontario, Canada. The town was established in 1850. In 1999, its town government was amalgamated into that of the County of Brant, thus ending 149 years as a separate incorporated municipality.
The town was first settled on May 7, 1829, when its founder, Hiram Capron, bought the land for $10,000 and built a mill on the present townsite. The town of Paris was officially established in 1856. Since the late 1990s, Paris has experienced substantial population growth, which may be in part attributed to the rising popularity of rural communities among GTA bound commuters (see bedroom community) and the completion of Highway 403 between Hamilton and Woodstock.
Paris was named for the nearby deposits of gypsum, used to make plaster of Paris. Paris is referred to as "the cobblestone capital of Canada" (in reference to a number of aged cobblestone houses). Paris, Ontario is located at 43°12′N 80°23′W / 43.200°N 80.383°W / 43.200; -80.383.
Yeahhhhh (hey!)
Hahaha, hey, hey, ha (all right)
Aight Toomp man, this what the folks been waitin on I guess (that's right)
Let's give it to 'em baby (hey!)
Grand Hustle nigga
Ay man, they been waitin on this shit since 'What You Know' huh?
Yeahhhh, it's the king bitch!
Aight my nigga, the wait is over nigga
Hey, hey!
One for the money, two for the show dawg
Three for the niggaz hatin on the low, y'all
Know a picture's worth a million words I'ma show y'all
Death before dishonor, family befo' all
Without the braids I'm the closest thing to O-Dog
Minus the testimony; say it ain't so homie
Hey! Shorty like that, don't he?
World hopped off my jock, I got 'em right back on it
Ohh! Step back, brush myself off
Picked in and back up right where I left off
I could show my dough that other guys just talk
Hey where I live just as big as yo' projects dawg
AY! Ha ha, better check my swagger
How I walk, how I talk, how I stack that cheddar
What I drive, how I dress, nigga less just better
A hundred stacks on that nigga I'm just, better
Hahahaha, somebody better tell 'em mayne
They swag owe my swag everythang
It's very plain to see you study me awful hard
To the point that my swag need a bodyguard
I'd like to thank you cause in all of y'all oughta be
havin y'all swag sendin mines an apology
A lot of little me's I see, got beef
But what's the possibilities? Stop seek, you not me
Hardly worth a hill of beans, step up to the guillotine
Get decapitated, don't see how half of you rappers made it
Say good-bye to the fame and fortune, c'est la vie
And what the game need with you nigga? They got me
I ride through the city, so clean, seat really low
Automo-bil-ey so, pretty but I'm illy though
No comparison, ain't a nigga mo', thorough than
this gangsta American flow, doper than heroin
King like Evelyn, champagne mayne
So deranged and belligerent; right up there with Benjamin
Who? Andre 3K, B.I.G., Jay-Z, UGK
Scarface, Makaveli the great, Wayne, Common, Kanye and, Lupe
So fuck what you say, you welcome to add to you may
Bet they say as of today I'm back on top like a toupee
Hey! All objections overruled, it's overdue
Both hype, it's over too, I'm so high, up over you
Same guy you see in the streets is as fly as here in the booth
So don't be surprised when you meet me to see I'm really the truth
Ooh, so uncouth, nigga who want proof?
Must agree if shit I did can't no one undo
I stay on my, one-two, nigga who want two?
Turn a brunch into a brawl, do what you gon' do
I'm why it's, hot as a bitch in here still, cool as a Frigidaire
This year I'm on a mission dear, think that was somethin missin here