- published: 22 Sep 2020
- views: 1925
'+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; })); }); -->
Āghā Moḥammad Khān Qājār (1742–1797; Persian: آغا محمد خان قاجار) was the founder of the Qajar dynasty of Iran, ruling from 1789 to 1797 as king (shah). He was originally chieftain of the Qoyunlu branch of the Qajar tribe. In 1789, Agha Mohammad Khan was enthroned as the king of Iran, but was not officially crowned as its king until March 1796. On 17 June 1797 Agha Mohammad Khan was assassinated, and was succeeded by his nephew, Fath-Ali Shah Qajar.
Agha Mohammad Khan's reign is noted for the reemergence of a centrally led and united Iran. Following the death of Nader Shah (d. 1747), many of the Iranian territories in the Caucasus that had been ruled by the various subsequent Iranian dynasties since 1501, today comprising Georgia, Dagestan, Azerbaijan, and Armenia had broken apart into various Caucasian khanates or had declared de facto independence as in Georgia's case. After 48 years, they were all reconquered by Agha Mohammad Khan. Some of his reconquests were even for that time, exceptionally cruel, such as his re-subjugation of Georgia, where he sacked the capital Tblisi and massacred many of its inhabitants, and moving away some 15,000 Georgian captives back to mainland Iran.
The Eunuch is a 1971 Hong Kong wuxia film directed by Teddy Yip, and starring Pai Ying and Lisa Chiao Chiao.
Eunuchus (The Eunuch) is a comedy written by the Roman playwright Terence featuring a complex plot of familial misunderstanding. It is a rewrite of one written by Menander in Greek.
The prologue is an apology for the work of Terence, who was coming under attack at the time for his writing. It is believed that he was a member of a writer's circle, and his work was not completely his own.
This play centers on several interconnecting plots; the first forms the framework for the play—the love between a young Athenian man Phaedria and a foreign born courtesan named Thais. Introduced in Act I, Scene i, Phaedria and his wise-cracking slave, Parmeno, discuss Phaedria's situation. Before the curtain rose, Phaedria had been shut out of Thais' house, and he contemplates what he should do. "What, therefore am I to do? Will I not go? Not even now, when I freely summoned? Or is it better for me to prepare myself to endure the insults of whores? She shuts me out, then she calls me back. Should I go back?" (I.i.47–49) Offering philosophic advice, Parmeno encourages the love-sick Phaedria, "If you can go, there's nothing better or braver: but if you begin, and do not stoutly hang on, and when you cannot bear it, when no one seeks you out, with peace not having been made, you go to her freely, saying that you love her, and cannot bear it, you're done: it's over. You're through. She will play with you when she senses you are defeated." (I.i.50–55) He then offers his a famous line:
Muhammad Khan or Mohammad Khan may refer to:
Mohammad Khan (born 1 May 1911) was an Afghanistan athlete, who competed at the 1936 Summer Olympic Games in the 100 m and Long jump but, failed to reach the next round in either .
Iran (/aɪˈræn/ or i/ɪˈrɑːn/;Persian: Irān – ایران [ʔiːˈɾɒːn]), also known as Persia (/ˈpɜːrʒə/ or /ˈpɜːrʃə/), officially the Islamic Republic of Iran (جمهوری اسلامی ایران – Jomhuri ye Eslāmi ye Irān [d͡ʒomhuːˌɾije eslɒːˌmije ʔiːˈɾɒːn]), is a country in Western Asia. It is bordered to the northwest by Armenia, the de facto Nagorno-Karabakh, and Azerbaijan; with Kazakhstan and Russia across the Caspian Sea; to the northeast by Turkmenistan; to the east by Afghanistan and Pakistan; to the south by the Persian Gulf and the Gulf of Oman; and to the west by Turkey and Iraq. Comprising a land area of 1,648,195 km2 (636,372 sq mi), it is the second-largest country in the Middle East and the 18th-largest in the world. With 78.4 million inhabitants, Iran is the world's 17th-most-populous country. It is the only country that has both a Caspian Sea and an Indian Ocean coastline. Iran has long been of geostrategic importance because of its central location in Eurasia and Western Asia, and its proximity to the Strait of Hormuz.
Şiran, also Karaca, is a town and district of Gümüşhane Province in the Black Sea region of Turkey. It is one of the points of passage between Eastern Anatolia and Black Sea regions of Turkey, in the sense that the western road departing from Erzincan towards the Zigana Pass (the key pass between the two geographies) has its last urban stop in Şiran. According to the 2010 census, population of the district is 17,600 of which 8,207 live in the town of Şiran. The district covers an area of 928 km2 (358 sq mi), and the town lies at an elevation of 1,457 m (4,780 ft).
The name comes from Persian and means "the lions", although it is most likely to be an adaptation of the former Greek name of Cheriana (Χερίανα) adopted after the Turkish settlement in the region after and possibly even slightly before the Battle of Manzikert.
Many of the northern villages of the district was home to minority populations of Pontic Greeks until the 1922 Exchange of Greek and Turkish Populations, constituting the southern fringes of that community's extension. Some among the present population can also trace their roots to Greeks who had converted to Islam until as late as the end of the 19th century, as indicated by the Ottoman census and changed village names (for example, the present village of "Evren" was formerly called "Sefker").
Agha Mohammad Khan Qajar, also known by his regnal name of Agha Mohammad Shah, was the founder of the Qajar dynasty of Iran, ruling from 1789 to 1797 as king. Originally chieftain of the Qoyunlu branch of the Qajar tribe, Agha Mohammad Khan was enthroned as the king of Iran in 1789, but was not officially crowned until March 1796, having deposed Lotf Ali Khan of the Zand dynasty in 1794. Agha Mohammad Khan Qajar was famously the eunuch Monarch, being castrated as a young adult upon his capture by Adel Shah Afshar, and hence was childless. He was assassinated on 17 June 1797, and was succeeded by his nephew, Fath-Ali Shah Qajar.
Farzad Fattahi - "Agha Mohammad Khan"
IRAN, 1789–1925, ۱۱۷۴ - ۱۳۰۴, QAJAR DYNASTY, HOSSEIN MOHRI, MOHAMMAD AMINI, AGHA'MOHAMMAD KHAN, FATH'ALI SHAH, MOHAMMAD SHAH, NASSER'EDDIN SHAH, MOZAFFAR'EDDIN SHAH, MOHAMMAD'ALI SHAH, AHMAD SHAH,
Created by Tawsin Mujtaba Ahmed. If you are interested in History and Political Philosophy then check out my Channel.
Music: Farzad Fattahi Lyrics: Roozbeh Bemani -uploaded in HD at http://www.TunesToTube.com
The Royal Salute was the royal and national anthem of the Qajar Empire between 1873 and 1909. Composed by Alfred Jean Baptiste Lemaire, the anthem was commissioned by Naser al-Din Shah for state-level and royal ceremonies. The Royal Salute remained as the state national anthem until 1909, with the abdication of Mohammad Ali Shah. Following the coronation Ahmad Shah in 1914, The Salute of Sublime State of Persia was adopted as the official Persian national anthem. _________________________________________________________________ Lyrics: Nâme jâvide Vatan Sobhe âmide Vatan Jelve kon dar âsemân Hamco mehre jâvedân Vatan ey hastiye man Šuro sarmastiye man Jelve kon dar âsemân Hamco mehre jâvedân Bešeno suze soxanam Ke ham âvâze to manam Hameye jâno tanam Vatanam Vatan...
Persian King Agha Mohammad Khan ordered the execution of two servants for being too loud. Since it was a holy day, he postponed their execution by a day and made the servants return to their duties. They murdered the king in his sleep that night. Destiny ▶ Want some more stories Check out our Reddit Storie Time playlist? 👉 https://bit.ly/2Eyj3zT ▶ Reddit Storie Time brings you the best, craziest, scariest, most insane Reddit stories DAILY. And all of these are High-Quality Narrative Videos 🔥 ▶ Subscribe and turn on the notifications 🛎 https://bit.ly/33YvGwy Reddit Storie Time threads include threads from r/AskReddit, scary stories from r/nosleep as well as educational threads from r/dataisbeautiful, r/todayilearned... You will also find the best Reddit stories from r/roastme, r/funny...
Nāder Shāh Afshār or Nadir Shah (Persian: نادر شاه افشار; also known as Nāder Qoli Beg - نادر قلی بیگ or Tahmāsp Qoli Khān - تهماسپ قلی خان) (November, 1688 or August 6, 1698 – June 19, 1747) ruled as Shah of Iran (1736–47) and was the founder of the Afsharid dynasty which briefly became one of the most powerful Persian dynasties in Iranian history. Because of his military genius as evidenced in numerous martial encounters throughout the Naderian Wars such as the battles of Herat, Mihmandust, Murche-Khort, Agh-Darband, Baghavard, Kheibar pass, Karnal & Kars, some historians have described him as the Napoleon of Persia or the Second Alexander. Nader Shah was a member of the Turkic Afshar tribe of northern Persia, which had supplied military power to the Safavid state since the time of Shah...
The Eunuch (1971) (English sub) Gui tai jian 鬼太監 Hoạn quan Director: Wing-Cho Yip (as Yeh Yung Tsu) Writer: Wei Lo Stars: Hua Tsung, Chiao Chiao, Ying Bai Eunuch Gui Dehai avoids assassination and extracts a most bloody revenge on the royal family. This revenge extends to the absent Prince and the Eunuch sends out men to find and kill him. Fortunately for Prince Chuchin, a fake kidnapping and cry for help draws him after the Leisurely Old Man of the Green Bamboo Forest (a legendary pole fighter) and thus he is under his wing when Gui's men come. At the same time Gui is having a surprise as his father turns up after 20 years to tell him he has a daughter. Knowing that such information would hurt his standing even though it occurred before his castration, Gui kills his father and seeks to ...
A reading of Acts 8:26-39. Philip baptizes an Ethiopian Eunuch on the road to Africa. Feel free to use this video as your scripture reading for worship. Read the visual commentary at https://www.stevethomason.net/2021/04/19/a-cartoonists-guide-to-philip-and-the-ethiopian-eunuch-acts-826-40/ Download the PowerPoint and Image Pack https://stevethomason.gumroad.com/l/acts8-26-40
Jumanji: The Next Level - The Eunuch: Mouse (Kevin Hart) is mistaken for a Eunuch. BUY THE MOVIE: https://www.fandangonow.com/details/movie/jumanji-the-next-level-2019/MMV3FFCD4C626E61D79BAC131C4E65975E42?cmp=Movieclips_YT_Description Watch the best Jumanji: The Next Level scenes & clips: https://www.youtube.com/playlist?list=PLZbXA4lyCtqqENrKrGP9gO2qDFCcaU9uT FILM DESCRIPTION: When Spencer goes back into the fantastical world of Jumanji, pals Martha, Fridge and Bethany re-enter the game to bring him home. But the game is now broken -- and fighting back. Everything the friends know about Jumanji is about to change, as they soon discover there's more obstacles and more danger to overcome. CREDITS: TM & © Sony Pictures Entertainment (2019) Cast: Jack Black, Kevin Hart Director: Jake Kasda...
In this true crime case we look at three cases of Nullo culture, but what is a Nullo? It could be argued that Nullo's are a cult formed by men who have been willingly castrated, also known as Eunuchs. The crazy thing is that these operations are very much D.I.Y and many accidents and deaths occur, the 'cutters' as they are known or 'Eunuch Makers' are not trained surgeons and they are risking the lives of the people they operate on. Most importantly though, why do some people desire to live with no genitalia? Bizarre Bazaar brings your true crime documentaries, prison interviews, speaking with survivors, mysteries and goes places no other true crime channel dares to go. I pride myself on bringing first hand material to YouTube, so you will only see this true crime content here. Become ...
Teaser for the short story adaptation of Gavin James Bower's short story. Written & Directed by Gregory A. Netterville.
The Bible very clearly addresses the eunuch in ancient society. There are over 35 scriptures pertaining to these servants and slaves of royalty, with prophetic warnings, and the everyday tasks assigned to them. Jesus teaches His disciples about celibacy and what the 3 categories of eunuchs are. #christianity #bible #jesus
Okatee Baptist Church
Āghā Moḥammad Khān Qājār (1742–1797; Persian: آغا محمد خان قاجار) was the founder of the Qajar dynasty of Iran, ruling from 1789 to 1797 as king (shah). He was originally chieftain of the Qoyunlu branch of the Qajar tribe. In 1789, Agha Mohammad Khan was enthroned as the king of Iran, but was not officially crowned as its king until March 1796. On 17 June 1797 Agha Mohammad Khan was assassinated, and was succeeded by his nephew, Fath-Ali Shah Qajar.
Agha Mohammad Khan's reign is noted for the reemergence of a centrally led and united Iran. Following the death of Nader Shah (d. 1747), many of the Iranian territories in the Caucasus that had been ruled by the various subsequent Iranian dynasties since 1501, today comprising Georgia, Dagestan, Azerbaijan, and Armenia had broken apart into various Caucasian khanates or had declared de facto independence as in Georgia's case. After 48 years, they were all reconquered by Agha Mohammad Khan. Some of his reconquests were even for that time, exceptionally cruel, such as his re-subjugation of Georgia, where he sacked the capital Tblisi and massacred many of its inhabitants, and moving away some 15,000 Georgian captives back to mainland Iran.
[PUNK:]
You declared you would be three inches taller
You only became what we made you.
Thought you were chasing a destiny calling
You only earned what we gave you.
You fell and cried as our people were starving,
Now you know that we blame you.
You tried to walk on the trail we were carving,
Now you know that we framed you.
[G.F.:]
I'm the guy in the sky
Flying high Flashing eyes
No surprise I told lies
I'm the punk in the gutter
I'm the new president
But I grew and I bent
Don't you know? don't it show?
I'm the punk with the stutter.
My my my my my mmmm my my my.
GGGGG-g-g-g-g generation.
[PUNK:]
We tried to speak between lines of oration
You could only repeat what we told you.
Your axe belongs to a dying nation,
They don't know that we own you.
You're watching movies trying to find the feelers,
You only see what we show you.
We're the slaves of the phony leaders
Breathe the air we have blown you.
[G.F.:]
I'm the guy [etc.]
I have to be careful not to preach
I can't pretend that I can teach,
And yet I've lived your future out
By pounding stages like a clown.
And on the dance floor broken glass,
The bloody faces slowly pass,
The broken seats in empty rows,
It all belongs to me you know.
[PUNK:]
You declared [etc.]