- published: 05 Dec 2021
- views: 7173168
'+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; })); }); -->
St. Michael is an oil painting by Italian artist Raphael. Also called the Little St. Michael to distinguish it from a larger, later treatment of the same theme, St. Michael Vanquishing Satan, it is housed in the Louvre in Paris. The work depicts the Archangel Michael in combat with the demons of Hell, while the damned suffer behind him. Along with St. George, it represents the first of Raphael's works on martial subjects.
An early work of the artist, the painting was executed for Guidobaldo da Montefeltro, Duke of Urbino, in 1504 or 1505 on the back of a draughtboard, possibly commissioned to express appreciation to Louis XII of France for conferring the Order of Saint Michael on Francesco Maria I della Rovere, Urbino's nephew and heir. Whatever the impetus for its creation, by 1548 it hung in the collection at the Palace of Fontainebleau.
In 2006's Early Work of Raphael, Julia Cartwright suggests it may betray the influence of Timoteo Viti in the gold tinting to the green wings of Michael, while the sinners in the background suggest that Raphael may have consulted an illustrated volume of Dante's Inferno. The punishments depicted reflect Dante's treatment of hypocrites and thieves.
Michael ("who is like God?", Hebrew: מִיכָאֵל (pronounced [mixaˈʔel]), Micha'el or Mîkhā'ēl; Greek: Μιχαήλ, Mikhaḗl; Latin: Michael (in the Vulgate Michahel); Arabic: ميخائيل, Mīkhā'īl) is an archangel in Judaism, Christianity, and Islam. Roman Catholics, the Eastern Orthodox, Anglicans, and Lutherans refer to him as "Saint Michael the Archangel" and also as "Saint Michael". Orthodox Christians refer to him as the "Taxiarch Archangel Michael" or simply "Archangel Michael".
Michael is mentioned three times in the Book of Daniel, once as a "great prince who stands up for the children of your people". The idea that Michael was the advocate of the Jews became so prevalent that in spite of the rabbinical prohibition against appealing to angels as intermediaries between God and his people, Michael came to occupy a certain place in the Jewish liturgy.
In the New Testament Michael leads God's armies against Satan's forces in the Book of Revelation, where during the war in heaven he defeats Satan. In the Epistle of Jude Michael is specifically referred to as "the archangel Michael". Christian sanctuaries to Michael appeared in the 4th century, when he was first seen as a healing angel, and then over time as a protector and the leader of the army of God against the forces of evil. By the 6th century, devotions to Archangel Michael were widespread both in the Eastern and Western Churches. Over time, teachings on Michael began to vary among Christian denominations.
The Church of St. Michael (German: Michaeliskirche) is an early-Romanesque church in Hildesheim, Germany. It has been on the UNESCO World Cultural Heritage list since 1985. It is now a Lutheran church.
Bishop Bernward of Hildesheim (996-1022) built a Benedictine monastery from the ground up on a hill linked with the archangel Michael just a half kilometer north of the city walls of his seat (Hildesheim), a monastery that featured an imposing church some 70 meters in length overall. Bernward set the first stone for the new church in 1010 and dedicated the still unfinished building to Michael on the archangel's feast day, 29 September 1022, just a few weeks before his death. Construction, however, continued under his successor, Bishop Godehard (died 1038), who completed the work in 1031 and reconsecrated the church to Michael on September 29 of that year. The church has double choirs east and west, double tripartite transepts at either end of the nave, and six towers----two large ones over the crossings east and west, and four other tall and narrow ones attached to the small sides of the two transepts. The eastern choir featured three apses, and the west had a deep chapel with a huge single apse rising high over an elaborate cross-vaulted hall crypt with an ambulatory. Bishop Bernward's remains were placed in the western crypt.
St Michael was a brand that was owned and used by Marks & Spencer (M&S) from 1928 until 2000.
In 1875 the firm of N. Corah and Sons of Leicester had registered the St Margaret brand for their hosiery products. The name originated because their factory, which became one of the largest hosiery factories in Europe, was in the parish of St Margaret's in Leicester. In 1926 Corahs entered into an agreement to supply Marks and Spencer directly rather than through a wholesaler. This had the potential to bring them into conflict with the Wholesale Textile Association. In order to protect their other distribution channels Corahs sought to develop an alternative brand name for their goods sold through Marks and Spencer. The name agreed by Simon Marks was St Michael, possibly after his father and co-founder of Marks & Spencer, Michael Marks but also because it was clearly linked in the public mind with the St Margaret brand which had a reputation for quality.
The name was introduced in 1928 and originally applied only to products produced by Corahs but by 1950 and for the next fifty years, virtually all goods in Marks and Spencers were sold under the St Michael brand. The St Michael name was adopted as a 'quality guarantee' and appeared as the St Michael Quality Promise on the back of food products, on the side of delivery vehicles and on in-store ordering receipts.
Raphael was a Japanese visual kei rock band that formed in 1997, when the members were only 15. They disbanded in 2001, after guitarist Kazuki died at age 19. In 2012, the remaining members reunited Raphael for two concerts on October 31 and November 1.
Raphael was originally started by bassist Yukito in 1997, after recruiting guitarist Kazuki (華月), vocalist Yuki and finally drummer Hiro, they had their first concert on December 10. Their first album Lilac was released in 1998 and was followed with a home video. They charted on the Oricon chart for the first time when their song "Yume Yori Suteki na" was used for the TBS show Kyaiin Kanbyou no Megumi no Heart (キャイーン・寛平の女神のハート). They released two singles on the same day, one hitting number 37, and one number 38.
In 1999 their major label debut, "Hanasaku Inochi Aru Kagiri", reached number 25 on the Oricon. Their later releases centered about graduation because it was around the time the members would have graduated from high school, had they not dropped out to pursue music. They performed their first show at the Nippon Budokan in March 2000.
The Simpsons includes a large array of supporting characters: co-workers, teachers, family friends, extended relatives, townspeople, local celebrities, fictional characters within the show, and even animals. The writers originally intended many of these characters as one-time jokes or for fulfilling needed functions in the town. A number of them have gained expanded roles and have subsequently starred in their own episodes. According to the creator of The Simpsons, Matt Groening, the show adopted the concept of a large supporting cast from the Canadian sketch comedy show Second City Television.
Agnes Skinner (voiced by Tress MacNeille) is the mother of Principal Skinner and first appeared in the first season episode "The Crepes of Wrath" as an old woman who embarrassingly calls her son "Spanky". However, as episodes progressed, the character turned bitter. She is very controlling of her son and often treats him as if he is a child. She hates Edna Krabappel due to her son's feelings for the other woman. Agnes has married four times. Several Springfield residents (including the Simpsons) are afraid of her. When "the real Seymour Skinner" arrives in Springfield, Agnes ends up rejecting him in part because he stands up to her, but also because unlike Skinner/Tamzarian, her biological son is independent and doesn't need her anymore, while Skinner immediately reverts to a good-for-nothing without her.
Raphaël Haroche (born 7 November 1975), professionally known under his mononym Raphaël, is a French singer–songwriter and actor.
Raphaël was born as Raphaël Haroche on 7 November 1975 in Paris, France, and was raised in Boulogne-Billancourt, Hauts-de-Seine. Through his father he is of Moroccan Jewish and Russian-Jewish descent and his mother is Argentinian. During his childhood and his adolescence, his idols were David Bowie, Iggy Pop, Bob Dylan, Led Zeppelin, Jimi Hendrix, Téléphone, and Barbara. Raphaël played the piano and the guitar, and did not like school.
In June 2007, Raphaël placed ninth on the French Elle magazine "15 Sexiest Man" list. He has been in a relationship with actress Mélanie Thierry, who appeared in the music video for his single "Caravan". On 24 May 2008, Thierry gave birth to the couple's first child, Roman.
His uncle is Serge Haroche, 2012 Nobel Physics Prize laureate.
In 2000, Raphaël released his first album Hôtel de l'univers (the title is a tribute to Arthur Rimbaud), but it was not until three years later that he enjoyed his first mainstream success with the song Sur la Route, a duo with famous French singer Jean-Louis Aubert, included in his second album La Réalité. With this album, he chose folk music.
Archangel Michael Clearing All Dark Energy From Your Aura With Alpha Waves, Archangel Healing Music -------------------------------------------------- ---------------------------- Music: Moose © Copyright: Animation: Leo Images / photos licensed from: Shutterstock Music to relax, meditate, study, read, massage, spa or sleep. This music is perfect to combat anxiety, stress or insomnia as it facilitates relaxation and helps us eliminate bad vibrations. They can also use this music as a background for guided meditation classes or sleep relaxation. Welcome to a new live of relaxing music on the Angelical Meditation channel . They can turn the video down to low volume and start doing any task like studying, working, reading ... or just relaxing or sleeping soundly. If you liked the show a...
Various religions have established a sort of military hierarchy in the heavenly kingdom, and angels are typically the entities which fill the roles of soldiers, generals, and various other positions. Within Christianity, Michael is often portrayed as the leader of the army of heaven. As the archangel in charge of every other angel, Michael may be powerful, but his name itself is a reminder that he's nothing compared to God. The Hebrew name "Mikha'el" translates roughly to "Who is like God?", itself a reminder that Michael is a distant second to the man upstairs. This is the Archangel Michael: The untold truth. #Bible #christianity #Religion Prince of the Archangels | 0:00 Little is known about Michael | 1:18 Power in the physical realm | 2:27 Responsibilities of an archangel | 3:39 Micha...
►Speech is completely original and produced exclusively by Grace Digital Network ►Music licensed through Artlist.io ►Footage licensed through Filmpac.com and Storyblocks ►Animation: Tina Davidson ►Writer: David Kolawole All scripture animations are derived from the King James Bible (KJB) or simply the Authorized Version (AV) Our purpose, when making these videos, is to make quality educational motivational videos and share these with our viewers. Note: We own copyright to the footages and background music used in this video. ---------------------------------------------------------- Title: Archangel Michael: The Strongest Angel (Biblical Stories Explained) ---------------------------------------------------------- CONTACT INFORMATION: Grace Digital Network email: leadership@ins...
Archangel Michael: The Strongest Angel (Biblical Stories Explained) Welcome to Trailblazer Christian Network, Our channel is dedicated to uplifting your spirit and strengthening your walk with God through Christian motivational videos. Whether you're seeking an inspirational Christian sermon to spark a fire in your heart, a prayer to help you connect with God, or a powerful testimony to encourage your faith, our channel has you covered. In the midst of life's storms, our content will inspire you to keep your eyes on Jesus and to remain firm in your faith. Join us daily for your dose of Christian motivation and inspiration, allowing the transformative power of the Gospel to mold your thoughts and actions and becoming trailblazers for Christ. Christian Motivation 👉 SUBSCRIBE & ENABLE...
01- Angelic Music - Archangel Michael Stress relief | Relax your mind and body | Concentrate on Study | Take a look at my new music on my composer channel by clicking here: https://youtu.be/ZhH6-9xM044 Before you continue to read, let's connect: https://mailchi.mp/ed61f5d9f915/wba-youtube-family --- Join Well Being Academy channel to get access to more content and perks: https://www.youtube.com/channel/UC0AmKezm7PmYAIxVOLFkiAw/join Thank you very much for watching this video. ►Subscribe to: https://www.youtube.com/channel/UC0AmKezm7PmYAIxVOLFkiAw?sub_confirmation=1 if you enjoyed this video and would like to experience more. If you like Well Being Academy relaxing music, deep sleep music, study music and video content, we would appreciate considering supporting our work with a small...
►Speech is completely original and produced exclusively by Grace Digital Network ►Music licensed through Artlist.io ►Footage licensed through Filmpac.com and Storyblocks ►Animation: Tina Davidson ►Writer: David Kolawole All scripture animations are derived from the King James Bible (KJB) or simply the Authorized Version (AV) Our purpose, when making these videos, is to make quality educational motivational videos and share these with our viewers. Note: We own copyright to the footages and background music used in this video. ---------------------------------------------------------- Title: The Dispute Between The Devil And Archangel Michael ---------------------------------------------------------- CONTACT INFORMATION: Grace Digital Network email: [email protected] ...
St. Michael is an oil painting by Italian artist Raphael. Also called the Little St. Michael to distinguish it from a larger, later treatment of the same theme, St. Michael Vanquishing Satan, it is housed in the Louvre in Paris. The work depicts the Archangel Michael in combat with the demons of Hell, while the damned suffer behind him. Along with St. George, it represents the first of Raphael's works on martial subjects.
An early work of the artist, the painting was executed for Guidobaldo da Montefeltro, Duke of Urbino, in 1504 or 1505 on the back of a draughtboard, possibly commissioned to express appreciation to Louis XII of France for conferring the Order of Saint Michael on Francesco Maria I della Rovere, Urbino's nephew and heir. Whatever the impetus for its creation, by 1548 it hung in the collection at the Palace of Fontainebleau.
In 2006's Early Work of Raphael, Julia Cartwright suggests it may betray the influence of Timoteo Viti in the gold tinting to the green wings of Michael, while the sinners in the background suggest that Raphael may have consulted an illustrated volume of Dante's Inferno. The punishments depicted reflect Dante's treatment of hypocrites and thieves.