'+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; })); }); -->

Heart of America Sports Attractions

Heart of America Sports Attractions, also known as the Midwest Wrestling Association, Central States Wrestling and the World Wrestling Alliance, was an American professional wrestling promotion that ran shows mainly in Kansas, Missouri, Nebraska and Iowa. Due to the promotion’s main office and base of operations being in Kansas City, Missouri the territory was often referred to simply as “Kansas City”. The promotion existed from July 1948 until it closed in 1988. The territory was one of the original territories of the National Wrestling Alliance with two of the 6 “founding fathers” of the NWA (Paul "Pinkie" George and Orville Brown) promoting in it.

History

Midwest Wrestling Association

Originally known as the Midwest Wrestling Association before the formation of the National Wrestling Alliance it controlled and booked shows territories in Kansas, Missouri, Nebraska and Iowa and was seen as a cornerstone of the NWA. It joined the NWA in October 1948. The territory was promoted by Pinky George and the first official NWA World Heavyweight Champion Orville Brown (Sonny Myers being the preceding unofficial one) from the creation of the NWA until 1958.

Heart of America

Heart of America may refer to:

  • Heart of America (film)
  • Heart of America (song)
  • Heart of America (college rugby)
  • Heart of America (tour) 2002 tour by the music group U2
  • Heart of America (yacht), 12-metre class yacht
  • Heart of America (college rugby)

    The Heart of America Rugby Football Union is a college rugby conference playing in Division 1-AA, with members composed mostly of Big 12 and SEC schools (and many of these schools enjoying longstanding rivalries from the former Big Eight Conference). HOA organizes a league competition with the winner qualifying for the national playoffs, and every fall hosts a rugby sevens tournament with the winner qualifying for the national sevens championships.

    Heart of America was a Division 2 conference until 2011, with Arkansas and Missouri ranked among the top teams in Division 2. In summer 2011, however, with the creation of the Premier College Division (Division 1-A), several conferences including HOA decided to move up to Division 1-AA.

    The HOA conference is led by Conference Commissioner Miles Hunter of Oklahoma State.

    Current members

    The current member schools (and the date they joined the conference) are:

    Member notes:

  • Lindenwood joined HOA summer of 2012. Lindenwood was the Division 2 champion in 2011-12, and was promoted to Division 1-AA for the 2012-13 year.
  • Heart of America (film)

    Heart of America (also called Heart Of America: Home Room or simply Home Room; not to be confused with the 2002 film Home Room) is a 2002 drama film by German director Uwe Boll about a fictional school shooting in a suburban high school. The film also addresses the issue of school bullying.

    Plot

    The last day of school contains many problems for both teachers and students of Riverton High School, and there are multiple storylines about this.

    The principal, Harold Lewis, must discipline English teacher William Pratt, who has let his professional frustrations get the better of him, while guidance counselor Vanessa Jones attempts to get through to student drug dealer Wex Presley, who is ruining her students.

    Meanwhile, Principal Lewis' daughter, Karen, is having trouble with her boyfriend, Tommy; outcast Dara McDermott craves drugs; a pregnant girl named Robin Walters argues with her boyfriend, Kevin Rhodes, about her future options; and bully Ricky Herman begins to recognize the consequences of his actions.

    Podcasts:

    • Heart of America Sports Attractions (Central States Wrestling) Championship History

      New updated video Heart of America Sports Attractions, also known as the Midwest Wrestling Association, Central States Wrestling and the World Wrestling Alliance, was an American professional wrestling promotion that ran shows mainly in Kansas, Missouri, Nebraska and Iowa. Its main office and base of operations being in Kansas City, Missouri. The promotion existed from July 1948 until it closed in 1988. The St. Louis Wrestling Club was it sister promotion until 1985 when Jim Crockett Promotions purchased. Ice Kenkey Beat by Nana Kwabena

      published: 12 Oct 2020
    • Event Center for Heart of America (Central States Wrestling), 12/6-12/12, 1971

      Join Al Getz as he looks at all the known house shows from Heart of American for a one-week period in 1971. He also uses this information to estimate the total number of house shows the promotion ran during the year. Harley Race, The (Mongolian) Stomper, Bob Orton (Senior), Rufus R. Jones, Bob Geigel, and more!

      published: 01 Jul 2023
    • KC On the Mat - Central States Wrestling Documentary

      Documentary about Heart of America Sports Attractions aka Central States Wrestling

      published: 01 Jul 2015
    • Tales From The Territories - NWA Central States Wrestling (Kansas) - Full Episode 28/30

      #WrestlingDocumentary #WWE #WWF #WCW #NWA New Videos EVERY Sunday! Check out my NEW movie! - https://www.facebook.com/Lords-Of-The-Real-Estate-Movie-111141777029887 Follow me for more cool shit!! Twitter - https://twitter.com/RatedR69 Facebook - https://www.facebook.com/RatedRWrestlingReport/ Instagram - https://www.instagram.com/ratedmuthafuckinr/ Spotify - https://open.spotify.com/artist/0x4UFqj0tCrQwtnjdpMvPM #TalesFromTheTerritories

      published: 02 May 2021
    • Dynamic Wrestling Federation: All Out War | Full Show | 09.25.2021 | Pro Wrestling | Kansas City

      The Dynamic Wrestling Federation presents our inaugural event, All Out War. Top wrestlers from around the country descended on Overland Park, Kansas ( just outside of Kansas City, Mo ) to take part in a one-night tournament with the winner being crowned the first-ever Dynamic Wrestling Federation Champion! WWE Hall Of Famer, "The Mouth Of The South" Jimmy Hart was in the house and we also had a fantastic women's match that saw Marti Belle battle "The Badstreet Beauty" Miranda Gordy! First Round Match-Ups "The Monarch" Jeremy Wyatt vs Redwing "The Wrestling Genius" Daniel Makabe vs "The Connisuer" Niles Plonk "The Infamous" Devin Thomas vs Moonshine Mantell "Dirty" Jake Dirden w/ Roscoe Leech vs Gil Rogers If you liked this video, give it a thumbs up and share it! If you are in the area,...

      published: 31 Dec 2021
    • Discover Kansas City: A Journey Through the Heart of America (4 Minutes)

      In this exciting video, we present "Discover Kansas City: A Journey Through the Heart of America," focusing on the vibrant culture, rich history, and delicious cuisine that make Kansas City a must-visit destination. Known for its jazz heritage, mouthwatering barbecue, and beautiful fountains, Kansas City offers a unique blend of experiences for every traveler. We will explore top attractions, including the Nelson-Atkins Museum of Art, the historic Country Club Plaza, and the lively Power and Light District, as well as provide essential tips for navigating the city and experiencing local favorites. Whether you're planning your first trip or returning for more adventures, this guide will equip you with valuable insights to make the most of your visit to Kansas City. Join us as we embark on a...

      published: 13 Oct 2024
    • WCW: Jim Crockett Promotions 1985-1988

      In March 1985, McMahon sold his TBS time slot and the "World Championship Wrestling" name to Jim Crockett Promotions (JCP), owned by Jim Crockett, Jr., under pressure from Ted Turner. The WWF and its major superstar, Hulk Hogan, however, were now the superior figures of wrestling after the success of the first WrestleMania, so the sale took place to successfully put the company in better shape. The new WCW, which was now a combination of JCP (Mid-Atlantic Wrestling) and Championship Wrestling from Georgia, was now the top show on TBS, and Jim Crockett, Jr. became NWA President for the second time. By 1986, Jim Crockett Promotions controlled key portions of the NWA, including the traditional NWA territories in North and South Carolina, Georgia, and St. Louis, thanks in no small part to the...

      published: 14 Oct 2021
    • 25 Best Places to Visit in the USA - Travel Video

      Check out all the places seen in this video: https://www.touropia.com/best-places-to-visit-in-usa/ Comprised of 50 states, the USA occupies an area that’s only just marginally smaller than Europe. It’s in this vast country that you will find an unbelievably diverse array of natural landscapes, cityscapes, people and cultures. From the tropical islands of Hawaii to the desert landscape of the Grand Canyon, as well as the multicultural cities such as Chicago and New York City, you’ll never be stuck for destinations to discover. Here’s a look at the best places to visit in the USA:

      published: 03 Jul 2019
    • Top 5 Iconic Cities in the USA | Explore the Richness of US Culture and History

      Welcome to our channel! In this exciting video, we take you on a journey to explore America's top five iconic cities, each offering a unique blend of culture, history, and attractions. Join us as we delve into the vibrant streets and iconic landmarks that make these cities truly special. Number 5: San Francisco, California. Discover the picturesque Golden Gate Bridge, Alcatraz Island, and charming cable cars in this tech-savvy and culturally diverse city. Number 4: Washington, D.C. Immerse yourself in the heart of American governance and explore the rich cultural landscape with numerous Smithsonian museums and iconic landmarks like the White House and Capitol Building. Number 3: Chicago, Illinois. Witness the impressive architecture and indulge in a thriving arts scene while experiencing t...

      published: 31 Jul 2023
    • "Discovering Indianapolis: Uncovering Hidden Gems in the Heart of America"

      In this video, join us on a captivating journey through the vibrant city of Indianapolis, where we unveil the best-kept secrets and hidden gems that make this Midwestern metropolis truly special. From charming neighborhoods to off-the-beaten-path attractions, we'll take you on a tour of the city's lesser-known treasures, showcasing its rich history, diverse culture, and unique character. Whether you're a local looking for new adventures or a visitor seeking the authentic Indianapolis experience, this video is your guide to discovering the hidden gems that make Indy shine. Get ready to explore Indianapolis like never before!

      published: 23 Aug 2023
    developed with YouTube
    Heart of America Sports Attractions (Central States Wrestling) Championship History
    3:28

    Heart of America Sports Attractions (Central States Wrestling) Championship History

    • Order:
    • Duration: 3:28
    • Uploaded Date: 12 Oct 2020
    • views: 285
    New updated video Heart of America Sports Attractions, also known as the Midwest Wrestling Association, Central States Wrestling and the World Wrestling Alliance, was an American professional wrestling promotion that ran shows mainly in Kansas, Missouri, Nebraska and Iowa. Its main office and base of operations being in Kansas City, Missouri. The promotion existed from July 1948 until it closed in 1988. The St. Louis Wrestling Club was it sister promotion until 1985 when Jim Crockett Promotions purchased. Ice Kenkey Beat by Nana Kwabena
    https://wn.com/Heart_Of_America_Sports_Attractions_(Central_States_Wrestling)_Championship_History
    Event Center for Heart of America (Central States Wrestling), 12/6-12/12, 1971
    18:33

    Event Center for Heart of America (Central States Wrestling), 12/6-12/12, 1971

    • Order:
    • Duration: 18:33
    • Uploaded Date: 01 Jul 2023
    • views: 156
    Join Al Getz as he looks at all the known house shows from Heart of American for a one-week period in 1971. He also uses this information to estimate the total number of house shows the promotion ran during the year. Harley Race, The (Mongolian) Stomper, Bob Orton (Senior), Rufus R. Jones, Bob Geigel, and more!
    https://wn.com/Event_Center_For_Heart_Of_America_(Central_States_Wrestling),_12_6_12_12,_1971
    KC On the Mat - Central States Wrestling Documentary
    1:29:57

    KC On the Mat - Central States Wrestling Documentary

    • Order:
    • Duration: 1:29:57
    • Uploaded Date: 01 Jul 2015
    • views: 107214
    Documentary about Heart of America Sports Attractions aka Central States Wrestling
    https://wn.com/Kc_On_The_Mat_Central_States_Wrestling_Documentary
    Tales From The Territories - NWA Central States Wrestling (Kansas) - Full Episode 28/30
    26:49

    Tales From The Territories - NWA Central States Wrestling (Kansas) - Full Episode 28/30

    • Order:
    • Duration: 26:49
    • Uploaded Date: 02 May 2021
    • views: 65904
    #WrestlingDocumentary #WWE #WWF #WCW #NWA New Videos EVERY Sunday! Check out my NEW movie! - https://www.facebook.com/Lords-Of-The-Real-Estate-Movie-111141777029887 Follow me for more cool shit!! Twitter - https://twitter.com/RatedR69 Facebook - https://www.facebook.com/RatedRWrestlingReport/ Instagram - https://www.instagram.com/ratedmuthafuckinr/ Spotify - https://open.spotify.com/artist/0x4UFqj0tCrQwtnjdpMvPM #TalesFromTheTerritories
    https://wn.com/Tales_From_The_Territories_Nwa_Central_States_Wrestling_(Kansas)_Full_Episode_28_30
    Dynamic Wrestling Federation: All Out War | Full Show | 09.25.2021 | Pro Wrestling | Kansas City
    2:06:25

    Dynamic Wrestling Federation: All Out War | Full Show | 09.25.2021 | Pro Wrestling | Kansas City

    • Order:
    • Duration: 2:06:25
    • Uploaded Date: 31 Dec 2021
    • views: 15810
    The Dynamic Wrestling Federation presents our inaugural event, All Out War. Top wrestlers from around the country descended on Overland Park, Kansas ( just outside of Kansas City, Mo ) to take part in a one-night tournament with the winner being crowned the first-ever Dynamic Wrestling Federation Champion! WWE Hall Of Famer, "The Mouth Of The South" Jimmy Hart was in the house and we also had a fantastic women's match that saw Marti Belle battle "The Badstreet Beauty" Miranda Gordy! First Round Match-Ups "The Monarch" Jeremy Wyatt vs Redwing "The Wrestling Genius" Daniel Makabe vs "The Connisuer" Niles Plonk "The Infamous" Devin Thomas vs Moonshine Mantell "Dirty" Jake Dirden w/ Roscoe Leech vs Gil Rogers If you liked this video, give it a thumbs up and share it! If you are in the area, come out and support us! Also, be sure to subscribe to our YouTube channel to be notified as soon as we post all of our future shows. Remember to support local professional wrestling! https://www.dwfwrestling.com https://twitter.com/dwfwrestlingkc https://facebook.com/dwfwrestlingkc Video Owned By and © 2021 Heart Of America Sports Attractions, LLC
    https://wn.com/Dynamic_Wrestling_Federation_All_Out_War_|_Full_Show_|_09.25.2021_|_Pro_Wrestling_|_Kansas_City
    Discover Kansas City: A Journey Through the Heart of America (4 Minutes)
    4:13

    Discover Kansas City: A Journey Through the Heart of America (4 Minutes)

    • Order:
    • Duration: 4:13
    • Uploaded Date: 13 Oct 2024
    • views: 10
    In this exciting video, we present "Discover Kansas City: A Journey Through the Heart of America," focusing on the vibrant culture, rich history, and delicious cuisine that make Kansas City a must-visit destination. Known for its jazz heritage, mouthwatering barbecue, and beautiful fountains, Kansas City offers a unique blend of experiences for every traveler. We will explore top attractions, including the Nelson-Atkins Museum of Art, the historic Country Club Plaza, and the lively Power and Light District, as well as provide essential tips for navigating the city and experiencing local favorites. Whether you're planning your first trip or returning for more adventures, this guide will equip you with valuable insights to make the most of your visit to Kansas City. Join us as we embark on a journey through this dynamic city! Hashtags: #KansasCity #VisitKansasCity #TravelGuide #ExploreKansasCity #KansasCityCulture #KansasCityCuisine #MidwestTravel #KansasCityAttractions #KansasCityHistory #KansasCityAdventure SEO Tags: Kansas City, Discover Kansas City, Kansas City Travel Guide, Exploring Kansas City, Top Attractions in Kansas City, Kansas City Hidden Gems, Kansas City Culture and Traditions, Kansas City Food and Cuisine, Kansas City Nightlife, Kansas City History, Traveling in Kansas City, Kansas City Travel Tips, Kansas City Itinerary, Kansas City Festivals and Events, Kansas City Arts and Entertainment, Kansas City Parks and Recreation, Kansas City Sports, Kansas City Music Scene, Kansas City Shopping, Kansas City Architecture, Kansas City Community and People, Kansas City and Local Markets, Kansas City and Family Activities, Kansas City and Outdoor Adventures, Kansas City and Historical Sites, Kansas City and Culinary Experiences, Kansas City and Eco-Tourism, Kansas City and Cultural Experiences, Kansas City and Local Breweries, Kansas City and Art Galleries, Kansas City and Historic Districts, Kansas City and Scenic Views
    https://wn.com/Discover_Kansas_City_A_Journey_Through_The_Heart_Of_America_(4_Minutes)
    WCW: Jim Crockett Promotions 1985-1988
    2:12

    WCW: Jim Crockett Promotions 1985-1988

    • Order:
    • Duration: 2:12
    • Uploaded Date: 14 Oct 2021
    • views: 174
    In March 1985, McMahon sold his TBS time slot and the "World Championship Wrestling" name to Jim Crockett Promotions (JCP), owned by Jim Crockett, Jr., under pressure from Ted Turner. The WWF and its major superstar, Hulk Hogan, however, were now the superior figures of wrestling after the success of the first WrestleMania, so the sale took place to successfully put the company in better shape. The new WCW, which was now a combination of JCP (Mid-Atlantic Wrestling) and Championship Wrestling from Georgia, was now the top show on TBS, and Jim Crockett, Jr. became NWA President for the second time. By 1986, Jim Crockett Promotions controlled key portions of the NWA, including the traditional NWA territories in North and South Carolina, Georgia, and St. Louis, thanks in no small part to the success of the Jim Crockett Sr. Memorial Cup (which showcased talent from various NWA territories), as well as a working cross-promotional relationship with Verne Gagne's American Wrestling Association. JCP merged its NWA territories into one group, promoting under the banner "NWA World Championship Wrestling". This sparked a feud between Crockett and Vince McMahon's WWF, and the companies attempted to outmaneuver each other to acquire key television slots. It was the WWF, however, who was able to become a hit in St. Louis (and the rest of Missouri as well), which brought trouble to the NWA Central States. The WWF was able to become a hit across the country as well, as the feud between Hulk Hogan and Paul Orndorff appealed to a large audience. Following this, Bob Geigel became the NWA President once again. In the same year, JCP also purchased Geigel's Heart of America Sports Attractions, promoters of the Central States territory, which owned the rights to promote wrestling shows through the states of Kansas, Missouri, and Iowa. #WCW
    https://wn.com/Wcw_Jim_Crockett_Promotions_1985_1988
    25 Best Places to Visit in the USA - Travel Video
    28:39

    25 Best Places to Visit in the USA - Travel Video

    • Order:
    • Duration: 28:39
    • Uploaded Date: 03 Jul 2019
    • views: 9022609
    Check out all the places seen in this video: https://www.touropia.com/best-places-to-visit-in-usa/ Comprised of 50 states, the USA occupies an area that’s only just marginally smaller than Europe. It’s in this vast country that you will find an unbelievably diverse array of natural landscapes, cityscapes, people and cultures. From the tropical islands of Hawaii to the desert landscape of the Grand Canyon, as well as the multicultural cities such as Chicago and New York City, you’ll never be stuck for destinations to discover. Here’s a look at the best places to visit in the USA:
    https://wn.com/25_Best_Places_To_Visit_In_The_USA_Travel_Video
    Top 5 Iconic Cities in the USA | Explore the Richness of US Culture and History
    5:42

    Top 5 Iconic Cities in the USA | Explore the Richness of US Culture and History

    • Order:
    • Duration: 5:42
    • Uploaded Date: 31 Jul 2023
    • views: 44
    Welcome to our channel! In this exciting video, we take you on a journey to explore America's top five iconic cities, each offering a unique blend of culture, history, and attractions. Join us as we delve into the vibrant streets and iconic landmarks that make these cities truly special. Number 5: San Francisco, California. Discover the picturesque Golden Gate Bridge, Alcatraz Island, and charming cable cars in this tech-savvy and culturally diverse city. Number 4: Washington, D.C. Immerse yourself in the heart of American governance and explore the rich cultural landscape with numerous Smithsonian museums and iconic landmarks like the White House and Capitol Building. Number 3: Chicago, Illinois. Witness the impressive architecture and indulge in a thriving arts scene while experiencing the city's deep-rooted sports culture. Number 2: Los Angeles, California. Explore the glamorous world of Hollywood and soak up the sun on beautiful beaches while embracing the city's creativity and artistic essence. Number 1: New York City, New York. The Big Apple awaits you with its awe-inspiring skyline, diverse neighborhoods, and an abundance of world-class arts, theaters, and culinary delights. Join us on this virtual adventure through America's top five iconic cities and let us know your thoughts in the comment section below. Don't forget to like and subscribe to our channel for more fascinating updates. Tags: #ExploringAmerica #IconicCities #TravelUSA #SanFrancisco #WashingtonDC #Chicago #LosAngeles #NewYorkCity #GoldenGateBridge #AlcatrazIsland #Hollywood #EmpireStateBuilding #TravelVlog #CityTour #CulturalHeritage #AmericanAttractions #USATravel #AdventureAwaits #Subscribe #Like #TravelEnthusiast #Wanderlust #ExploreAmerica
    https://wn.com/Top_5_Iconic_Cities_In_The_USA_|_Explore_The_Richness_Of_US_Culture_And_History
    "Discovering Indianapolis: Uncovering Hidden Gems in the Heart of America"
    8:23

    "Discovering Indianapolis: Uncovering Hidden Gems in the Heart of America"

    • Order:
    • Duration: 8:23
    • Uploaded Date: 23 Aug 2023
    • views: 82
    In this video, join us on a captivating journey through the vibrant city of Indianapolis, where we unveil the best-kept secrets and hidden gems that make this Midwestern metropolis truly special. From charming neighborhoods to off-the-beaten-path attractions, we'll take you on a tour of the city's lesser-known treasures, showcasing its rich history, diverse culture, and unique character. Whether you're a local looking for new adventures or a visitor seeking the authentic Indianapolis experience, this video is your guide to discovering the hidden gems that make Indy shine. Get ready to explore Indianapolis like never before!
    https://wn.com/Discovering_Indianapolis_Uncovering_Hidden_Gems_In_The_Heart_Of_America
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Heart of America Sports Attractions (Central States Wrestling) Championship History
      3:28
      Heart of America Sports Attractions (Central States Wrestling) Championship Historyremove from playlist
    • Event Center for Heart of America (Central States Wrestling), 12/6-12/12, 1971
      18:33
      Event Center for Heart of America (Central States Wrestling), 12/6-12/12, 1971remove from playlist
    • Tales From The Territories - NWA Central States Wrestling (Kansas) - Full Episode 28/30
      26:49
      Tales From The Territories - NWA Central States Wrestling (Kansas) - Full Episode 28/30remove from playlist
    • Dynamic Wrestling Federation: All Out War | Full Show | 09.25.2021 | Pro Wrestling | Kansas City
      2:06:25
      Dynamic Wrestling Federation: All Out War | Full Show | 09.25.2021 | Pro Wrestling | Kansas Cityremove from playlist
    • Discover Kansas City: A Journey Through the Heart of America (4 Minutes)
      4:13
      Discover Kansas City: A Journey Through the Heart of America (4 Minutes)remove from playlist
    • WCW: Jim Crockett Promotions 1985-1988
      2:12
      WCW: Jim Crockett Promotions 1985-1988remove from playlist
    • 25 Best Places to Visit in the USA - Travel Video
      28:39
      25 Best Places to Visit in the USA - Travel Videoremove from playlist
    • Top 5 Iconic Cities in the USA | Explore the Richness of US Culture and History
      5:42
      Top 5 Iconic Cities in the USA | Explore the Richness of US Culture and Historyremove from playlist
    • 8:23
      "Discovering Indianapolis: Uncovering Hidden Gems in the Heart of America"remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Heart of America Sports Attractions (Central States Wrestling) Championship History

    New updated video Heart of America Sports Attractions, also known as the Midwest Wrestling Association, Central States Wrestling and the World Wrestling Alliance, was an American professional wrestling promotion that ran shows mainly in Kansas, Missouri, Nebraska and Iowa. Its main office and base of operations being in Kansas City, Missouri. The promotion existed from July 1948 until it closed in 1988. The St. Louis Wrestling Club was it sister promotion until 1985 when Jim Crockett Promotions purchased. Ice Kenkey Beat by Nana Kwabena
    3:28
    Heart of America Sports Attractions (Central States Wrestling) Championship History
    New updated video Heart of America Sports Attractions, also known as the Midwest Wrestli...
    published: 12 Oct 2020
    Play in Full Screen
    18:33
    Event Center for Heart of America (Central States Wrestling), 12/6-12/12, 1971
    Join Al Getz as he looks at all the known house shows from Heart of American for a one-wee...
    published: 01 Jul 2023
    Play in Full Screen
    1:29:57
    KC On the Mat - Central States Wrestling Documentary
    Documentary about Heart of America Sports Attractions aka Central States Wrestling
    published: 01 Jul 2015
    Play in Full Screen
    26:49
    Tales From The Territories - NWA Central States Wrestling (Kansas) - Full Episode 28/30
    #WrestlingDocumentary #WWE #WWF #WCW #NWA New Videos EVERY Sunday! Check out my NEW movie...
    published: 02 May 2021
    Play in Full Screen
    2:06:25
    Dynamic Wrestling Federation: All Out War | Full Show | 09.25.2021 | Pro Wrestling | Kansas City
    The Dynamic Wrestling Federation presents our inaugural event, All Out War. Top wrestlers ...
    published: 31 Dec 2021
    Play in Full Screen
    4:13
    Discover Kansas City: A Journey Through the Heart of America (4 Minutes)
    In this exciting video, we present "Discover Kansas City: A Journey Through the Heart of A...
    published: 13 Oct 2024
    Play in Full Screen
    2:12
    WCW: Jim Crockett Promotions 1985-1988
    In March 1985, McMahon sold his TBS time slot and the "World Championship Wrestling" name ...
    published: 14 Oct 2021
    Play in Full Screen
    28:39
    25 Best Places to Visit in the USA - Travel Video
    Check out all the places seen in this video: https://www.touropia.com/best-places-to-visit...
    published: 03 Jul 2019
    Play in Full Screen
    5:42
    Top 5 Iconic Cities in the USA | Explore the Richness of US Culture and History
    Welcome to our channel! In this exciting video, we take you on a journey to explore Americ...
    published: 31 Jul 2023
    Play in Full Screen
    8:23
    "Discovering Indianapolis: Uncovering Hidden Gems in the Heart of America"
    In this video, join us on a captivating journey through the vibrant city of Indianapolis, ...
    published: 23 Aug 2023
    Play in Full Screen

    Heart of America Sports Attractions

    Heart of America Sports Attractions, also known as the Midwest Wrestling Association, Central States Wrestling and the World Wrestling Alliance, was an American professional wrestling promotion that ran shows mainly in Kansas, Missouri, Nebraska and Iowa. Due to the promotion’s main office and base of operations being in Kansas City, Missouri the territory was often referred to simply as “Kansas City”. The promotion existed from July 1948 until it closed in 1988. The territory was one of the original territories of the National Wrestling Alliance with two of the 6 “founding fathers” of the NWA (Paul "Pinkie" George and Orville Brown) promoting in it.

    History

    Midwest Wrestling Association

    Originally known as the Midwest Wrestling Association before the formation of the National Wrestling Alliance it controlled and booked shows territories in Kansas, Missouri, Nebraska and Iowa and was seen as a cornerstone of the NWA. It joined the NWA in October 1948. The territory was promoted by Pinky George and the first official NWA World Heavyweight Champion Orville Brown (Sonny Myers being the preceding unofficial one) from the creation of the NWA until 1958.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×