K-1 World Grand Prix 2000 Final

K-1 World Grand Prix 2000 Final was a kickboxing event promoted by the K-1 organization. It was the eighth K-1 Grand Prix final, involving eight of the world's top fighters, with all bouts fought under K-1 Rules (100 kg/156-220 lbs). The eight finalists were a mixture of invitees, some of whom had been at the previous year's final, or had qualified via preliminary tournaments (for more detail on this see bulleted list below).

K-1 World Grand Prix 2000 Final
Information
PromotionK-1
DateDecember 10, 2000
VenueTokyo Dome
City Tokyo, Japan
Attendance70,200
Event chronology
K-1 UK Global Heat 2000 K-1 World Grand Prix 2000 Final K-1 Czech 2000

As well as tournament bouts there were also two 'Super Fights', one involving Japanese middleweight star Takayuki Kohiruimaki against Wilreid Montargne, fought under K-1 MAX Rules (70 kg/152 lbs), the other involving UFC legend Frank Shamrock against Elvis Sinosic in a kickboxing match fought under K-1 Rules. In addition, there were also two 'freshman fights' involving local fighters. In total there were sixteen fighters at the event, representing nine countries.

The tournament champion was Ernesto Hoost who defeated Ray Sefo in the final by third round unanimous decision. This would be Ernesto Hoost's third K-1 World Grand Prix victory, adding to the one he had won the previous year and another in '97. Ray Sefo would be making his first K-1 World Grand Prix final appearance. The event was held at the Tokyo Dome in Tokyo, Japan on Sunday December 10, 2000, in front of 65,000 spectators.

Tournament Qualifiers

Jérôme Le Banner and Mike Bernardo both won the K-1 World Grand Prix 2000 in Nagoya and K-1 World Grand Prix 2000 in Fukuoka respectively but were unable to participate in the tournament due to injury.

K-1 World Grand Prix 2000 Final Tournament

Quarter Finals Semi Finals Final
Mirko Cro Cop    
Ernesto Hoost DEC     Ernesto Hoost DEC  
Francisco Filho DEC     Francisco Filho    
Stefan Leko         Ernesto Hoost DEC
Cyril Abidi         Ray Sefo  
Peter Aerts DEC     Cyril Abidi *  
Musashi       Ray Sefo TKO    
Ray Sefo TKO  

* Peter Aerts was injured so Cyril Abidi replaced him in the Semi Finals

Results

gollark: Your config can be a programming language too, since it's useful for specifying some things without having to repeat yourself, but it should be separate from the code.
gollark: Application code is stuff which should be the same across deployments. Config is stuff which shouldn't.
gollark: Then your application is wrong.
gollark: * specify, not design
gollark: ```rust let with_db = warp::any().map(move || pool.clone()); let static_files = warp::path("assets").and(warp::fs::dir("assets")); let view_page = warp::path!(String).and(warp::get()).and(with_db.clone()) // repeating the next bit for every route is kind of bad, see if it can be changed somehow .and_then(|title, db| async { error_to_http_response(view_page(db, title).await) }); let editor_page = warp::path!(String / "edit").and(warp::get()).and(with_db.clone()) .and_then(|title, db| async { error_to_http_response(editor_page(db, title).await) }); let save_edit = warp::path!(String / "edit").and(warp::post()).and(warp::body::form()).and(with_db) .and_then(|title, form, db| async { error_to_http_response(save_edit(db, title, form).await) }); let not_found = warp::any().map(|| warp::reply::with_status("404 Not Found", http::StatusCode::NOT_FOUND)); let main = editor_page.or(save_edit).or(view_page); let app = static_files.or(main).or(not_found);```See, this is how you SHOULD design routes: incomprehensibly.

See also

References

  1. "K-1 World Grand Prix 2000 Final Results". K-1 Official Website. Archived from the original on 2010-05-07.
  2. "Results: K-1 WORLD GRAND PRIX 2000 FINAL". K-1sport.de - Your Source for Everything K-1.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.