- published: 24 Sep 2021
- views: 551025
'+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; })); }); -->
HIDDEN ERROR: Usage of "religion" is not recognized
Naushad Ali (Hindi: नौशाद अली, Urdu: نوشاد علی خیدر;26 December 1919 – 5 May 2006) was an Indian musician. He was one of the foremost music directors for Hindi films, and is particularly known for popularising the use of classical music in films.
His first film as an independent music director was Prem Nagar in 1940. His first musical success film was Rattan (1944), following it up with 35 silver jubilee hits, 12 golden jubilee and 3 diamond jubilee mega successes. Naushad was conferred the Dadasaheb Phalke Award and the Padma Bhushan in 1982 and 1992, respectively, for his contribution to the Bollywood film industry.
Naushad was born and raised in Lucknow, a city with a long tradition as a center of Indian Muslim culture. His father, Wahid Ali, was a munshi (court clerk). As a child, Naushad would visit the annual fair at the Deva Sharif in Barabanki, 25 km from Lucknow, where all the great qawwals and musicians of those days would perform before the devotees. He studied Hindustani music there under Ustad Ghurbat Ali, Ustad Yusuf Ali, Ustad Babban Saheb, and others. He also repaired harmoniums.
An extensive interview with Mausiqar e Azam Naushad Ali from the Channel 4 series Movie Mahal. Naushad Interview Mausiqar e Azam Documentary 1986
Naushad Siddiqui: ডিএ মঞ্চে আইএসএফ বিধায়ককে ধাক্কা, কে এই ব্যক্তি? | Zee 24 Ghanta #naushadsiddiqui #zee24ghanta #banglanews To satisfy the demands of high-rise favourites of Bengali audiences, Zee 24 Ghanta brings all the latest headlines and news stories. Connect with us at our social media handles: Watch Live: http://zeenews.india.com/bengali/live-tv Download App: https://goo.gl/DPQZNC Facebook: https://www.facebook.com/24ghantaonline Twitter: https://twitter.com/24ghantaonline Google Plus: https://goo.gl/XDfaPf
Click on the timing mentioned below to listen to the particular song in the above video 00:00:03 Pyar Kiya To Darna Kya | Mughal-E-Azam 00:06:23 Teri Mehfil Mein Kismat Azmakar | Mughal-E-Azam 00:11:28 Tere Husn Ki Kya Tarif Karun | Leader 00:16:05 Aaj Ki Raat Mere Dil Ki Salami Lele | Ram Aur Shyam 00:21:32 Suhani Raat Dhal Chuki | Dulari 00:25:01 Naina Lad Jaihen | Gunga Jumna 00:29:43 Madhuban Mein Radhika Nache Re | Kohinoor 00:35:44 Do Sitaron Ka Zameen Par | Kohinoor 00:39:03 Mohe Panghat Pe | Mughal-E-Azam 00:42:58 Tu Ganga Ki Mauj | Baiju Bawra 00:47:39 Nanha Munna Rahi Hoon | Son Of India 00:52:35 Aaj Purani Raahon Se | Aadmi 00:57:22 Mere Mehboob Tujhe Meri Muhabbat | Mere Mehboob 01:04:21 Man Tarpat Hari Darsan Ko Aaj | Baiju Bawra 01:09:21 Koi Sagar Dil Ko Bahlata Nahin | Dil ...
1. Tere Sadke Balam (Video Song) | Amar | Dilip Kumar & Madhubala 2. Afsana Likh Rahi Hoon - Dard - Uma Devi - Suraiya - Munawwar Sultana 3. Chandni Aayi Banke - Geeta Bali - Madhubala -Shyam Kumar - Dulari - Shamshad Begum 4. Ae Shama Tu Bata - Raj Kapoor - Suraiya - Dastan 1950 5. Dil Ko Teri Tasveer Se - Raj Kapoor - Suraiya - Dastan 1950 6. Naino Mein Preet Hai (HD) - Dastan 1950 Songs - Raj Kapoor - Suraiya - Naushad Ali 7. Tara Ri Aara Ri Aara Ri Yeh Saawan Rut - Dastan 1950 Songs - Raj Kapoor - Suraiya - Mohd Rafi 8. Dil Dhadak Dhadak Dil (HD) - Dastan 1950 Songs - Raj Kapoor - Suraiya - Mohd Rafi 9. Duniya Kya Jaane Mera (HD) - Dillagi 1949 Songs - Suraiya - Naushad 10. Jawan Hai Mohabbat Haseen - Noor Jehan - Anmol Ghadi 11. Jhoole Mein Pawan Ki (HD) - Baiju Bawra Songs - Meena K...
Music Director Naushad Ali hated Kishore Kumar. This video gives instance of Naushad's hatred towards Kishore Kumar with examples and photographs. Kishore Kumar recorded one song only for Naushad and we have mentioned the same in this video. About Us: 70mm with Rahoul is a show about Bollywood nostalgia. Here we talk about many Bollywood Unknown Facts. Subscribe to our channel and turn “All Notifications” on to get new videos as soon as we release them. #kishorekumar #kishorekumarsongs #kishoreda
മാതാവിന്റെ മഹത്വം | ISLAMIC SPEECH MALAYALAM 2021 | NOUSHAD BAQAVI | ISLAMICSPEECHTV.COM | SUPER MATHAPRABHASHANAM 2021 Welcome to ISM Media Islamic Speeches You Tube Channel MSI Islamic Media is Most Popular Islamic Channel Network office @ UAE MSI Islamic Media , P.O Box 515000 , Sharjah , United Arab Emirates office @ Kerala MSI Islamic Media Amal Complex CP Ummer Road Pulleppady Ernakulam L.NO : 04844038291 Paid Collaboration Contact :- [email protected] കൂടുതൽ മതപ്രഭാഷണങ്ങള് ലഭിക്കാൻ MSI Islamic Media യുടെ വാട്സ്ആപ് ഗ്രൂപ്പിൽ ജോയിൻ ചെയ്യുക : https://chat.whatsapp.com/Jg6iaHK9H91EXdW6PAiEeJ Website : http://www.islamicspeechtv.com Get More Videos - Subscribe - http://www.youtube.com/c/ISMMediaIslamicSpeeches Get More Videos - Facebook - https://www.facebook.com/islamict...
Enjoy super hit romantic love songs from the much acclaimed Music Director Naushad in the form of a jukebox on Bollywood Classics! Song List : 00:15 - Nain Lad Jai Hain 04:48 - Mere Mehboob Tujhe 12:44 - Mera Pyar Bhi Tu Hai 16:51 - Huye Hum Jin Ke Liye Barbaad 20:44 - Dhundho Dhundho Re Sajana. 23:55 - Main Toh Pyar Se Tere Piya 27:15 - Na Aadami Ka Koyi Bharosa 30:50 - Ye Kaun Aaya 34:22 - Bachpan Ke Din Bhula Na Dena 36:21 - Mere Jivan Saathi Naushad Sahab is one of the foremost and veteran music composers from the Hindi film fraternity. He is one of the pioneers to use classical music in his compositions. Enjoy his mesmerizing tracks in this jukebox! Catch more jukeboxes of iconic singers like Kishore Kumar, Lata Mangeshkar, Mohammad Rafi, etc. here : http://goo.gl/EAzi7i Sub...
Naushad Ali (26 December 1919 – 5 May 2006) was an Indian music director for Hindi films.He is widely considered to be one of the greatest and foremost music directors of the Hindi film industry. He is particularly known for popularising the use of classical music in films. His first film as an independent music director was Prem Nagar in 1940. His first musical success film was Rattan (1944), following it up with 35 silver jubilee hits, 12 golden jubilee and 3 diamond jubilee mega successes. Naushad was conferred the Dadasaheb Phalke Award and the Padma Bhushan in 1982 and 1992 respectively for his contribution to the Bollywood film industry Subscribe Us : https://goo.gl/mRFqpS
Click on the timing mentioned below to listen to the particular song in the above video. 00:00:07 Pyar Kiya To Darna Kya | Mughal-E-Azam 00:06:24 Teri Mehfil Mein Kismat Azmakar | Mughal-E-Azam 00:11:30 Mohe Panghat Pe | Mughal-E-Azam 00:16:13 Tu Ganga Ki Mauj | Baiju Bawra 00:20:54 Tere Husn Ki Kya Tarif Karun | Leader 00:25:37 Mohabbat Ki Jhooti Kahani | Mughal-E-Azam 00:28:51 Do Sitaron Ka Zameen Par | Kohinoor 00:32:15 Duniya Men Hum Aaye Hain | Mother India 00:35:51 Mere Mehboob Tujhe Meri Muhabbat | Mere Mehboob 00:40:34 Khuda Nigheban Ho | Mughal-E-Azam 00:43:26 Phir Teri Kahani Yaad Aayi | Dil Diya Dard Liya 00:46:56 Humen Kash Tumse Mohabbat | Mughal-E-Azam 00:50:04 Ae Ishq Yeh Sab Duniyawale | Mughal-E-Azam 00:54:21 Yaad Men Teri Jaag Jaag Ke Hum | Mere Mehboob 00:58:49 Tan Rang...
HIDDEN ERROR: Usage of "religion" is not recognized
Naushad Ali (Hindi: नौशाद अली, Urdu: نوشاد علی خیدر;26 December 1919 – 5 May 2006) was an Indian musician. He was one of the foremost music directors for Hindi films, and is particularly known for popularising the use of classical music in films.
His first film as an independent music director was Prem Nagar in 1940. His first musical success film was Rattan (1944), following it up with 35 silver jubilee hits, 12 golden jubilee and 3 diamond jubilee mega successes. Naushad was conferred the Dadasaheb Phalke Award and the Padma Bhushan in 1982 and 1992, respectively, for his contribution to the Bollywood film industry.
Naushad was born and raised in Lucknow, a city with a long tradition as a center of Indian Muslim culture. His father, Wahid Ali, was a munshi (court clerk). As a child, Naushad would visit the annual fair at the Deva Sharif in Barabanki, 25 km from Lucknow, where all the great qawwals and musicians of those days would perform before the devotees. He studied Hindustani music there under Ustad Ghurbat Ali, Ustad Yusuf Ali, Ustad Babban Saheb, and others. He also repaired harmoniums.
featuring Ghostface Killah, Killah Priest, RZA
Intro: (LP version only)
Choose the sword, and you will join me
Choose the ball, and you join your mother... in death
You don't understand my words, but you must choose
*baby gurgling*
So... come boy, choose life or death
Verse One: Ghostface Killah
The only man I hold wake for
Is the sky-blue Bally kid, in eighty-three, rocked Taylor's
My Memorex performed tape decks, my own phone sex
Watch out for Haiti bitches, I heard they throw hex
Yo, Wu whole platoon is filled with rac-coons
Corner sittin wine niggaz sippin Apple Boone, this ain't no white cartoon
Cuz I be duckin crazy spades
The kid hold white shit, like blacks rock ashy legs
Why is the sky blue? Why is water wet?
Why did Judas rat to Romans while Jesus slept? Stand up
You're out of luck like two dogs stuck
Iron Man be sippin rum, out of Stanley Cups, unflammable
Noriega, aimin knives which stay windy in Chicago
spine-tingle, mind boggles
Kangols in rainbow colors, promoters try to hold dough
Give me mine before Po, wrap you up in so-and-so
I ran the Dark Ages, Constantine and great Henry the Eighth
Built with Ghengis Khan, the wreck suede wiley Don
Verse Two: Killah Priest
I judge wisely, as if nothin ever surprise me
Loungin, between two pillars of ivory
I'm lively, my dome piece, is like buildin stones in Greece
my poems are deep from ancient thrones I speak
I'm overwhelmed, as my mind, roams the realm
My eye's the vision, memory is the film
Others act sub-tile, but they fragile above clouds
They act wild and couldn't budge a crowd
No matter how loud they get, though they growl and spit
Clutch they fists, and throw up signs like a Crip
And throw all types of fits
I leave em split, like ass cheeks and ragged pussy lips
Verse Three: The RZA
Aiyyo, camoflouge chameleon, ninjas scalin your buildin
No time to grab the gun they already got your wife and children
A hit was sent, from the President, to rage your residence
Because you had secret evidence, and documents
On how they raped the continents, and it's the prominent
dominant Islamic, Asiatic black hebrew
The year two thousand and two, the battle's filled with the Wu
Six million devils just died from the Bubonic Flu
Or the Ebola Virus, under the reign of King Cyrus
You can see the weakness of a man right through his iris
Un-loyal snakes get thrown in boilin lakes
of hot oil, it boils your skin, chickenheads gettin slim
like Olive Oyl, only plant the seed deep inside fertile soil
Fortified with essential, vitamin and mineral
use the sky for a blanket, stuffin clouds inside my pillow
Rollin with the Lands, the tribe's a hundred and forty four thousand chosen
Protons Electrons Always Cause Explosions
Verse Four: The Genius/GZA (Maximillion)
The banks of G, all CREAM downs a vet
Money feed good, opposites off the set
It ain't hard to see, my seeds need God-degree
I got mouths to feed, unnecessary beef is more cows to breed
I'm on some tax free shit by any means
Whether bound to hit scheme or some counterfeit CREAM
I learned much from such with cons who run scams
Veterans got the game spiced like hams
And from that, sons are born and guns are drawn
Clips are fully loaded, and then blood floods the lawn
Disciplinary action was a fraction of strength
that made me truncate the limp on temp
with the stump, treat his hips like air pumps
RZA shaped the track, niggaz caught razor bumps
Scarred tryin to figure who invented
this unprecented, opium-scented, dark-tinted
Now watch me blow him out his shoes without clues
Cuz I won't hesitate to detonate, I'm short fuse