- published: 07 Jun 2020
- views: 14938442
'+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; })); }); -->
A solar flare is a sudden flash of brightness observed near the Sun's surface. It involves a very broad spectrum of emissions, requiring an energy release of up to 6 × 1025joules of energy (roughly the equivalent of 160,000,000,000 megatons of TNT, over 25,000 times more energy than released from the impact of Comet Shoemaker–Levy 9 with Jupiter). Flares are often, but not always, accompanied by a spectacular coronal mass ejection. The flare ejects clouds of electrons, ions, and atoms through the corona of the sun into space. These clouds typically reach Earth a day or two after the event. The term is also used to refer to similar phenomena in other stars, where the term stellar flare applies.
Solar flares affect all layers of the solar atmosphere (photosphere, chromosphere, and corona), when the plasma medium is heated to tens of millions of Kelvin, while the cosmic-ray-like electrons, protons, and heavier ions are accelerated to near the speed of light. They produce radiation across the electromagnetic spectrum at all wavelengths, from radio waves to gamma rays, although most of the energy is spread over frequencies outside the visual range and for this reason the majority of the flares are not visible to the naked eye and must be observed with special instruments. Flares occur in active regions around sunspots, where intense magnetic fields penetrate the photosphere to link the corona to the solar interior. Flares are powered by the sudden (timescales of minutes to tens of minutes) release of magnetic energy stored in the corona. The same energy releases may produce coronal mass ejections (CME), although the relation between CMEs and flares is still not well established.
Oregon (i/ˈɔːrᵻɡən/ AWR-ə-gən) is a state in the Pacific Northwest region of the United States. Oregon is bordered on the west by the Pacific Ocean, on the north by Washington, on the south by California, on the east by Idaho, and on the southeast by Nevada. The Columbia River delineates much of Oregon's northern boundary, and the Snake River delineates much of the eastern boundary. The parallel 42° north delineates the southern boundary with California and Nevada. It is one of only three states of the contiguous United States to have a coastline on the Pacific Ocean, and the proximity to the ocean heavily influences the state's mild winter climate, despite the latitude.
Oregon was inhabited by many indigenous tribes before Western traders, explorers, and settlers arrived. An autonomous government was formed in the Oregon Country in 1843, the Oregon Territory was created in 1848, and Oregon became the 33rd state on February 14, 1859. Today, at 98,000 square miles, Oregon is the ninth largest and, with a population of 4 million, 26th most populous U.S. state. The capital of Oregon is Salem, the second most populous of its cities, with 160,614 residents (2013 estimate). With 609,456 residents (2013 estimate), Portland is the largest city in Oregon and ranks 29th in the U.S. Its metro population of 2,314,554 (2013 estimate) is 24th. The Willamette Valley in western Oregon is the state's most densely populated area, home to eight of the ten most populous cities.
Oregon is a city in and the county seat of Ogle County, Illinois, United States. The population was 3,721 at the 2010 census.
The land Oregon, Illinois was founded on was previously held by the Potawatomi and Winnebago Indian tribes. In fact, later, settlers discovered that the area contained a large number of Indian mounds, most 10 to 12 feet in diameter.
Ogle County was a New England settlement. The original founders of Oregon and Rochelle consisted entirely of settlers from New England. These people were "Yankees", that is to say they were descended from the English Puritans who settled New England in the 1600s. They were part of a wave of New England farmers who headed west into what was then the wilds of the Northwest Territory during the early 1800s. Most of them arrived as a result of the completion of the Erie Canal. When they arrived in what is now Bureau County there was nothing but a virgin forest and wild prairie, the New Englanders laid out farms, constructed roads, erected government buildings and established post routes. They brought with them many of their Yankee New England values, such as a passion for education, establishing many schools as well as staunch support for abolitionism. They were mostly members of the Congregationalist Church though some were Episcopalian. Culturally Bureau County, like much of northern Illinois would be culturally very continuous with early New England culture, for most of its history.
Oregon is an American jazz and world music group, originally formed in 1971 by Ralph Towner (guitar, piano, synthesizer, trumpet), Paul McCandless (woodwind instruments), Glen Moore (double bass, violin, piano), and Collin Walcott (percussion, sitar, tabla).
Towner and Moore had been friends and occasional collaborators since meeting in 1960 as students at the University of Oregon. By 1969, both were working musicians living in New York; while collaborating with folksinger Tim Hardin they were introduced to world music pioneer Paul Winter's "Consort" ensemble, particularly member Collin Walcott, with whom Towner began improvising as an informal duo. By 1970 Towner and Moore had joined the Winter Consort and met fellow member McCandless; the four began exploring improvisation on their own, while their contributions continued to be seminal in redefining the Winter Consort "sound" in compositions like Towner's "Icarus".
The four musicians made their first group recording in 1970, but the label, Increase Records, went out of business before it could be released (it eventually was issued by Vanguard in 1980 as Our First Record). Oregon made its "formal" debut in NYC in 1971 (originally named "Thyme — Music of Another Present Era", the name change to Oregon was suggested by McCandless).
Get Merch designed with ❤ from https://kgs.link/shop-123 Join the Patreon Bird Army 🐧 https://kgs.link/patreon ▼▼ More infos and links are just a click away ▼▼ We have a bunch of new stuff, from the long requested bacteriophage infographic poster to a new Optimistic Nihilism poster that lets you enjoy some existential dread in style. Or join us in our ant obsession and get the new Ant Explorer Notebook, with beautiful infographics and facts about ants and gold lettering on the cover. If you’d rather update your wardrobe, have a look at our beanies or T Shirts. Or you know, all the other stuff! We put a lot of love and care into developing our products and only make stuff we want to have ourselves – if you want to support kurzgesagt, getting some merch is the best way to do it while r...
Provided to YouTube by IIP-DDS Solar Flare · Oregon Prime ℗ Kepach Music S.r.l. Released on: 2005-12-12 Associated Performer: Paul Mccandless Associated Performer: Glen Moore Associated Performer: Oregon Associated Performer: Ralph Towner Associated Performer: Mark Walker Music Publisher: Oregon Music Composer: Oregon Auto-generated by YouTube.
In this episode, we will tell you everything you need to know about the solar storm that is heading our way and how it can create aurora lights or Northern Lights in some parts of the U.S. and other regions of the world. We will also explain how a solar storm can impact different systems and animals, and what are the benefits and challenges of witnessing this cosmic spectacle. This is a rare and exciting opportunity to see the beauty and power of the Sun-Earth connection. Chapters: 00:00 Introduction 01:02 What is a Geomagnetic Storm? 03:55 What are the Impacts of a Geomagnetic Storm? 07:53 How to Watch the Aurora Lights? 09:50 Outro 10:22 Enjoy Best Telescopes for beginners: Celestron 70mm Travel Scope https://amzn.to/3jBi3yY Celestron 114LCM Computerized Newtonian Telescope https://a...
Computer models of the magnetic field during the 19th century coronal mass ejection (CME) is compared to a moderate 2006 blast. English amateur astronomer Richard Carrington observed the 1859 solar flare that gave birth to a massive CME.
Coronal mass ejections (CMEs) and flares are both solar events, but they are not the same. This video shows the differences between the two by highlighting specific features of each. This video is public domain and can be downloaded at: http://svs.gsfc.nasa.gov/goto?11667 Like our videos? Subscribe to NASA's Goddard Shorts HD podcast: http://svs.gsfc.nasa.gov/vis/iTunes/f0004_index.html Or find NASA Goddard Space Flight Center on Facebook: http://www.facebook.com/NASA.GSFC Or find us on Twitter: http://twitter.com/NASAGoddard
MORE: https://www.kptv.com/
A geomagnetic storm, also known as a magnetic storm, is a temporary disturbance of the Earth's magnetosphere caused by a solar wind shock wave and/or cloud of magnetic field that interacts with the Earth's magnetic field. The disturbance that drives the magnetic storm may be a solar coronal mass ejection (CME) or (much less severely) a co-rotating interaction region (CIR), a high-speed stream of solar wind originating from a coronal hole.[1] The frequency of geomagnetic storms increases and decreases with the sunspot cycle. During solar maximum, geomagnetic storms occur more often, with the majority driven by CMEs. The increase in the solar wind pressure initially compresses the magnetosphere. The solar wind's magnetic field interacts with the Earth's magnetic field and transfers an incr...
The total solar eclipse from Madras, Oregon on August 21, 2017. As the moon passed in front of the sun turning day to night and revealing the sun's corona, apparently all I could think to say was 'Oh my goodness!' This awe-inspiring phenomenon returned to the US on April 8, 2024, when total solar eclipse crossed North America, passing over Mexico, the United States, and Canada. Special thanks to our Patreon supporters! Join the community to help us keep our videos free, forever: https://ve42.co/PatreonDE Everyone says not to photograph your first solar eclipse and I think they might be right. I was focused on getting the exposure right for Bailey's beads and the diamond ring, plus making sure to get the corona and solar flares. This was a bit stressful but I'm delighted with the results...
Watch live with us as a “ring of fire” eclipse travels across the United States on Oct. 14, 2023, from Oregon to Texas. This event occurs when the Moon passes directly in front of the Sun, but appears too small to completely cover the Sun’s surface – resulting in what appears as a ring of fire in the sky. It’s also known as an annular solar eclipse. Everyone in the contiguous 48 states will have the opportunity to see at least a partial eclipse. Join us for conversations with scientists and telescope views from across the country — and send us your questions in chat using #askNASA. Warning: During an annular eclipse, it is never safe to look directly at the Sun without specialized eye protection designed for solar viewing. Stream highlights: 27:25 — Interview with astronauts aboard th...
What is a solar storm, and did one impact Earth this week?
A solar flare is a sudden flash of brightness observed near the Sun's surface. It involves a very broad spectrum of emissions, requiring an energy release of up to 6 × 1025joules of energy (roughly the equivalent of 160,000,000,000 megatons of TNT, over 25,000 times more energy than released from the impact of Comet Shoemaker–Levy 9 with Jupiter). Flares are often, but not always, accompanied by a spectacular coronal mass ejection. The flare ejects clouds of electrons, ions, and atoms through the corona of the sun into space. These clouds typically reach Earth a day or two after the event. The term is also used to refer to similar phenomena in other stars, where the term stellar flare applies.
Solar flares affect all layers of the solar atmosphere (photosphere, chromosphere, and corona), when the plasma medium is heated to tens of millions of Kelvin, while the cosmic-ray-like electrons, protons, and heavier ions are accelerated to near the speed of light. They produce radiation across the electromagnetic spectrum at all wavelengths, from radio waves to gamma rays, although most of the energy is spread over frequencies outside the visual range and for this reason the majority of the flares are not visible to the naked eye and must be observed with special instruments. Flares occur in active regions around sunspots, where intense magnetic fields penetrate the photosphere to link the corona to the solar interior. Flares are powered by the sudden (timescales of minutes to tens of minutes) release of magnetic energy stored in the corona. The same energy releases may produce coronal mass ejections (CME), although the relation between CMEs and flares is still not well established.
Not the back of a gentle mother
I do like a manhole cover
It keeps on pounding my head
We'll order water
Torture sauce and economics
Every day just more comics
In a pissing contest
That started out with atomic bombs
Mom will they drop the bomb
Will they think about their children's children
Be a forwardless mess and this
No one to call
You can't make them stall
I want to feed them to each other
Cause I'm sick of them all
How can't you see something's missing
Is anyone listening
We're shooting up flares
Does anyone care
They got this world locked down bound and gagged
From the reds in Pine Ridge to that land in Bagdad
When did our leaders
Become bottom feeders
We're shooting up flares
Does anyone care
They got this world locked down bound and gagged
With constant fear and paranoia toxins in our head
It's just something they know how to do
How to make everyone feel uncalm
The masses just take it while they turn the screws
Bring to a boil, add oil, then bomb
It's just something that we got to fight
How to make everyone feel uncalm
Keep us distracted with ??
Porno shows, MTV hoes, and all the radio
It's the same fucking song
That's just the way it goes
Cold turkey world to democracy's girls
From the rules of engagements sweet heart
This is the world
How can so many sit silent
Enough to the violence
We're shooting up flares
Does anyone care
They got this world locked down bound and gagged
The Botox, Barbie dolls, and magazine ads
It's just something they know how to do
How to make everyone feel uncalm
The masses just take it while they turn the screws
Bring to a boil, add oil, then bomb
Embodying all that we know to be wrong
How to make everyone feel uncalm
When a war chant becomes a popular song