diff --git a/.gitignore b/.gitignore index 255751113..b2334f711 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ fix.sh defaults.sh +logs/ diff --git a/alienx/ndComms.php b/alienx/ndComms.php index bd846ead9..6c868d412 100644 --- a/alienx/ndComms.php +++ b/alienx/ndComms.php @@ -1,10 +1,10 @@ URL = $array['NEWZDASH_URL']; $this->SHARED_SECRET = $array['NEWZDASH_SHARED_SECRET']; - + if ( $this->URL == "" ) { return false; @@ -36,17 +36,17 @@ return true; } } - + public function broadcast ( $arguments ) { if ( count($arguments) < 2 ) die ( "Invalid arguments count given in newzdash comms class\n" ); - + $pane = $arguments[1]; $state = $arguments[2]; - + //pname, pstate, ndsharedsecret - + $URL = $this->URL . "/tmuxapi.php?pname=" . urlencode($pane) . "&pstate=" . urlencode($state) . "&ndsharedsecret=" . urlencode($this->SHARED_SECRET); $handle=fopen($URL, "r"); $ret = fread($handle, 8192); @@ -64,6 +64,6 @@ default: printf("NewzDash could not accept our communication:\nSomething went wrong!\n"); } - } + } } -?> \ No newline at end of file +?> diff --git a/alienx/tmux_to_newzdash.php b/alienx/tmux_to_newzdash.php index 407b48359..ff907c148 100644 --- a/alienx/tmux_to_newzdash.php +++ b/alienx/tmux_to_newzdash.php @@ -22,7 +22,7 @@ echo "[" . $argv[2] . "] " . date("D jS M Y - H:i:s") . "\n"; if ( !$ndComms->init() ) die(); - + $ndComms->broadcast($argv); ?> diff --git a/bin/monitor.php b/bin/monitor.php index 007dccbe7..733956009 100644 --- a/bin/monitor.php +++ b/bin/monitor.php @@ -2,6 +2,7 @@ require(dirname(__FILE__)."/config.php"); require(WWW_DIR.'/lib/postprocess.php'); +$version="0.1r688"; $db = new DB(); @@ -43,6 +44,7 @@ $_conf = dirname(__FILE__)."/../conf"; $_cj = dirname(__FILE__)."/../nnscripts"; $NNPATH="{$array['NEWZPATH']}{$array['NEWZNAB_PATH']}"; $TESTING="{$array['NEWZPATH']}{$array['TESTING_PATH']}"; +$killed="false"; //build queries for shell $_backfill_increment = "UPDATE groups set backfill_target=backfill_target+1 where active=1 and backfill_target<{$array['MAXDAYS']};"; @@ -230,7 +232,7 @@ $misc_releases_now_formatted = number_format( $misc_releases_now ); passthru('clear'); //printf("\033[1;31m First insert:\033[0m ".relativeTime("$firstdate")."\n"); $mask1 = "\033[1;33m%-16s \033[38;5;214m%-44.44s \n"; -printf($mask1, "Monitor Running:", relativeTime("$time")); +printf($mask1, "Monitor Running v$version: ", relativeTime("$time")); printf($mask1, "Newest Release:", "$newestname"); printf($mask1, "Release Added:", relativeTime("$newestdate")."ago"); @@ -274,6 +276,8 @@ while( $i > 0 ) //get microtime at start of loop $time_loop_start = microtime_float(); + $getdate = gmDate("Ymd"); + //commands for start/stop newzdash tracking $ds1 = "cd $_alienx && $_php tmux_to_newzdash.php"; $ds2 = "started"; @@ -282,8 +286,8 @@ while( $i > 0 ) //kill panes if user changed to/from nzb import threaded if ( $_imports != $array['NZB_THREADS'] ) { - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'sleep 5' && $ds1 import $ds4"); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.1 'sleep 5' && $ds1 nzbcount $ds4"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'sleep 5' && $ds1 $panes0[4] $ds4"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.1 'sleep 5' && $ds1 $panes0[1] $ds4"); $_imports = $array['NZB_THREADS']; } @@ -399,6 +403,17 @@ while( $i > 0 ) $work_since_start = ( $total_work_now - $total_work_start ); $work_diff = number_format($work_since_start); + //get microtime at end of queries + $query_timer = microtime_float()-$query_timer_start; + + //add sleep to new installs, so everything spins up properly + if (( $query_timer < 10 ) && ( $i == 1 )) { sleep(10); } + + if ( $array['RAMDISK_PATH'] != "" ) { + $disk_use = decodeSize( disk_total_space("${array['RAMDISK_PATH']}") - disk_free_space("${array['RAMDISK_PATH']}") ); + $disk_free = decodeSize( disk_free_space("${array['RAMDISK_PATH']}") ); + } + if ( $releases_now != 0 ) { $nfo_percent = sprintf( "%02s", floor(( $nfo_now / $releases_now) * 100 )); $console_percent = sprintf( "%02s", floor(( $console_releases_now / $releases_now) * 100 )); @@ -425,6 +440,32 @@ while( $i > 0 ) $total_work_used = $total_work_now; } + $panes_win_1 = shell_exec("echo `tmux list-panes -t {$array['TMUX_SESSION']}:0 -F '#{pane_title}'`"); + $panes_win_2 = shell_exec("echo `tmux list-panes -t {$array['TMUX_SESSION']}:1 -F '#{pane_title}'`"); + $panes_win_3 = shell_exec("echo `tmux list-panes -t {$array['TMUX_SESSION']}:2 -F '#{pane_title}'`"); + $panes_win_4 = shell_exec("echo `tmux list-panes -t {$array['TMUX_SESSION']}:3 -F '#{pane_title}'`"); + + $panes0 = str_replace("\n", '', explode(" ", $panes_win_1)); + $panes1 = str_replace("\n", '', explode(" ", $panes_win_2)); + $panes2 = str_replace("\n", '', explode(" ", $panes_win_3)); + $panes3 = str_replace("\n", '', explode(" ", $panes_win_4)); + + $killit=explode(" ", relativeTime("$newestdate")); + $killed="false"; + if ( $array['KILL_UPDATES'] != "0" ) { + if ((( $killit[1] != "secs" ) && ( $killit[1] != "sec" )) && (( $killit[1] == "hrs" ) || ( $killit[1] == "hr" ) || ( $killit[0] >= $array['KILL_UPDATES'] )) && ( $i % 5 == 0 )) { + $color = get_color(); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\n$panes0[2] Killed by KILL_UPDATES\"' 2>&1 1> /dev/null"); + $color = get_color(); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\n$panes0[3] Killed by KILL_UPDATES\"' 2>&1 1> /dev/null"); + $color = get_color(); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.4 'echo \"\033[38;5;\"$color\"m\n$panes0[4] Killed by KILL_UPDATES\"' 2>&1 1> /dev/null"); + if ( $array['KEEP_KILLED'] == "true" ) { + $killed="true"; + } + } + } + //get state for binaries if ( $array['BINARIES'] != "true" ) { $binaries_state="disabled"; @@ -435,6 +476,9 @@ while( $i > 0 ) } elseif (( $parts_rows_unformated > $array['BINARIES_MAX_ROWS'] ) && ( $array['BINARIES_MAX_ROWS'] != 0 )) { $binaries_state="rows-exceeded"; $binaries_reason=number_format("${array['BINARIES_MAX_ROWS']}"); + } elseif ( $killed == "true" ) { + $binaries_state="time-exceeded"; + $binaries_reason=$array['KILL_UPDATES']." mins"; } else { $binaries_state="enabled"; $binaries_reason="enabled"; @@ -450,6 +494,9 @@ while( $i > 0 ) } elseif (( $parts_rows_unformated > $array['BACKFILL_MAX_ROWS'] ) && ( $array['BACKFILL_MAX_ROWS'] != 0 )) { $backfill_state="rows-exceeded"; $backfill_reason=number_format("${array['BACKFILL_MAX_ROWS']}"); + } elseif ( $killed == "true" ) { + $backfill_state="time-exceeded"; + $backfill_reason=$array['KILL_UPDATES']." mins"; } else { $backfill_state="enabled"; $backfill_reason="enabled"; @@ -465,26 +512,18 @@ while( $i > 0 ) } elseif (( $parts_rows_unformated > $array['IMPORT_MAX_ROWS'] ) && ( $array['IMPORT_MAX_ROWS'] != 0 )) { $import_state="rows-exceeded"; $import_reason=number_format("${array['IMPORT_MAX_ROWS']}"); + } elseif ( $killed == "true" ) { + $import_state="time-exceeded"; + $import_reason=$array['KILL_UPDATES']." mins"; } else { $import_state="enabled"; $import_reason="enabled"; } - //get microtime at end of queries - $query_timer = microtime_float()-$query_timer_start; - - //add sleep to new installs, so everything spins up properly - if (( $query_timer < 10 ) && ( $i == 1 )) { sleep(10); } - - if ( $array['RAMDISK_PATH'] != "" ) { - $disk_use = decodeSize( disk_total_space("${array['RAMDISK_PATH']}") - disk_free_space("${array['RAMDISK_PATH']}") ); - $disk_free = decodeSize( disk_free_space("${array['RAMDISK_PATH']}") ); - } - //update display passthru('clear'); //printf("\033[1;31m First insert:\033[0m ".relativeTime("$firstdate")."\n"); - printf($mask1, "Monitor Running:", relativeTime("$time")); + printf($mask1, "Monitor Running v$version:", relativeTime("$time")); printf($mask1, "Newest Release:", "$newestname"); printf($mask1, "Release Added:", relativeTime("$newestdate")."ago"); @@ -533,21 +572,21 @@ while( $i > 0 ) //check what is disabled and update panes window 3 if ( $array['POST_TO_RUN'] == 0 ) { $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.0 'echo \"\033[38;5;\"$color\"m\nprocess_nfos Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.0 'echo \"\033[38;5;\"$color\"m\n$panes3[0] Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.1 'echo \"\033[38;5;\"$color\"m\nprocess_Games Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.1 'echo \"\033[38;5;\"$color\"m\n$panes3[1] Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.2 'echo \"\033[38;5;\"$color\"m\nprocess_Movies Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.2 'echo \"\033[38;5;\"$color\"m\n$panes3[2] Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.3 'echo \"\033[38;5;\"$color\"m\nprocess_Audio Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.3 'echo \"\033[38;5;\"$color\"m\n$panes3[3] Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.4 'echo \"\033[38;5;\"$color\"m\nprocess_Tv Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.4 'echo \"\033[38;5;\"$color\"m\n$panes3[4] Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.5 'echo \"\033[38;5;\"$color\"m\nprocess_Books Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.5 'echo \"\033[38;5;\"$color\"m\n$panes3[5] Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.6 'echo \"\033[38;5;\"$color\"m\nprocess_Others Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.6 'echo \"\033[38;5;\"$color\"m\n$panes3[6] Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.7 'echo \"\033[38;5;\"$color\"m\nprocess_Unwanted Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:3.7 'echo \"\033[38;5;\"$color\"m\n$panes3[7] Disabled by POST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); } //kills postprocessing in window 2 @@ -556,75 +595,75 @@ while( $i > 0 ) { $h=$g+1; $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:2.$g 'echo \"\033[38;5;\"$color\"m\npost_process #$h \nDisabled by \nPOST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:2.$g 'echo \"\033[38;5;\"$color\"m\n$panes2[$g]\nDisabled by \nPOST_TO_RUN\nThis is color #$color\"' 2>&1 1> /dev/null"); } //run update_predb.php in 1.0 ever 15 minutes if (( TIME() - $time2 ) >= $array['PREDB_TIMER'] ) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.0 'echo \"\033[38;5;\"$color\"m\" && $ds1 update_predb $ds2 && cd $NNPATH && $_php update_predb.php true && echo \" \033[1;0;33m\" && $ds1 update_predb $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.0 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes1[0] $ds2 && cd $NNPATH && $_php update_predb.php true |& tee -a $path/../logs/$panes1[0]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 $panes1[0] $ds3' 2>&1 1> /dev/null"); $time2 = TIME(); } else { $color = get_color(); $run_time = relativeTime( $array['PREDB_TIMER'] + $time2 ); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.0 'echo \"\033[38;5;\"$color\"m\nupdate_predb will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.0 'echo \"\033[38;5;\"$color\"m\n$panes1[0] will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); } //run $_php update_parsing.php in 1.1 every 1 hour if (((( TIME() - $time3 ) >= $array['PARSING_TIMER'] ) || ( $i == 1 )) && ($array['PARSING'] == "true" )) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.1 'echo \"\033[38;5;\"$color\"m\" && $ds1 update_parsing $ds2 && cd $TESTING && $_php update_parsing.php && echo \" \033[1;0;33m\" && $ds1 update_parsing $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.1 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes1[1] $ds2 && cd $TESTING && $_php update_parsing.php |& tee -a $path/../logs/$panes1[1]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 $panes1[1] $ds3' 2>&1 1> /dev/null"); $time3 = TIME(); } elseif ( $array['PARSING'] != "true" ) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.1 'echo \"\033[38;5;\"$color\"m\nupdate_parsing Disabled by PARSING\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.1 'echo \"\033[38;5;\"$color\"m\n$panes1[1] Disabled by PARSING\nThis is color #$color\"' 2>&1 1> /dev/null"); } else { $color = get_color(); $run_time = relativeTime( $array['PARSING_TIMER'] + $time3 ); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.1 'echo \"\033[38;5;\"$color\"m\nupdate_parsing will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.1 'echo \"\033[38;5;\"$color\"m\n$panes1[1] will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); } //run $_php removespecial.php and $_php update_cleanup.php in 1.2 ever 1 hour if ((( TIME() - $time7 ) >= $array['CLEANUP_TIMER'] ) && ($array['CLEANUP'] == "true" )) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.2 'echo \"\033[38;5;\"$color\"m\" && $ds1 update_cleanup $ds2 && cd $TESTING && $_php removespecial.php && $_php update_cleanup.php && echo \" \033[1;0;33m\" && $ds1 update_cleanup $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.2 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes1[2] $ds2 && cd $TESTING && $_php removespecial.php |& tee -a $path/../logs/$panes1[2]-$getdate.log && $_php update_cleanup.php |& tee -a $path/../logs/$panes1[2]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 $panes1[2] $ds3' 2>&1 1> /dev/null"); $time7 = TIME(); } elseif ( $array['CLEANUP'] != "true" ) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.2 'echo \"\033[38;5;\"$color\"m\nupdate_cleanup Disabled by CLEANUP\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.2 'echo \"\033[38;5;\"$color\"m\n$panes1[2] Disabled by CLEANUP\nThis is color #$color\"' 2>&1 1> /dev/null"); } else { $color = get_color(); $run_time = relativeTime( $array['CLEANUP_TIMER'] + $time7 ); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.2 'echo \"\033[38;5;\"$color\"m\nupdate_cleanup will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.2 'echo \"\033[38;5;\"$color\"m\n$panes1[2] will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); } //run update_tvschedule.php and $_php update_theaters.php in 1.3 every 12 hours and first loop if ((( TIME() - $time4 ) >= $array['TVRAGE_TIMER']) || ( $i == 1 )) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.3 'echo \"\033[38;5;\"$color\"m\" && $ds1 update_tvschedule $ds2 && cd $NNPATH && $_php update_tvschedule.php && $_php update_theaters.php && echo \" \033[1;0;33m\" && $ds1 update_tvschedule $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.3 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes1[3] $ds2 && cd $NNPATH && $_php update_tvschedule.php |& tee -a $path/../logs/$panes1[3]-$getdate.log && $_php update_theaters.php |& tee -a $path/../logs/$panes1[3]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 $panes1[3] $ds3' 2>&1 1> /dev/null"); $time4 = TIME(); } else { $color = get_color(); $run_time = relativeTime( $array['TVRAGE_TIMER'] + $time4 ); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.3 'echo \"\033[38;5;\"$color\"m\nupdate_tvschedule and update_theaters will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.3 'echo \"\033[38;5;\"$color\"m\n$panes1[3] and update_theaters will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); } //run optimize in pane 1.4 if (( TIME() - $time6 >= $array['MYISAM_LARGE'] ) && ( $array['OPTIMIZE'] == "true" )) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.4 'echo \"\033[38;5;\"$color\"m\" && $ds1 MYISAM_LARGE $ds2 && cd $_bin && $_php optimize_myisam.php true && echo \" \033[1;0;33m\" && $ds1 MYISAM_LARGE $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.4 'echo \"\033[38;5;\"$color\"m\" && $ds1 MYISAM_LARGE $ds2 && cd $_bin && $_php optimize_myisam.php true |& tee -a $path/../logs/$panes1[4]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 MYISAM_LARGE $ds3' 2>&1 1> /dev/null"); $time6 = TIME(); } elseif (( TIME() - $time8 >= $array['INNODB_LARGE'] ) && ($array['INNODB'] == "true") && ( $array['OPTIMIZE'] == "true" )) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.4 'echo \"\033[38;5;\"$color\"m\" && $ds1 INNODB_LARGE $ds2 && cd $_bin && $_php optimize_myisam.php true && $_php optimize_innodb.php true && echo \" \033[1;0;33m\" && $ds1 INNODB_LARGE $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.4 'echo \"\033[38;5;\"$color\"m\" && $ds1 INNODB_LARGE $ds2 && cd $_bin && $_php optimize_myisam.php true |& tee -a $path/../logs/$panes1[4]-$getdate.log && $_php optimize_innodb.php true |& tee -a $path/../logs/$panes1[4]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 INNODB_LARGE $ds3' 2>&1 1> /dev/null"); $time8 = TIME(); } elseif (( TIME() - $time5 >= $array['INNODB_SMALL'] ) && ( $array['INNODB']== "true" ) && ( $array['OPTIMIZE'] == "true" )) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.4 'echo \"\033[38;5;\"$color\"m\" && $ds1 INNODB_SMALL $ds2 && cd $_bin && $_php optimize_innodb.php && echo \" \033[1;0;33m\" && $ds1 INNODB_SMALL $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.4 'echo \"\033[38;5;\"$color\"m\" && $ds1 INNODB_SMALL $ds2 && cd $_bin && $_php optimize_innodb.php |& tee -a $path/../logs/$panes1[4]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 INNODB_SMALL $ds3' 2>&1 1> /dev/null"); $time5 = TIME(); } elseif (( TIME() - $time11 >= $array['MYISAM_SMALL'] ) && ( $array['OPTIMIZE'] == "true" )) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.4 'echo \"\033[38;5;\"$color\"m\" && $ds1 MYISAM_SMALL $ds2 && cd $_bin && $_php optimize_myisam.php && echo \" \033[1;0;33m\" && $ds1 MYISAM_SMALL $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.4 'echo \"\033[38;5;\"$color\"m\" && $ds1 MYISAM_SMALL $ds2 && cd $_bin && $_php optimize_myisam.php |& tee -a $path/../logs/$panes1[4]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 MYISAM_SMALL $ds3' 2>&1 1> /dev/null"); $time11 = TIME(); } elseif ( $array['OPTIMIZE'] != "true" ) { $color = get_color(); @@ -641,129 +680,129 @@ while( $i > 0 ) //run sphinx in pane 1.5 if (( TIME() - $time9 >= $array['SPHINX_TIMER'] ) && ( $array['SPHINX'] == "true")) { $color=get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.5 'echo \"\033[38;5;\"$color\"m\" && $ds1 sphinx $ds2 && cd $_bin && $_php sphinx.php && echo \" \033[1;0;33m\" && $ds1 sphinx $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.5 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes1[5] $ds2 && cd $_bin && $_php sphinx.php |& tee -a $path/../logs/$panes1[5]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 $panes1[5] $ds3' 2>&1 1> /dev/null"); $time9 = TIME(); } elseif ( $array['SPHINX'] != "true" ) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.5 'echo \"\033[38;5;\"$color\"m\nsphinx Disabled by SPHINX\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.5 'echo \"\033[38;5;\"$color\"m\n$panes1[5] Disabled by SPHINX\nThis is color #$color\"' 2>&1 1> /dev/null"); } else { $color = get_color(); $run_time = relativeTime( $array['SPHINX_TIMER'] + $time9 ); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.5 'echo \"\033[38;5;\"$color\"m\nsphinx will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.5 'echo \"\033[38;5;\"$color\"m\n$panes1[5] will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); } //run delete parts in pane 1.6 if ((( TIME() - $time16 ) >= $array['DELETE_TIMER'] ) && ( $array['DELETE_PARTS'] == "true" )) { - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.6 'echo \"\033[38;5;\"$color\"m\" && $ds1 delete_parts $ds2 && cd $_cj && $_php remove_parts_without_releases.php && $ds1 delete_parts $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.6 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes1[6] $ds2 && cd $_cj && $_php remove_parts_without_releases.php |& tee -a $path/../logs/$panes1[6]-$getdate.log && $ds1 $panes1[6] $ds3' 2>&1 1> /dev/null"); $time16 = TIME(); } elseif ( $array['DELETE_PARTS'] != "true" ) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.6 'echo \"\033[38;5;\"$color\"m\ndelete_parts Disabled by DELETE_PARTS\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.6 'echo \"\033[38;5;\"$color\"m\n$panes1[6] Disabled by DELETE_PARTS\nThis is color #$color\"' 2>&1 1> /dev/null"); } else { $color = get_color(); $run_time = relativeTime( $array['DELETE_TIMER'] + $time16 ); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.6 'echo \"\033[38;5;\"$color\"m\ndelete_parts will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.6 'echo \"\033[38;5;\"$color\"m\n$panes1[6] will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); } //run update_missing_movie_info parts in pane 1.7 if (((( TIME() - $time17 ) >= $array['MOVIE_TIMER'] ) || ( $i == 1 )) && ( $array['FETCH_MOVIE'] == "true" )) { - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.7 'echo \"\033[38;5;\"$color\"m\" && $ds1 fetch_movie $ds2 && cd $_cj && $_php update_missing_movie_info.php && $ds1 fetch_movie $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.7 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes1[7] $ds2 && cd $_cj && $_php update_missing_movie_info.php |& tee -a $path/../logs/$panes1[7]-$getdate.log && $ds1 $panes1[7] $ds3' 2>&1 1> /dev/null"); $time17 = TIME(); } elseif ( $array['FETCH_MOVIE'] != "true" ) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.7 'echo \"\033[38;5;\"$color\"m\nfetch movie Disabled by FETCH_MOVIE\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.7 'echo \"\033[38;5;\"$color\"m\n$panes1[7] Disabled by FETCH_MOVIE\nThis is color #$color\"' 2>&1 1> /dev/null"); } else { $color = get_color(); $run_time = relativeTime( $array['MOVIE_TIMER'] + $time17 ); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.7 'echo \"\033[38;5;\"$color\"m\nfetch movie will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:1.7 'echo \"\033[38;5;\"$color\"m\n$panes1[7] will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); } //runs postprocess_nfo.php in pane 3.0 once if needed then exits if (( $nfo_remaining_now > 0 ) && ( $array['POST_TO_RUN'] != 0 )) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.0 'echo \"\033[38;5;\"$color\"m\" && $ds1 postprocess_nfo $ds2 && cd $_bin && $_php postprocess_nfo.php && echo \" \033[1;0;33m\" && $ds1 postprocess_nfo $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.0 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes3[0] $ds2 && cd $_bin && $_php postprocess_nfo.php |& tee -a $path/../logs/$panes3[0]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 $panes3[0] $ds3' 2>&1 1> /dev/null"); } else { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.0 'echo \"\033[38;5;\"$color\"m\nprocess_Nfo Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.0 'echo \"\033[38;5;\"$color\"m\n$panes3[0] Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); } //runs processGames.php in pane y3.1 once if needed then exits if (( $console_releases_proc > 0 ) && ( $array['POST_TO_RUN'] != 0 )) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.1 'echo \"\033[38;5;\"$color\"m\" && $ds1 processGames $ds2 && cd $_bin && $_php processGames.php && echo \" \033[1;0;33m\" && $ds1 processGames $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.1 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes3[1] $ds2 && cd $_bin && $_php processGames.php |& tee -a $path/../logs/$panes3[1]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 $panes3[1] $ds3' 2>&1 1> /dev/null"); } else { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.1 'echo \"\033[38;5;\"$color\"m\nprocessGames Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.1 'echo \"\033[38;5;\"$color\"m\n$panes3[1] Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); } //runs processMovies.php in pane 3.2 once if needed then exits if (( $movie_releases_proc > 0 ) && ( $array['POST_TO_RUN'] != 0 )) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.2 'echo \"\033[38;5;\"$color\"\" && $ds1 processMovies $ds2 && cd $_bin && $_php processMovies.php && echo \" \033[1;0;33m\" && $ds1 processMovies $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.2 'echo \"\033[38;5;\"$color\"\" && $ds1 $panes3[2] $ds2 && cd $_bin && $_php processMovies.php |& tee -a $path/../logs/$panes3[2]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 $panes3[2] $ds3' 2>&1 1> /dev/null"); } else { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.2 'echo \"\033[38;5;\"$color\"m\nprocessMovies Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.2 'echo \"\033[38;5;\"$color\"m\n$panes3[2] Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); } //runs processMusic.php in pane 3.3 once if needed then exits if (( $music_releases_proc > 0 ) && ( $array['POST_TO_RUN'] != 0 )) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.3 'echo \"\033[38;5;\"$color\"m\" && $ds1 processMusic $ds2 && cd $_bin && $_php processMusic.php && echo \" \033[1;0;33m\" && $ds1 processMusic $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.3 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes3[3] $ds2 && cd $_bin && $_php processMusic.php |& tee -a $path/../logs/$panes3[3]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 $panes3[3] $ds3' 2>&1 1> /dev/null"); } else { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.3 'echo \"\033[38;5;\"$color\"m\nprocessMusic Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.3 'echo \"\033[38;5;\"$color\"m\n$panes3[3] Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); } //runs processTv.php in pane 3.4 once if needed then exits if (( $tvrage_releases_proc > 0 ) && ( $array['POST_TO_RUN'] != 0 )) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.4 'echo \"\033[38;5;\"$color\"m\" && $ds1 processTv $ds2 && cd $_bin && $_php processTv.php && echo \" \033[1;0;33m\" && $ds1 processTv $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.4 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes3[4] $ds2 && cd $_bin && $_php processTv.php |& tee -a $path/../logs/$panes3[4]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 $panes3[4] $ds3' 2>&1 1> /dev/null"); } else { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.4 'echo \"\033[38;5;\"$color\"m\nprocessTv Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.4 'echo \"\033[38;5;\"$color\"m\n$panes3[4] Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); } //runs processBooks.php in pane 3.5 once if needed then exits if (( $book_releases_proc > 0 ) && ( $array['POST_TO_RUN'] != 0 )) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.5 'echo \"\033[38;5;\"$color\"m\" && $ds1 processBooks $ds2 && cd $_bin && $_php processBooks.php && echo \" \033[1;0;33m\" && $ds1 processBooks $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.5 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes3[5] $ds2 && cd $_bin && $_php processBooks.php |& tee -a $path/../logs/$panes3[5]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 $panes3[5] $ds3' 2>&1 1> /dev/null"); } else { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.5 'echo \"\033[38;5;\"$color\"m\nprocessBooks Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.5 'echo \"\033[38;5;\"$color\"m\n$panes3[5] Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); } //runs processOthers.php in pane 3.6 once if needed then exits if ( $array['POST_TO_RUN'] != 0 ) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.6 'echo \"\033[38;5;\"$color\"m\" && $ds1 processOthers $ds2 && cd $_bin && $_php processOthers.php && echo \" \033[1;0;33m\" && $ds1 processOthers $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.6 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes3[6] $ds2 && cd $_bin && $_php processOthers.php |& tee -a $path/../logs/$panes3[6]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 $panes3[6] $ds3' 2>&1 1> /dev/null"); } else { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.6 'echo \"\033[38;5;\"$color\"m\nprocessOthers Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.6 'echo \"\033[38;5;\"$color\"m\n$panes3[6] Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); } //runs processUnwanted.php in pane 3.7 in continuous loop, will restart if exits if ( $array['POST_TO_RUN'] != 0 ) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.7 'echo \"\033[38;5;\"$color\"m\" && $ds1 processUnwanted $ds2 && cd $_bin && $_php processUnwanted.php && echo \" \033[1;0;33;33m\" && $ds1 processUnwanted $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.7 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes3[7] $ds2 && cd $_bin && $_php processUnwanted.php |& tee -a $path/../logs/$panes3[7]-$getdate.log && echo \" \033[1;0;33;33m\" && $ds1 $panes3[7] $ds3' 2>&1 1> /dev/null"); } else { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.7 'echo \"\033[38;5;\"$color\"m\nprocessUnwanted Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:3.7 'echo \"\033[38;5;\"$color\"m\n$panes3[7] Has no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); } //set command for running update_binaries if ( $array['BINARIES_THREADS'] == "true" ) { - $_update_cmd = "cd $_bin && $_php update_binaries_threaded.php"; + $_update_cmd = "cd $_bin && $_php update_binaries_threaded.php |& tee -a $path/../logs/$panes0[2]-$getdate.log"; } else { - $_update_cmd = "cd $NNPATH && $_php update_binaries.php"; + $_update_cmd = "cd $NNPATH && $_php update_binaries.php |& tee -a $path/../logs/$panes0[2]-$getdate.log"; } //set command for running backfill if ( $array['KEVIN_SAFER'] == "true" ) { - $_backfill_cmd = "cd $_bin && $_php safer_backfill_parts.php"; + $_backfill_cmd = "cd $_bin && $_php safer_backfill_parts.php |& tee -a $path/../logs/$panes0[3]-$getdate.log"; } elseif ( $array['BACKFILL_THREADS'] == "true" ) { - $_backfill_cmd = "cd $_bin && $_php backfill_threaded.php && $mysql_command_1"; + $_backfill_cmd = "cd $_bin && $_php backfill_threaded.php |& tee -a $path/../logs/$panes0[3]-$getdate.log && $mysql_command_1 |& tee -a $path/../logs/$panes0[3]-$getdate.log"; } else { - $_backfill_cmd = "cd $NNPATH && $_php backfill.php && $mysql_command_1"; + $_backfill_cmd = "cd $NNPATH && $_php backfill.php |& tee -a $path/../logs/$panes0[3]-$getdate.log && $mysql_command_1 |& tee -a $path/../logs/$panes0[3]-$getdate.log"; } //set command for nzb-import @@ -776,9 +815,9 @@ while( $i > 0 ) //check if sequential is set if ( $array['SEQUENTIAL'] != "true" ) { //runs update_binaries in 0.2 once if needed and exits - if (( $array['BINARIES'] == "true" ) && (( $total_work_used < $array['BINARIES_MAX_RELEASES'] ) || ( $array['BINARIES_MAX_RELEASES'] == 0 )) && (( $parts_rows_unformated < $array['BINARIES_MAX_ROWS'] ) || ( $array['BINARIES_MAX_ROWS'] == 0 ))) { + if (( $killed != "true" ) && ( $array['BINARIES'] == "true" ) && (( $total_work_used < $array['BINARIES_MAX_RELEASES'] ) || ( $array['BINARIES_MAX_RELEASES'] == 0 )) && (( $parts_rows_unformated < $array['BINARIES_MAX_ROWS'] ) || ( $array['BINARIES_MAX_ROWS'] == 0 ))) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\" && $ds1 binaries $ds2 && $_update_cmd && echo \" \033[1;0;33m\" && echo \"$_sleep_string {$array['BINARIES_SLEEP']} seconds...\" && sleep {$array['BINARIES_SLEEP']} && $ds1 binaries $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes0[2] $ds2 && $_update_cmd |& tee -a $path/../logs/$panes0[2]-$getdate.log && echo \" \033[1;0;33m\" && echo \"$_sleep_string {$array['BINARIES_SLEEP']} seconds...\" && sleep {$array['BINARIES_SLEEP']} && $ds1 binaries $ds3' 2>&1 1> /dev/null"); } elseif (( $parts_rows_unformated > $array['BINARIES_MAX_ROWS'] ) && ( $array['BINARIES'] == "true" ) && ( $array['BINARIES_MAX_ROWS'] != 0 )) { $color = get_color(); shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\nBINARIES_MAX_ROWS exceeded\" && $ds1 binaries $ds4'"); @@ -787,52 +826,52 @@ while( $i > 0 ) shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\nBINARIES_MAX_RELEASES exceeded\" && $ds1 binaries $ds4'"); } elseif ( $array['BINARIES'] != "true" ) { $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\nupdate_binaries Disabled by BINARIES\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\n$panes0[2] Disabled by BINARIES\nThis is color #$color\"' 2>&1 1> /dev/null"); } //runs backfill in 0.3 once if needed and exits - if (( $array['BACKFILL'] == "true" ) && (( $total_work_used < $array['BACKFILL_MAX_RELEASES'] ) || ( $array['BACKFILL_MAX_RELEASES'] == 0 )) && (( $parts_rows_unformated < $array['BACKFILL_MAX_ROWS'] ) || ( $array['BACKFILL_MAX_ROWS'] == 0 ))) { + if (( $killed != "true" ) && ( $array['BACKFILL'] == "true" ) && (( $total_work_used < $array['BACKFILL_MAX_RELEASES'] ) || ( $array['BACKFILL_MAX_RELEASES'] == 0 )) && (( $parts_rows_unformated < $array['BACKFILL_MAX_ROWS'] ) || ( $array['BACKFILL_MAX_ROWS'] == 0 ))) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\" && $ds1 backfill $ds2 && $_backfill_cmd && echo \" \033[1;0;33m\" && echo \"$_sleep_string {$array['BACKFILL_SLEEP']} seconds...\" && sleep {$array['BACKFILL_SLEEP']} && $ds1 backfill $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes0[3] $ds2 && $_backfill_cmd |& tee -a $path/../logs/$panes0[3]-$getdate.log && echo \" \033[1;0;33m\" && echo \"$_sleep_string {$array['BACKFILL_SLEEP']} seconds...\" && sleep {$array['BACKFILL_SLEEP']} && $ds1 $panes0[3] $ds3' 2>&1 1> /dev/null"); } elseif (( $parts_rows_unformated > $array['BACKFILL_MAX_ROWS'] ) && ( $array['BACKFILL'] == "true" ) && ( $array['BACKFILL_MAX_ROWS'] != 0 )) { $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\nBACKFILL_MAX_ROWS exceeded\" && $ds1 backfill $ds4'"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\nBACKFILL_MAX_ROWS exceeded\" && $ds1 $panes0[3] $ds4'"); } elseif (( $total_work_used > $array['BACKFILL_MAX_RELEASES'] ) && ( $array['BACKFILL'] == "true" ) && ( $array['BACKFILL_MAX_RELEASES'] != 0 )) { $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\nBACKFILL_MAX_RELEASES exceeded\" && $ds1 backfill $ds4'"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\nBACKFILL_MAX_RELEASES exceeded\" && $ds1 $panes0[3] $ds4'"); } elseif ( $array['BACKFILL'] != "true" ) { $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\nbackfill Disabled by BACKFILL\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\n$panes0[3] Disabled by BACKFILL\nThis is color #$color\"' 2>&1 1> /dev/null"); } } //run update_binaries and backfill using seq in pane 0.2 $dead = `$_tmux list-panes -t {$array['TMUX_SESSION']}:0 | grep 2: | grep dead`; - if (( $array['SEQUENTIAL'] == "true" ) && ( strlen( $dead ) > "4" )) { + if (( $killed != "true" ) && ( $array['SEQUENTIAL'] == "true" ) && ( strlen( $dead ) > "4" )) { if ((( $i == 1 ) || ( TIME() - $time13 >= $array['BINARIES_SEQ_TIMER'] )) && ( $array['BINARIES'] == "true" ) && (( $total_work_used < $array['BINARIES_MAX_RELEASES'] ) || ( $array['BINARIES_MAX_RELEASES'] == 0 )) && (( $parts_rows_unformated < $array['BINARIES_MAX_ROWS'] ) || ( $array['BINARIES_MAX_ROWS'] == 0 ))) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\" && $ds1 binaries $ds2 && $_update_cmd && echo \" \033[1;0;33m\" && $ds1 binaries $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes0[2] $ds2 && $_update_cmd && echo \" \033[1;0;33m\" && $ds1 $panes0[2] $ds3' 2>&1 1> /dev/null"); $time13 = TIME(); } elseif (( TIME() - $time14 >= $array['BACKFILL_SEQ_TIMER'] ) && ( $array['BACKFILL'] == "true" ) && (( $total_work_used < $array['BACKFILL_MAX_RELEASES'] ) || ( $array['BACKFILL_MAX_RELEASES'] == 0 )) && (( $parts_rows_unformated < $array['BACKFILL_MAX_ROWS'] ) || ( $array['BACKFILL_MAX_ROWS'] == 0 ))) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\" && $ds1 backfill $ds2 && $_backfill_cmd && echo \" \033[1;0;33m\" && $ds1 backfill $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes0[3] $ds2 && $_backfill_cmd && echo \" \033[1;0;33m\" && $ds1 $panes0[3] $ds3' 2>&1 1> /dev/null"); $time14 = TIME(); } elseif (( $array['BINARIES'] != "true" ) && ( $array['BACKFILL'] != "true" )) { $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\nupdate_binaries and backfill Disabled by BINARIES and BACKFILL\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\n$panes0[2] and $panes0[3] Disabled by BINARIES and BACKFILL\nThis is color #$color\"' 2>&1 1> /dev/null"); } elseif (( $array['BACKFILL'] == "true" ) && ( $array['BINARIES'] == "true" )) { $color = get_color(); $run_time1 = relativeTime( $array['BACKFILL_SEQ_TIMER'] + $time14 ); $run_time2 = relativeTime( $array['BINARIES_SEQ_TIMER'] + $time13 ); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\nupdate_binaries will run in $run_time2 \nbackfill will run in $run_time1 \nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\n$panes0[2] will run in $run_time2 \n$panes0[3] will run in $run_time1 \nThis is color #$color\"' 2>&1 1> /dev/null"); } elseif ( $array['BACKFILL'] == "true" ) { $color = get_color(); $run_time = relativeTime( $array['BACKFILL_SEQ_TIMER'] + $time14 ); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\nbackfill will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\n$panes0[3] will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); } elseif ( $array['BINARIES'] == "true" ) { $color = get_color(); $run_time = relativeTime( $array['BINARIES_SEQ_TIMER'] + $time13 ); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\nupdate_binaries will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\n$panes0[2] will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); } } @@ -842,15 +881,15 @@ while( $i > 0 ) $color = get_color(); $run_time1 = relativeTime( $array['BACKFILL_SEQ_TIMER'] + $time14 ); $run_time2 = relativeTime( $array['BINARIES_SEQ_TIMER'] + $time13 ); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\nupdate_binaries will run in $run_time2 \nbackfill will run in $run_time1 \nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\n$panes0[2] will run in $run_time2\n$panes0[3] will run in $run_time1\nThis is color #$color\"' 2>&1 1> /dev/null"); } elseif ( $array['BACKFILL'] == "true" ) { $color = get_color(); $run_time = relativeTime( $array['BACKFILL_SEQ_TIMER'] + $time14 ); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\nbackfill will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\n$panes0[3] will run in $run_time2\nThis is color #$color\"' 2>&1 1> /dev/null"); } elseif ( $array['BINARIES'] == "true" ) { $color = get_color(); $run_time = relativeTime( $array['BINARIES_SEQ_TIMER'] + $time13 ); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\nupdate_binaries will run in $run_time\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\n$panes0[2] will run in $run_time1\nThis is color #$color\"' 2>&1 1> /dev/null"); } } @@ -858,44 +897,44 @@ while( $i > 0 ) if ( $array['SEQUENTIAL'] == "true" ) { if (( $parts_rows_unformated > $array['BINARIES_MAX_ROWS'] ) && ( $array['BINARIES'] == "true" ) && ( $array['BINARIES_MAX_ROWS'] != 0 ) && ( $array['BACKFILL'] == "true" ) && ( $total_work_used > $array['BACKFILL_MAX_RELEASES'] ) && ( $array['BACKFILL_MAX_ROWS'] != 0 )) { $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\nBINARIES_MAX_ROWS and BACKFILL_MAX_ROWS exceeded\" && $ds1 binaries $ds4'"); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\nBINARIES_MAX_ROWS and BACKFILL_MAX_ROWS exceeded\" && $ds1 backfill $ds4'"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.2 'echo \"\033[38;5;\"$color\"m\nBINARIES_MAX_ROWS and BACKFILL_MAX_ROWS exceeded\" && $ds1 $panes0[2] $ds4'"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.3 'echo \"\033[38;5;\"$color\"m\nBINARIES_MAX_ROWS and BACKFILL_MAX_ROWS exceeded\" && $ds1 $panes0[3] $ds4'"); } } //runs nzb-import in 0.4 once if needed and exits - if (( $array['IMPORT'] == "true" ) && (( $total_work_used < $array['IMPORT_MAX_RELEASES'] ) || ( $array['IMPORT_MAX_RELEASES'] == 0 )) && (( $parts_rows_unformated < $array['IMPORT_MAX_ROWS'] ) || ( $array['IMPORT_MAX_ROWS'] == 0 ))) { + if (( $killed != "true" ) && ( $array['IMPORT'] == "true" ) && (( $total_work_used < $array['IMPORT_MAX_RELEASES'] ) || ( $array['IMPORT_MAX_RELEASES'] == 0 )) && (( $parts_rows_unformated < $array['IMPORT_MAX_ROWS'] ) || ( $array['IMPORT_MAX_ROWS'] == 0 ))) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.4 'echo \"\033[38;5;\"$color\"m\" && $ds1 import $ds2 && cd $_bin && $nzb_cmd && echo \" \" && echo \" \033[1;0;33m\" && echo \"$_sleep_string {$array['IMPORT_SLEEP']} seconds...\" && sleep {$array['IMPORT_SLEEP']} && $ds1 import $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.4 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes0[4] $ds2 && cd $_bin && $nzb_cmd |& tee -a $path/../logs/$panes0[4]-$getdate.log && echo \" \" && echo \" \033[1;0;33m\" && echo \"$_sleep_string {$array['IMPORT_SLEEP']} seconds...\" && sleep {$array['IMPORT_SLEEP']} && $ds1 $panes0[4] $ds3' 2>&1 1> /dev/null"); $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.1 'echo \"\033[38;5;\"$color\"m\" && $ds1 nzbcount $ds2 && cd $_bin && $_php nzbcount.php' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.1 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes0[1] $ds2 && cd $_bin && $_php nzbcount.php |& tee -a $path/../logs/$panes0[1]-$getdate.log' 2>&1 1> /dev/null"); } elseif (( $parts_rows_unformated > $array['IMPORT_MAX_ROWS'] ) && ( $array['IMPORT'] == "true" ) && ( $array['IMPORT_MAX_ROWS'] != 0 )) { $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.4 'echo \"\033[38;5;\"$color\"m\nIMPORT_MAX_ROWS exceeded\" && $ds1 import $ds4'"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.4 'echo \"\033[38;5;\"$color\"m\nIMPORT_MAX_ROWS exceeded\" && $ds1 $panes0[4] $ds4'"); } elseif (( $total_work_used > $array['IMPORT_MAX_RELEASES'] ) && ( $array['IMPORT'] == "true" ) && ( $array['IMPORT_MAX_RELEASES'] != 0 )) { $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.4 'echo \"\033[38;5;\"$color\"m\nIMPORT_MAX_RELEASES exceeded\" && $ds1 import $ds4'"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.4 'echo \"\033[38;5;\"$color\"m\nIMPORT_MAX_RELEASES exceeded\" && $ds1 $panes0[4] $ds4'"); } elseif ( $array['IMPORT'] != "true" ) { $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.4 'echo \"\033[38;5;\"$color\"m\nnzb-import Disabled by IMPORT\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.4 'echo \"\033[38;5;\"$color\"m\n$panes0[4] Disabled by IMPORT\nThis is color #$color\"' 2>&1 1> /dev/null"); } //runs nzbcount in 0.1 loops if ( $array['IMPORT'] == "true" ) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.1 'echo \"\033[38;5;\"$color\"m\" && $ds1 nzbcount $ds2 && cd $_bin && $_php nzbcount.php' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.1 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes0[1] $ds2 && cd $_bin && $_php nzbcount.php |& tee -a $path/../logs/$panes0[1]-$getdate.log' 2>&1 1> /dev/null"); } else { $color = get_color(); - shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.1 'echo \"\033[38;5;\"$color\"m\nnzbcount Disabled by IMPORT\" && $ds1 nzbcount $ds4'"); + shell_exec("$_tmux respawnp -k -t {$array['TMUX_SESSION']}:0.1 'echo \"\033[38;5;\"$color\"m\n$panes0[1] Disabled by IMPORT\" && $ds1 $panes0[1] $ds4'"); } //runs update_release and in 0.5 once if needed and exits if ( $array['RELEASES'] == "true" ) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.5 'echo \"\033[38;5;\"$color\"m\" && $ds1 releases $ds2 && cd $_bin && $_php update_releases.php && echo \" \033[1;0;33m\" && echo \"$_sleep_string {$array['RELEASES_SLEEP']} seconds...\" && sleep {$array['RELEASES_SLEEP']} && $ds1 releases $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.5 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes0[5] $ds2 && cd $_bin && $_php update_releases.php |& tee -a $path/../logs/$panes0[5]-$getdate.log && echo \" \033[1;0;33m\" && echo \"$_sleep_string {$array['RELEASES_SLEEP']} seconds...\" && sleep {$array['RELEASES_SLEEP']} && $ds1 $panes0[5] $ds3' 2>&1 1> /dev/null"); } elseif ( $array['RELEASES'] != "true" ) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.5 'echo \"\033[38;5;\"$color\"m\nupdate_releases Disabled by RELEASES\nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:0.5 'echo \"\033[38;5;\"$color\"m\n$panes0[5] Disabled by RELEASES\nThis is color #$color\"' 2>&1 1> /dev/null"); } //start postprocessing in window 2 @@ -906,10 +945,10 @@ while( $i > 0 ) $j=$g*2; if (( $array['POST_TO_RUN'] >= $g ) && ( $work_remaining_now > $f )) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:2.$h 'echo \"\033[38;5;\"$color\"m\" && $ds1 postprocess_$g $ds2 && cd $_bin && sleep $j && $_php processAdditional$g.php && echo \" \033[1;0;33m\" && $ds1 postprocess_$g $ds3' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:2.$h 'echo \"\033[38;5;\"$color\"m\" && $ds1 $panes2[$h] $ds2 && cd $_bin && sleep $j && $_php processAdditional$g.php |& tee -a $path/../logs/$panes2[$h]-$getdate.log && echo \" \033[1;0;33m\" && $ds1 $panes1[$g] $ds3' 2>&1 1> /dev/null"); } elseif (( $array['POST_TO_RUN'] >= $g ) && ( $work_remaining_now <= $f )) { $color = get_color(); - shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:2.$h 'echo \"\033[38;5;\"$color\"m\npostprocess_$g \n$work_remaining_now < $f\nHas no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); + shell_exec("$_tmux respawnp -t {$array['TMUX_SESSION']}:2.$h 'echo \"\033[38;5;\"$color\"m\n$panes2[$h]\n$work_remaining_now < $f\nHas no work to process \nThis is color #$color\"' 2>&1 1> /dev/null"); } } diff --git a/config.sh b/config.sh index 6073e12ac..c4321e4e8 100644 --- a/config.sh +++ b/config.sh @@ -39,6 +39,14 @@ export TMUX_SESSION="Newznab" #Set, in seconds - how often the monitor.php (left top pane) script should update, 0 may cause errors export MONITOR_UPDATE="30" +#you may want to kill the update_bianries, backfill and import if no releases have been add in x minutes, set the timer to anything other than 0 to enable +#this will only run every 5 loops of monitor +export KILL_UPDATES="0" + +#do you want to just cause it to restart or keep off until a release is created, true for off until a release is created +#this will stop all downloads and imports +export KEEP_KILLED="false" + ############################################################ #You can have backfill loop constantly and interject binaries every so often @@ -313,6 +321,9 @@ export KEVINS_COMP="false" #set your LANG to which ever you like, only effects these scripts export LANG="en_US.UTF-8" +#to help IMDB return only english titles, enable this, you will need to run update_svn.php or fix_files.php +export EN_IMDB="true" + ############################################################ #newzdash is a web front end to show statistics of your nn+ install diff --git a/scripts/fix_files.sh b/scripts/fix_files.sh index 13854682b..2bca26043 100755 --- a/scripts/fix_files.sh +++ b/scripts/fix_files.sh @@ -41,6 +41,15 @@ if [[ $FIX_POSIX == "true" ]]; then sed -i -e 's/return 'SIGPWR';/\/\/return 'SIGPWR';/' $NEWZPATH/www/lib/powerprocess.php fi +#attempt to get english only from IMDB +if [[ $EN_IMDB == "true" ]]; then + sed -i -e 's/akas.imdb/www.imdb/g' $NEWZPATH/www/lib/movie.php + sed -i -e 's/akas.imdb/www.imdb/g' $TESTING_PATH/update_parsing.php + sed -i -e 's/curl_setopt($ch, CURLOPT_URL, $url);/curl_setopt($ch, CURLOPT_URL, $url);\ + $header[] = "Accept-Language: en-us";\ + curl_setopt($ch, CURLOPT_HTTPHEADER, $header);/' $NEWZPATH/www/lib/util.php +fi + #import kevin123's compression mod if [[ $KEVINS_COMP == "true" ]]; then cd $DIR"/kevin123" diff --git a/scripts/revert.sh b/scripts/revert.sh index 2cf26158b..a28267173 100755 --- a/scripts/revert.sh +++ b/scripts/revert.sh @@ -18,19 +18,12 @@ fi source ../defaults.sh eval $( $SED -n "/^define/ { s/.*('\([^']*\)', '*\([^']*\)'*);/export \1=\"\2\"/; p }" "$NEWZPATH"/www/config.php ) -if [ -f $NEWZPATH/www/lib/postprocess.php ]; then - sudo $SED -i -e 's/\/\/$this->processAdditional();/$this->processAdditional();/' $NEWZPATH/www/lib/postprocess.php - sudo $SED -i -e 's/\/\/$this->processNfos();/$this->processNfos();/' $NEWZPATH/www/lib/postprocess.php - sudo $SED -i -e 's/\/\/$this->processUnwanted();/$this->processUnwanted();/' $NEWZPATH/www/lib/postprocess.php - sudo $SED -i -e 's/\/\/$this->processMovies();/$this->processMovies();/' $NEWZPATH/www/lib/postprocess.php - sudo $SED -i -e 's/\/\/$this->processMusic();/$this->processMusic();/' $NEWZPATH/www/lib/postprocess.php - sudo $SED -i -e 's/\/\/$this->processBooks();/$this->processBooks();/' $NEWZPATH/www/lib/postprocess.php - sudo $SED -i -e 's/\/\/$this->processGames();/$this->processGames();/' $NEWZPATH/www/lib/postprocess.php - sudo $SED -i -e 's/\/\/$this->processTv();/$this->processTv();/' $NEWZPATH/www/lib/postprocess.php - sudo $SED -i -e 's/\/\/$this->processMusicFromMediaInfo();/$this->processMusicFromMediaInfo();/' $NEWZPATH/www/lib/postprocess.php - sudo $SED -i -e 's/\/\/$this->processOtherMiscCategory();/$this->processOtherMiscCategory();/' $NEWZPATH/www/lib/postprocess.php - sudo $SED -i -e 's/\/\/$this->processUnknownCategory();/$this->processUnknownCategory();/' $NEWZPATH/www/lib/postprocess.php -fi +#updates to newest svn +svn co --force --username svnplus --password $SVN_PASSWORD svn://svn.newznab.com/nn/branches/nnplus $NEWZPATH/ +sleep 2 + +#force download/overwrite of current svn +svn export --force --username svnplus --password $SVN_PASSWORD svn://svn.newznab.com/nn/branches/nnplus $NEWZPATH/ #Get the path to tmpunrar TMPUNRAR_QUERY="SELECT value from site where setting = \"tmpunrarpath\";" diff --git a/scripts/tvrage-latest.sql b/scripts/tvrage-latest.sql new file mode 100644 index 000000000..104dcf94b --- /dev/null +++ b/scripts/tvrage-latest.sql @@ -0,0 +1,33580 @@ +SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; + +DROP TABLE IF EXISTS `tvrage`; +CREATE TABLE IF NOT EXISTS `tvrage` ( + `ID` int(11) unsigned NOT NULL AUTO_INCREMENT, + `rageID` int(11) NOT NULL, + `tvdbID` int(11) NOT NULL DEFAULT '0', + `releasetitle` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `description` varchar(10000) COLLATE utf8_unicode_ci DEFAULT NULL, + `genre` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL, + `country` varchar(2) COLLATE utf8_unicode_ci DEFAULT NULL, + `imgdata` longblob, + `createddate` datetime DEFAULT NULL, + `prevdate` datetime DEFAULT NULL, + `previnfo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, + `nextdate` datetime DEFAULT NULL, + `nextinfo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, + PRIMARY KEY (`ID`), + KEY `ix_tvrage_rageID` (`rageID`), + KEY `ix_tvrage_country` (`country`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; + +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(1, 'Fernwood 2Night', 'US', now()), +(2, 'America 2Night', 'US', now()), +(3, 'Mary Hartman, Mary Hartman', 'US', now()), +(4, 'Sara (1985)', 'US', now()), +(5, 'Buffalo Bill', 'US', now()), +(6, 'The Rousters', 'US', now()), +(7, 'Paper Dolls', 'US', now()), +(8, 'Marcus Welby, M.D.', 'US', now()), +(9, 'Too Close for Comfort', 'US', now()), +(10, 'Bob & Carol & Ted & Alice', 'US', now()), +(11, 'USA High', 'US', now()), +(12, 'The Colbys', 'US', now()), +(13, 'The Betty White Show', 'US', now()), +(14, 'The Andy Williams Show (1958)', 'US', now()), +(15, 'The Courtship of Eddie''s Father', 'US', now()), +(16, 'Forever Fernwood', 'US', now()), +(17, 'Seven Brides for Seven Brothers', 'US', now()), +(18, 'Fallen Angels', 'US', now()), +(19, 'Another Day', 'US', now()), +(20, 'The Defenders (1961)', 'US', now()), +(21, 'Trapper John, M.D.', 'US', now()), +(22, 'Dr. Kildare', 'US', now()), +(23, 'Empire (1962)', 'US', now()), +(24, 'Fifteen', 'US', now()), +(25, 'Swans Crossing', 'US', now()), +(26, 'Santa Barbara', 'US', now()), +(27, 'NYPD', 'US', now()), +(28, 'Social Studies', 'US', now()), +(29, 'Winnetka Road', 'US', now()), +(30, 'Cupid (1998)', 'US', now()), +(31, 'Pokémon', 'AJ', now()), +(32, 'Second Chance (1987)', 'US', now()), +(33, 'Home Free', 'US', now()), +(34, 'The Trouble with Larry', 'US', now()), +(35, 'Day by Day', 'US', now()), +(36, 'It''s a Living', 'US', now()), +(37, 'Phyllis', 'US', now()), +(38, 'Julia', 'US', now()), +(39, 'Bachelor Father', 'US', now()), +(40, 'Nasty Boys', 'US', now()), +(41, 'Working it Out', 'US', now()), +(42, 'I''m Dickens--He''s Fenster', 'US', now()), +(43, 'December Bride', 'US', now()), +(44, 'Pete and Gladys', 'US', now()), +(45, 'House Calls', 'US', now()), +(46, 'Apple Pie', 'US', now()), +(47, 'Blansky''s Beauties', 'US', now()), +(48, 'True Colors', 'US', now()), +(49, 'Fish (US)', 'US', now()), +(50, 'Burke''s Law (1994)', 'US', now()), +(51, 'Three''s a Crowd (1984)', 'US', now()), +(52, 'Babes', 'US', now()), +(53, 'Going Places', 'US', now()), +(54, 'Amen', 'US', now()), +(55, 'That''s My Mama', 'US', now()), +(56, 'Undressed', 'US', now()), +(57, 'Ready or Not', 'CA', now()), +(58, 'Katts and Dog', 'CA', now()), +(59, 'Zoe, Duncan, Jack & Jane', 'US', now()), +(60, 'Throb', 'US', now()), +(61, 'CatDog', 'US', now()), +(62, 'Head Start', 'AU', now()), +(63, 'Grace & Favour', 'UK', now()), +(64, 'Keeping Up Appearances', 'UK', now()), +(65, 'Bagdad Cafe', 'US', now()), +(66, 'Dot Comedy', 'US', now()), +(67, 'Black Tie Affair', 'US', now()), +(68, 'My World and Welcome to It', 'US', now()), +(69, 'Who Wants to Be a Millionaire (US)', 'US', now()), +(70, 'Emerald Point N.A.S.', 'US', now()), +(71, 'James at 15', 'US', now()), +(72, 'The United States Steel Hour', 'US', now()), +(73, 'The Beachcombers', 'CA', now()), +(74, 'The Good Guys (1968)', 'US', now()), +(75, 'Tales of the Unexpected', 'UK', now()), +(76, 'The Kids from Room 402', 'US', now()), +(77, 'Jesse Hawkes', 'US', now()), +(78, 'Lock-Up', 'US', now()), +(79, 'Thieftakers', 'UK', now()), +(80, 'Harper Valley', 'US', now()), +(81, 'West Point Story', 'US', now()), +(82, 'The Millionaire', 'US', now()), +(83, 'The Burning Zone', 'US', now()), +(84, 'Cain''s Hundred', 'US', now()), +(85, 'Talk Of The Town', 'US', now()), +(86, 'Life with Lucy', 'US', now()), +(87, 'Broken Arrow', 'US', now()), +(88, 'Whispering Smith', 'US', now()), +(89, 'Search for Tomorrow', 'US', now()), +(90, 'The Edge of Night', 'US', now()), +(91, 'Texas', 'US', now()), +(92, 'Password', 'US', now()), +(93, 'The Mike Douglas Show', 'US', now()), +(15871, 'His & Hers', 'US', now()), +(95, 'Bare Essence', 'US', now()), +(96, 'Lillie', 'UK', now()), +(97, 'The Adventurer (UK)', 'UK', now()), +(98, 'Capitol', 'US', now()), +(99, 'Here Come the Brides', 'US', now()), +(100, 'Love of Life', 'US', now()), +(101, 'The Doctors (1963)', 'US', now()), +(102, 'Generations', 'US', now()), +(103, 'Arli$$', 'US', now()), +(104, 'Breaking Away', 'US', now()), +(105, 'Bat Masterson', 'US', now()), +(106, 'Sigmund and the Sea Monsters', 'US', now()), +(107, 'Buddies', 'US', now()), +(16584, 'Un paso adelante (DE)', 'ES', now()), +(109, 'Stoney Burke', 'US', now()), +(110, 'Rituals', 'US', now()), +(111, 'The City (1995)', 'US', now()), +(112, 'That Was the Week That Was', 'UK', now()), +(113, 'Shelley', 'UK', now()), +(114, 'Brookside', 'UK', now()), +(115, 'Dolly', 'US', now()), +(116, 'Ben Casey', 'US', now()), +(117, 'Match Game PM', 'US', now()), +(118, 'Love, Sidney', 'US', now()), +(119, 'The Debbie Reynolds Show', 'US', now()), +(120, 'All That Glitters', 'US', now()), +(121, 'Hail To the Chief', 'US', now()), +(122, 'Watching', 'UK', now()), +(123, 'Sit Down, Shut Up (AU)', 'AU', now()), +(124, 'Love is a Four Letter Word', 'AU', now()), +(125, 'Flat Chat', 'AU', now()), +(126, 'Water Rats', 'AU', now()), +(127, 'Baby Boom', 'US', now()), +(128, 'The Leslie Uggams Show', 'US', now()), +(129, 'Good Sports', 'US', now()), +(130, 'Spellbinder', 'AU', now()), +(131, 'Normal Life', 'US', now()), +(132, 'Beyond Chance', 'US', now()), +(133, 'The Paul Williams Comedy Show', 'US', now()), +(134, 'Loves Me, Loves Me Not', 'US', now()), +(135, 'Jennifer Slept Here', 'US', now()), +(136, 'You Take the Kids', 'US', now()), +(137, 'Climax!', 'US', now()), +(138, 'Checking In', 'US', now()), +(139, 'Fish Police', 'US', now()), +(11071, 'Notorious', 'US', now()), +(141, 'Hullabaloo', 'US', now()), +(142, 'Pryor''s Place', 'US', now()), +(143, 'Hee-Haw', 'US', now()), +(144, 'The Demon Headmaster', 'UK', now()), +(145, 'The Silver Surfer', 'US', now()), +(146, 'Chained', 'UK', now()), +(147, 'Trust Me (UK)', 'UK', now()), +(148, 'Burnside', 'UK', now()), +(149, '87th Precinct', 'US', now()), +(150, 'Tribeca', 'US', now()), +(151, 'Space Cadets (1997)', 'UK', now()), +(152, 'The Glen Campbell Goodtime Hour', 'US', now()), +(153, 'Scorch', 'US', now()), +(154, 'Chromiumblue.com', 'US', now()), +(155, 'Happily Ever After: Fairy Tales for Every Child', 'US', now()), +(156, 'Grange Hill', 'UK', now()), +(157, 'Minder', 'UK', now()), +(158, 'Rumpole of the Bailey', 'UK', now()), +(159, 'The Joey Bishop Show', 'US', now()), +(160, 'She Wolf of London', 'US', now()), +(161, 'Nakia', 'US', now()), +(162, 'The Cowboys', 'US', now()), +(163, 'The Weakest Link (US)', 'US', now()), +(164, 'The Ford Show', 'US', now()), +(165, 'The Life of Riley (1953)', 'US', now()), +(166, 'Shindig', 'US', now()), +(167, 'Supertrain', 'US', now()), +(168, 'City', 'US', now()), +(169, 'Savannah', 'US', now()), +(170, 'Filthy Rich (US)', 'US', now()), +(171, 'Girls on Top', 'UK', now()), +(172, 'The Mary Tyler Moore Hour', 'US', now()), +(173, 'The Marshall Chronicles', 'US', now()), +(174, 'Out of the Blue (US)', 'US', now()), +(175, 'The Paul Lynde Show', 'US', now()), +(176, 'It''s a Business?', 'US', now()), +(177, 'She TV', 'US', now()), +(178, 'Lidsville', 'US', now()), +(179, 'Gilligan''s Planet', 'US', now()), +(180, 'Wonderbug', now(), now()), +(9466, 'Jennings', 'UK', now()), +(182, 'Space Rangers', 'US', now()), +(183, 'Widget, the World Watcher', 'US', now()), +(184, 'Project G.eeK.eR.', 'US', now()), +(185, 'Histeria!', 'US', now()), +(186, 'The Law & Harry McGraw', 'US', now()), +(187, 'The Thorns', 'US', now()), +(188, 'Bruno the Kid', 'US', now()), +(189, 'Destiny', 'US', now()), +(190, 'The Paper Chase', 'US', now()), +(191, 'A New Kind of Family', 'US', now()), +(192, 'The Ray Stevens Show', 'US', now()), +(193, 'Solid Gold', 'US', now()), +(194, 'A Country Practice', 'AU', now()), +(195, 'Police Rescue', 'AU', now()), +(196, 'We Got It Made', 'US', now()), +(197, 'Morton & Hayes', 'US', now()), +(198, 'Mike Hammer (1983)', 'US', now()), +(199, 'Hello, Larry', 'US', now()), +(200, 'Heartbreak High', 'AU', now()), +(201, 'The Marsha Warfield Show', 'US', now()), +(202, 'If Not for You', 'US', now()), +(203, 'Hazel', 'US', now()), +(204, 'The Hello Girls', 'UK', now()), +(205, 'Open House (US)', 'US', now()), +(206, 'Manchester Prep', 'US', now()), +(207, 'PB&J Otter', 'US', now()), +(208, 'Sapphire & Steel', 'UK', now()), +(209, 'Man of the People', 'US', now()), +(210, 'Midnight Caller', 'US', now()), +(211, 'Hey Hey It''s Saturday', 'AU', now()), +(212, 'Rendez-View', 'US', now()), +(213, 'Comedy on the Road', 'US', now()), +(214, 'Friday Night Videos', 'US', now()), +(215, 'Insight', 'US', now()), +(216, 'The Governor & J.J.', 'US', now()), +(217, 'Beacon Hill', 'US', now()), +(218, 'Ball Four', 'US', now()), +(219, 'Karen (1964)', 'US', now()), +(220, 'Karen (1975)', 'US', now()), +(221, 'Family Passions', 'CA', now()), +(222, 'Frontier Doctor', 'US', now()), +(223, 'The Philco Television Playhouse', 'US', now()), +(224, 'Ripcord', 'US', now()), +(225, 'Pacific Drive', 'AU', now()), +(226, 'Jessie', 'US', now()), +(227, 'Sin City Spectacular', 'US', now()), +(228, 'The Porter Wagoner Show', 'US', now()), +(229, 'Strike Force (1981)', 'US', now()), +(230, 'Executive Suite', 'US', now()), +(231, 'Pink Lady and Jeff', 'US', now()), +(232, 'Mirror Mirror', 'AU', now()), +(233, 'Big Sky', 'AU', now()), +(234, 'Crash Palace', 'AU', now()), +(235, 'The Scariest Places on Earth', 'US', now()), +(236, 'Days Like These', 'UK', now()), +(237, 'Jack Van Impe', 'US', now()), +(239, 'Galaxy High School', 'US', now()), +(240, 'The Iron Horse', 'US', now()), +(241, 'Way Out', 'US', now()), +(242, 'Hot L Baltimore', 'US', now()), +(243, 'The Busy World of Richard Scarry', 'US', now()), +(244, 'Spyder Games', 'US', now()), +(245, 'The Midnight Special', 'US', now()), +(246, 'Intimate Portrait', 'US', now()), +(247, 'Out of the Box', 'US', now()), +(248, 'Boot Camp', 'US', now()), +(249, 'The Tripods', 'UK', now()), +(250, 'Jason King', 'UK', now()), +(251, 'Tenko', 'UK', now()), +(252, 'Cluedo (UK)', 'UK', now()), +(253, 'Dangerous Women', 'US', now()), +(254, 'Out of Control', 'US', now()), +(255, 'Never Too Young', 'US', now()), +(256, 'The Oz Kids', 'US', now()), +(257, 'Big Shamus, Little Shamus', 'US', now()), +(258, 'Down the Shore', 'US', now()), +(259, 'Science Court', 'US', now()), +(260, 'Pinwheel', 'US', now()), +(261, 'Bailey Kipper''s P.O.V', 'US', now()), +(10928, 'DIY SOS', 'UK', now()), +(263, 'The Mork & Mindy/Laverne & Shirley/Fonz Hour', 'US', now()), +(264, 'Gullah, Gullah Island', 'US', now()), +(265, 'My Brother and Me', 'US', now()), +(266, 'The Lone Wolf', 'US', now()), +(267, 'Catwalk (CA)', 'CA', now()), +(268, 'Together We Stand', 'US', now()), +(270, 'Leo and Me', 'CA', now()), +(271, 'A Family for Joe', 'US', now()), +(272, 'Santo Bugito', 'US', now()), +(273, 'Learning The Ropes', 'CA', now()), +(274, 'Hee Haw Honeys', 'US', now()), +(275, 'Working Stiffs', 'US', now()), +(276, 'A League of Their Own', 'US', now()), +(277, 'Uptown Comedy Club', 'US', now()), +(278, 'Love Is a Many Splendored Thing', 'US', now()), +(279, 'The Oregon Trail', 'US', now()), +(280, 'Capitol Critters', 'US', now()), +(281, 'Tenafly', 'US', now()), +(282, 'Cool Million', 'US', now()), +(283, 'Faraday and Company', 'US', now()), +(284, 'Honeymoon Suite', 'US', now()), +(285, 'The Campbells', 'CA', now()), +(286, 'Figure It Out', 'US', now()), +(287, 'Christine Cromwell', 'US', now()), +(288, 'Tucker''s Witch', 'US', now()), +(289, 'Brak Presents the Brak Show Starring Brak', 'US', now()), +(290, 'Search Party', 'US', now()), +(291, 'The Match Game', 'US', now()), +(292, 'Channel Umptee-3', 'US', now()), +(293, 'The Benny Hill Show (1969)', 'UK', now()), +(294, 'High Flyers', 'AU', now()), +(295, 'Jason and the Argonauts', 'US', now()), +(296, 'The Danny Kaye Show', 'US', now()), +(297, 'Trackdown', 'US', now()), +(298, 'Eugenie Sandler P.I.', 'AU', now()), +(299, 'The Wayne Manifesto', 'AU', now()), +(300, 'Halfway Across the Galaxy and Turn Left', 'AU', now()), +(301, 'Mirror Mirror 2', 'AU', now()), +(302, 'Sky Trackers', 'AU', now()), +(303, 'Emerald Cove', 'US', now()), +(304, 'You Don''t Know Jack', 'US', now()), +(305, 'Amy Prentiss', 'US', now()), +(306, 'Sons and Daughters (1991)', 'US', now()), +(307, 'Danger Theatre', 'US', now()), +(308, 'It''s a Great Life', 'US', now()), +(309, 'Profiles in Courage', 'US', now()), +(310, 'Medivac', 'AU', now()), +(311, 'The Adventures of A.R.K.', 'US', now()), +(312, 'Park Place', 'US', now()), +(313, 'Medical Story', 'US', now()), +(314, 'Townsend Television', 'US', now()), +(315, 'Salute Your Shorts', 'US', now()), +(316, 'Wishbone', 'US', now()), +(317, 'G.P.', 'AU', now()), +(318, 'Hammerman', 'US', now()), +(319, 'Dan Dare', 'UK', now()), +(320, 'Eischied', 'US', now()), +(14570, 'Food Of Love', 'HK', now()), +(322, 'Up Pompeii!', 'UK', now()), +(323, 'Crusader Rabbit', 'US', now()), +(324, 'Wild Palms', 'US', now()), +(325, 'The Adams Chronicles', 'US', now()), +(326, 'The Hathaways', 'US', now()), +(327, 'The Human Jungle', 'UK', now()), +(328, 'Random Play', 'US', now()), +(329, 'Inch High, Private Eye', 'US', now()), +(330, 'Where the Heart Is (US)', 'US', now()), +(331, 'Toonsylvania', 'US', now()), +(332, 'Space-Stars', 'US', now()), +(333, 'You Again?', 'US', now()), +(334, 'Little Rosie', 'US', now()), +(335, 'Mr. Novak', 'US', now()), +(336, 'Camp Runamuck', 'US', now()), +(337, 'Westside Medical', 'US', now()), +(338, 'Wish Kid', 'US', now()), +(339, 'Duggan', 'NZ', now()), +(340, 'The Banana Splits Adventure Hour', 'US', now()), +(341, 'Perils of Penelope Pitstop', 'US', now()), +(342, 'Help!... It''s the Hair Bear Bunch', 'US', now()), +(343, 'Goober and the Ghost-Chasers', 'US', now()), +(344, 'Iron Man', 'US', now()), +(345, 'It''s Punky Brewster', 'US', now()), +(346, 'Runaway Island', 'AU', now()), +(347, 'Trial by Jury', 'US', now()), +(348, 'Eek! the Cat', 'US', now()), +(349, 'The Uninvited', 'UK', now()), +(350, 'Life Support', 'UK', now()), +(351, 'Open All Hours', 'UK', now()), +(352, 'Oh Madeline', 'US', now()), +(353, 'A Many Splintered Thing', 'UK', now()), +(354, 'Going Straight', 'UK', now()), +(355, 'Between The Lines', 'UK', now()), +(356, 'Bonehead Detectives of the Paleo World', 'US', now()), +(357, 'Happiness', 'UK', now()), +(358, 'Harry Enfield and Chums', 'UK', now()), +(359, 'Boney', 'AU', now()), +(360, 'Pajama Party', 'US', now()), +(361, 'Live and Kicking', 'UK', now()), +(362, 'Play for Today', 'UK', now()), +(363, 'Z Cars', 'UK', now()), +(364, 'The Day of the Triffids', 'UK', now()), +(365, 'Close and True', 'UK', now()), +(366, 'Safe at Home', 'US', now()), +(367, 'Triangle', 'UK', now()), +(368, 'Howard''s Way', 'UK', now()), +(369, 'Nothing In Common', 'US', now()), +(370, 'Crow''s Nest', 'US', now()), +(371, 'Life with Louie', 'US', now()), +(372, 'Baby I''m Back', 'US', now()), +(373, 'Arrest & Trial (2000)', 'US', now()), +(374, 'Tales of the South Seas', 'AU', now()), +(375, 'Alcoa Hour', 'US', now()), +(376, 'Goodyear Television Playhouse', 'US', now()), +(377, 'Fantastic Max', 'US', now()), +(378, 'Bangkok Hilton', 'AU', now()), +(379, 'Schlitz Playhouse of Stars', 'US', now()), +(380, 'The DuPont Show Of The Month', 'US', now()), +(381, 'Channing', 'US', now()), +(382, 'Barefoot In The Park', 'US', now()), +(383, 'Cavalcade of America', 'US', now()), +(384, 'The Overland Trail', 'US', now()), +(21057, 'Goudzoekers', 'NL', now()), +(386, 'The Play of the Week', 'US', now()), +(387, 'The Mothers-In-Law', 'US', now()), +(388, 'Chopper One', 'US', now()), +(389, 'Microsoap', 'UK', now()), +(390, 'Byker Grove', 'UK', now()), +(391, 'The Lux Video Theatre', 'US', now()), +(392, 'The Felony Squad', 'US', now()), +(393, 'Producers'' Showcase', 'US', now()), +(394, 'Movin'' On', 'US', now()), +(15527, 'Lil'' Bush: Resident of the United States', 'US', now()), +(396, 'Super Rupert', 'CA', now()), +(397, 'Noddy (1998)', 'CA', now()), +(398, 'The Best Of Broadway', 'US', now()), +(399, 'The Jane Wyman Show', 'US', now()), +(400, 'Funny Face', 'US', now()), +(401, 'The Strangerers', 'UK', now()), +(402, 'Smack the Pony', 'UK', now()), +(403, 'Liberty Street', 'CA', now()), +(404, 'Minty', 'AU', now()), +(405, 'Starting From Scratch', 'US', now()), +(406, 'Sam Benedict', 'US', now()), +(407, 'Grindl', 'US', now()), +(408, 'Westinghouse Desilu Playhouse', 'US', now()), +(409, 'These Arms of Mine', 'CA', now()), +(410, 'The Panel', 'AU', now()), +(411, 'Alcoa Premiere', 'US', now()), +(412, 'Death Valley Days', 'US', now()), +(413, 'Sky King', 'US', now()), +(414, 'Tombstone Territory', 'US', now()), +(415, 'New Attitude', 'US', now()), +(416, 'Lucas Tanner', 'US', now()), +(417, 'Big John, Little John', 'US', now()), +(418, 'Hawk', 'US', now()), +(419, 'Straightaway', 'US', now()), +(420, 'Arrest and Trial', 'US', now()), +(421, 'On The Up', 'UK', now()), +(422, 'Porridge', 'UK', now()), +(423, 'Peak Practice', 'UK', now()), +(424, 'Paul Merton in Galton & Simpson''s...', 'UK', now()), +(425, 'Stay Lucky', 'UK', now()), +(426, 'The Two Ronnies', 'UK', now()), +(427, 'The Liver Birds', 'UK', now()), +(428, 'Quack Pack', 'US', now()), +(429, 'The Ann Sothern Show', 'US', now()), +(430, 'The Likely Lads', 'UK', now()), +(431, 'Steptoe and Son', 'UK', now()), +(432, 'Where The Action Is', 'US', now()), +(433, 'Outriders', 'AU', now()), +(14705, 'Mästerverket', 'SE', now()), +(435, 'Waynehead', 'US', now()), +(436, 'Kraft Television Theatre (1947)', 'US', now()), +(437, 'Man Against Crime', 'US', now()), +(438, 'The Armstrong Circle Theatre', 'US', now()), +(439, 'The Lieutenant', 'US', now()), +(440, 'Just Good Friends', 'UK', now()), +(441, 'Small & Frye', 'US', now()), +(442, 'The Road West', 'US', now()), +(16982, 'A Pillow Case of Mystery', 'HK', now()), +(444, 'Big Wave Dave''s', 'US', now()), +(445, 'The Pulitzer Prize Playhouse', 'US', now()), +(446, 'The Littlest Hobo (1979)', 'CA', now()), +(447, 'Jackson''s Wharf', 'NZ', now()), +(448, 'Kraft Suspense Theatre', 'US', now()), +(449, 'Mr. Broadway', 'US', now()), +(450, '3 Friends and Jerry', 'UK', now()), +(451, 'The Miraculous Mellops', 'AU', now()), +(452, 'StarStreet', 'UK', now()), +(453, 'Fear', 'US', now()), +(454, 'Monkey', 'JP', now()), +(455, 'The Chamber', 'US', now()), +(456, 'Tinsel Town', 'UK', now()), +(457, 'Saddle Rash', 'US', now()), +(458, 'Hey Landlord', 'US', now()), +(459, 'The Judy Garland Show', 'US', now()), +(460, 'The Book Group', 'UK', now()), +(461, 'Home (AU)', 'AU', now()), +(462, 'The Sweet Spot', 'US', now()), +(463, 'The Outcasts (US)', 'US', now()), +(464, 'A Horseman Riding By', 'UK', now()), +(465, 'The Last Train', 'UK', now()), +(466, 'Stacey Stone', 'UK', now()), +(467, 'Introducing Gary Petty', 'AU', now()), +(468, 'The Games (AU)', 'AU', now()), +(469, 'Full Frontal', 'AU', now()), +(470, 'Shotgun Slade', 'US', now()), +(471, 'Second Time Around (UK)', 'UK', now()), +(472, 'Keep It in the Family (1980)', 'UK', now()), +(473, 'Pop Years', 'UK', now()), +(474, 'The Adventures of Skippy', 'AU', now()), +(475, 'Arabian Knights', 'US', now()), +(476, 'Mother Love', 'UK', now()), +(477, 'Café Americain', 'US', now()), +(478, 'Sketch Pad', now(), now()), +(479, 'Tuesday Night Titans', 'US', now()), +(480, 'The New Phil Silvers Show', 'US', now()), +(481, 'Take the High Road', 'UK', now()), +(482, 'Spitting Image', 'UK', now()), +(483, 'The David Essex Showcase', 'UK', now()), +(484, 'Boys from the Blackstuff', 'UK', now()), +(485, 'Not Only... But Also', 'UK', now()), +(486, 'Spatz', 'UK', now()), +(487, 'Stella Street', 'UK', now()), +(488, 'The Home and Family Show', 'US', now()), +(489, 'Slice of Life', 'US', now()), +(21910, 'Guardians of Luna', 'US', now()), +(491, 'Steve Donovan, Western Marshall', 'US', now()), +(492, 'Record of Lodoss War', 'JP', now()), +(493, 'Cos', 'US', now()), +(495, 'Tales of the Texas Rangers', 'US', now()), +(496, 'TV Nation', 'US', now()), +(497, 'Zoboomafoo', 'US', now()), +(498, 'Russian Roulette', 'US', now()), +(499, 'Jack of Hearts', 'UK', now()), +(500, 'Wild & Crazy Kids', 'US', now()), +(501, 'Weirdsister College', 'UK', now()), +(502, 'Hazell', 'UK', now()), +(503, 'No Strings (1974)', 'UK', now()), +(504, 'The Shillingbury Tales', 'UK', now()), +(18806, 'Horne And Corden', 'UK', now()), +(506, 'Dossa and Joe', 'UK', now()), +(507, 'Two Faces West', 'US', now()), +(508, 'About Face', 'UK', now()), +(509, 'Hootenanny', 'US', now()), +(510, 'Mike and Angelo', 'UK', now()), +(21089, 'Beyond Chance (2006)', 'CA', now()), +(512, 'The Young Lawyers', 'US', now()), +(513, 'The Interns', 'US', now()), +(514, 'Division 4', 'AU', now()), +(515, 'A Kind of Loving', 'UK', now()), +(516, 'Roger Roger', 'UK', now()), +(517, 'Union Pacific', 'US', now()), +(518, 'Dangerous Assignment', 'US', now()), +(519, 'Don''t Eat the Neighbours', 'UK', now()), +(520, 'The Dream Team', 'US', now()), +(521, 'Extreme Dinosaurs', 'US', now()), +(522, 'It''s Only TV But I Like It', 'UK', now()), +(523, 'The Magician (1999)', 'US', now()), +(524, 'The Micro Ventures', now(), now()), +(525, 'The Monroes (1995)', 'US', now()), +(526, 'Wichita Town', 'US', now()), +(527, 'The Wrangler', 'US', now()), +(528, 'Nightingales (UK)', 'UK', now()), +(529, 'Office Gossip', 'UK', now()), +(530, 'P.R.', 'CA', now()), +(531, 'Preston Front', 'UK', now()), +(532, 'Valley of the Dinosaurs', 'US', now()), +(533, 'Scotland Yard', 'UK', now()), +(534, 'Tandarra', 'AU', now()), +(535, 'Totally Hoops', 'US', now()), +(536, 'Circus of the Stars', 'US', now()), +(537, 'Changing Rooms (UK)', 'UK', now()), +(538, 'Egoli: Place Of Gold', 'ZA', now()), +(539, 'Jane', 'UK', now()), +(540, 'Revelations (UK)', 'UK', now()), +(541, 'McCready and Daughter', 'UK', now()), +(542, 'Harold and the Purple Crayon', 'US', now()), +(543, 'Your All American College Show', 'US', now()), +(544, 'Tiswas', 'UK', now()), +(545, 'Moon and Son', 'UK', now()), +(546, 'On Common Ground', 'US', now()), +(547, 'The Experiment', 'UK', now()), +(548, 'TNA Pay-Per-View', 'US', now()), +(549, 'A.J.''s Time Travelers', 'US', now()), +(550, 'Bug Juice', 'US', now()), +(551, 'Tall Tales and Legends', 'US', now()), +(552, 'Under the Umbrella Tree', 'CA', now()), +(553, 'The Morecambe & Wise Show', 'UK', now()), +(554, 'Cardcaptor Sakura', 'JP', now()), +(555, 'Washingtoon', 'US', now()), +(556, 'Brass Eye', 'UK', now()), +(557, 'Big Train', 'UK', now()), +(558, 'The Railway Children (1968)', 'UK', now()), +(6716, 'Close To Home', 'US', now()), +(560, 'Shipmates (US)', 'US', now()), +(561, 'The Savages', 'UK', now()), +(562, 'The Eddie Cantor Comedy Theatre', 'US', now()), +(563, 'The Magic Basket', 'US', now()), +(564, 'Kath & Kim (AU)', 'AU', now()), +(21579, 'Hero Corp', 'FR', now()), +(566, 'Victoria Wood', 'UK', now()), +(567, 'WWE Confidential', 'US', now()), +(568, 'Campus Cops', 'US', now()), +(569, 'That Peter Kay Thing', 'UK', now()), +(570, 'The Tomorrow People (1992)', 'UK', now()), +(571, 'Out of Tune', 'UK', now()), +(572, 'Harry Enfield''s Brand Spanking New Show', 'UK', now()), +(573, 'Daisy Daisy', 'UK', now()), +(574, 'RI:SE', 'UK', now()), +(575, 'WWE The Bottom Line', 'US', now()), +(576, 'WWE After Burn', 'US', now()), +(23099, 'Modern Love', 'US', now()), +(578, 'Supply and Demand', 'UK', now()), +(579, 'Mister Roberts', 'US', now()), +(580, 'The Last Resort (US)', 'US', now()), +(581, 'The Martha Raye Show', 'US', now()), +(582, 'Late World with Zach', 'US', now()), +(583, 'Crank Yankers', 'US', now()), +(584, 'Varsity Blues', 'US', now()), +(585, 'Ready Steady Go!', 'UK', now()), +(586, 'Short Cuts', 'AU', now()), +(587, 'The Big Comfy Couch', 'CA', now()), +(588, 'I Love Mummy', 'CA', now()), +(589, 'The World of David the Gnome', 'ES', now()), +(590, 'Captain Scarlet and the Mysterons', 'UK', now()), +(14666, 'Vampire Secrets', 'US', now()), +(592, 'Party Wagon', 'US', now()), +(593, 'Defenders of the Earth', 'US', now()), +(594, 'Power Stone', 'CA', now()), +(595, 'Fireball XL5', 'UK', now()), +(596, 'Rollerjam', 'US', now()), +(597, 'Super Special Double Dare', 'US', now()), +(598, 'Dark Season', 'UK', now()), +(599, 'Bulman', 'UK', now()), +(600, 'Mataku', 'NZ', now()), +(11114, 'Dragon Hunters', 'FR', now()), +(602, 'X', 'JP', now()), +(603, 'Three''s a Crowd (2000)', 'US', now()), +(604, 'N-List', 'UK', now()), +(605, 'Whammy! The All-New Press Your Luck', 'US', now()), +(606, 'Hollywood Showdown', 'US', now()), +(607, 'Greed (US)', 'US', now()), +(608, 'Gladiators', 'UK', now()), +(609, 'The Bobby Heenan Show', 'US', now()), +(610, 'Robotix', 'US', now()), +(611, 'Sectaurs', 'US', now()), +(612, 'Beyond the Glory', 'US', now()), +(613, 'Father Dear Father', 'UK', now()), +(614, 'Initial D', 'JP', now()), +(615, 'Great Pretenders', 'US', now()), +(616, 'Looking for Love: Bachelorettes in Alaska', 'US', now()), +(617, 'Legends of the Super-Heroes', 'US', now()), +(618, 'Animal Crackers', 'CA', now()), +(619, 'The Hunted', 'US', now()), +(620, 'Celeb', 'UK', now()), +(621, '''orrible', 'UK', now()), +(622, 'What Would You Do?', 'US', now()), +(623, 'Terrahawks', 'UK', now()), +(624, 'Mike, Lu & Og', 'US', now()), +(625, 'The Andy Williams Show (1962)', 'US', now()), +(626, 'The Andy Williams Show (1969)', 'US', now()), +(627, 'Skwids', now(), now()), +(628, 'Rockface', 'UK', now()), +(629, 'Movie House', 'US', now()), +(630, 'The Croc Files', 'AU', now()), +(632, 'Look at the State We''re In!', 'UK', now()), +(633, 'At Last the 1948 Show', 'UK', now()), +(634, 'The Strange Legacy of Cameron Cruz', 'US', now()), +(635, 'Seven Little Monsters', 'US', now()), +(636, 'Old Tom', 'AU', now()), +(637, 'Sam and Max Freelance Police', 'US', now()), +(638, 'Totally in Tune', 'US', now()), +(639, 'Sir Bernard''s Stately Homes', 'UK', now()), +(640, 'Lady Chatterley''s Stories', 'US', now()), +(641, 'Castle Haven', 'UK', now()), +(642, 'John Safran''s Music Jamboree', 'AU', now()), +(644, 'G Gundam (US)', 'AJ', now()), +(645, 'TVography', 'US', now()), +(14689, 'The Russell Brand Show', 'UK', now()), +(647, 'BTX', 'JP', now()), +(648, 'Cutey Honey', 'JP', now()), +(649, 'The Legacy of Reginald Perrin', 'UK', now()), +(650, 'Edward and Mrs Simpson', 'UK', now()), +(651, 'Psychos', 'UK', now()), +(652, 'The Adventures of Lano and Woodley', 'AU', now()), +(653, 'The Wind in the Willows (UK)', 'UK', now()), +(654, 'All Gas and Gaiters', 'UK', now()), +(655, 'I Bet You Will', 'US', now()), +(656, 'Flame of Recca', 'JP', now()), +(657, 'WXO Wrestling', 'US', now()), +(658, 'Bramwell', 'UK', now()), +(659, 'Hot Metal', 'UK', now()), +(660, 'Strange Report', 'UK', now()), +(661, 'Young Lions', 'AU', now()), +(662, 'AWF Warriors of Wrestling', 'US', now()), +(663, 'Junior High', 'US', now()), +(664, 'Sci Squad', 'US', now()), +(665, 'The Huggabug Club', 'US', now()), +(666, 'Check It Out', 'CA', now()), +(667, 'A Bit of Fry & Laurie', 'UK', now()), +(668, 'Poldark', 'UK', now()), +(669, 'I, Claudius', 'UK', now()), +(670, 'Other People''s Children', 'UK', now()), +(671, 'Exposure', 'US', now()), +(672, 'Rank', 'US', now()), +(673, '¡Mucha Lucha!', 'US', now()), +(674, 'Meet the Marks', 'US', now()), +(675, 'Forever', 'UK', now()), +(676, 'My Dad''s the Prime Minister', 'UK', now()), +(677, 'I''m a Celebrity, Get Me Out of Here! (UK)', 'UK', now()), +(678, 'Believe Nothing', 'UK', now()), +(679, 'Hot Wheels', 'US', now()), +(680, 'Lenny Henry in Pieces', 'UK', now()), +(681, 'National Velvet', 'US', now()), +(682, 'The Head', 'US', now()), +(683, 'Joe 90', 'UK', now()), +(684, 'Snow Queen', 'CA', now()), +(685, 'WCW WorldWide', 'US', now()), +(686, 'Walking With Beasts', 'UK', now()), +(687, 'Walking with Dinosaurs', 'UK', now()), +(688, 'The Secret Service', 'UK', now()), +(689, 'Kratts'' Creatures', 'US', now()), +(690, 'Timeline', 'US', now()), +(691, 'In Search of Ancient Ireland', 'US', now()), +(692, 'Let''s Bowl', 'US', now()), +(693, 'Joe Bash', 'US', now()), +(694, 'The Ranch', 'CA', now()), +(695, 'The House That Jack Built', 'UK', now()), +(696, '30 Seconds to Fame', 'US', now()), +(697, 'Rockpoint P.D.', 'CA', now()), +(698, 'Littl'' Bits', 'JP', now()), +(699, 'One Hit Wonders', 'US', now()), +(701, 'Unwrapped', 'US', now()), +(702, 'The Biz', 'UK', now()), +(703, 'Up & Coming', 'US', now()), +(704, 'Freewheelers', 'UK', now()), +(705, 'The Greatest', 'US', now()), +(706, 'The Chinese Detective', 'UK', now()), +(707, 'Being April', 'UK', now()), +(708, 'House Invaders', 'UK', now()), +(709, 'Asylum', 'UK', now()), +(710, 'Any Time Now', 'UK', now()), +(711, 'Making the Cut', 'CA', now()), +(712, 'River City', 'UK', now()), +(713, 'JBVO', 'US', now()), +(714, 'Popstars: The Rivals', 'UK', now()), +(715, 'White Teeth', 'UK', now()), +(716, 'Jam', 'UK', now()), +(717, 'Fist of Fun', 'UK', now()), +(718, 'The Toxic Crusaders', 'US', now()), +(719, 'Mad Jack the Pirate', 'US', now()), +(720, 'Invasion of the Hidden Cameras', 'US', now()), +(721, 'The Brothers', 'UK', now()), +(722, 'The Adventures of Spin and Marty', 'US', now()), +(723, 'The Last Resort (UK)', 'UK', now()), +(724, 'Play with Me Sesame', 'US', now()), +(725, 'Lost on Earth', 'US', now()), +(726, 'Love, Hate and Joy', 'US', now()), +(727, 'Contest Searchlight', 'US', now()), +(728, 'Heart and Soul', 'KE', now()), +(729, 'LOL: Laugh out Loud', 'UK', now()), +(730, 'Olliver''s Adventures', 'CA', now()), +(731, 'Comic Remix', 'US', now()), +(732, 'The Young Doctors', 'AU', now()), +(733, 'Tom Snyder', 'US', now()), +(734, 'Tightrope (US)', 'US', now()), +(735, 'Out of the Blue (UK)', 'UK', now()), +(736, 'Noel''s House Party', 'UK', now()), +(737, 'Going Wild with Jeff Corwin', 'US', now()), +(738, 'Me and My Girl', 'UK', now()), +(739, 'Daft Planet', 'CA', now()), +(20686, 'Trivial Pursuit: America Plays', 'US', now()), +(741, 'Hellsing (JP)', 'JP', now()), +(742, 'Revolutionary Girl Utena', 'JP', now()), +(743, 'The Irresponsible Captain Tylor', 'JP', now()), +(744, 'Angel Sanctuary', 'JP', now()), +(745, 'Tribes', 'US', now()), +(746, 'Commander Cork', 'US', now()), +(747, 'Maktar', 'US', now()), +(748, 'Longhair & Doubledome', 'US', now()), +(749, 'Comic Groove', 'US', now()), +(750, 'Coronado 9', 'US', now()), +(751, 'Riding High', 'NZ', now()), +(752, 'Bowler', 'UK', now()), +(753, 'Secret Bodyguard', now(), now()), +(12664, 'Morangos com Açúcar', 'PT', now()), +(755, 'Date with the Angels', 'US', now()), +(756, 'The Bluffers', 'NL', now()), +(758, 'The Saturday Night Armistice', 'UK', now()), +(759, 'Grady', 'US', now()), +(760, 'WMAC Masters', 'US', now()), +(761, 'Do Not Adjust Your Set', 'UK', now()), +(762, 'Saturday Supercade', 'US', now()), +(763, 'Legends Of The Hidden Temple', 'US', now()), +(764, '"A" for Andromeda (1961)', 'UK', now()), +(765, 'Fat Cow Motel', 'AU', now()), +(766, 'Tracey McBean', 'AU', now()), +(767, 'Phoenix Nights', 'UK', now()), +(768, 'Ocean Avenue', 'SE', now()), +(769, 'Fort Boyard', 'UK', now()), +(770, 'The Paradise Club', 'UK', now()), +(771, 'Two Thousand Acres of Sky', 'UK', now()), +(772, 'Banzai', 'UK', now()), +(773, 'The Plucky Duck Show', 'US', now()), +(774, 'Ace Lightning', 'CA', now()), +(775, 'BattleTech', 'US', now()), +(776, 'Saturday Disney', 'AU', now()), +(777, 'Wacko', 'US', now()), +(778, 'Moville Mysteries', 'CA', now()), +(779, 'SPYnet', 'CA', now()), +(780, 'Bracken', 'IE', now()), +(781, 'The Steven Banks Show', 'US', now()), +(782, 'Brideshead Revisited', 'UK', now()), +(783, 'Forensic Files', 'US', now()), +(784, 'Futurecast', 'UK', now()), +(785, 'Judge John Deed', 'UK', now()), +(786, 'Milkman', now(), now()), +(787, 'Center Stage', 'US', now()), +(788, 'Maggie... At Home With', 'AU', now()), +(789, 'Elvira''s Movie Macabre', 'US', now()), +(790, 'SoulTaker', 'JP', now()), +(791, 'I''m a Celebrity, Get Me Out of Here! (US)', 'US', now()), +(792, 'Fushigi Yuugi', 'JP', now()), +(793, 'The Sean Cullen Show', 'CA', now()), +(794, 'Out of Sight', 'UK', now()), +(795, 'Operation Junkyard', 'US', now()), +(796, 'Journey to the Center of the Earth', 'US', now()), +(7997, 'Match Game (1998)', 'US', now()), +(798, 'Maple Town Story', 'JP', now()), +(799, 'Wedding Peach', 'JP', now()), +(800, 'Bachelors Walk', 'IE', now()), +(801, 'Sharpe', 'UK', now()), +(802, 'How to Survive a Marriage', 'US', now()), +(803, 'American Gladiators (1989)', 'US', now()), +(804, 'Chiller', 'UK', now()), +(805, 'McDonald''s Young Entertainers', 'NZ', now()), +(806, 'The Eleventh Hour (AU)', 'AU', now()), +(807, 'Cannonball', 'CA', now()), +(808, 'Oliver Twist (1999)', 'UK', now()), +(809, 'The Eleventh Hour (CA)', 'CA', now()), +(810, 'Sharman', 'UK', now()), +(811, 'Horace and Tina', 'AU', now()), +(812, 'Custer''s Last Stand-Up', 'UK', now()), +(813, 'The Riordans', 'IE', now()), +(814, 'Worst Case Scenarios', 'US', now()), +(815, 'Outside Edge', 'UK', now()), +(816, 'Bootleg', 'UK', now()), +(817, 'Love Thy Neighbour (UK)', 'UK', now()), +(818, 'Run, Buddy, Run', 'US', now()), +(819, 'The Veil', 'US', now()), +(820, 'The Sanford Arms', 'US', now()), +(821, 'Daniel Deronda', 'UK', now()), +(822, 'Little Muppet Monsters', 'US', now()), +(823, 'Arjuna', 'JP', now()), +(824, 'Patrick Kielty Almost Live!', 'UK', now()), +(825, 'Band Of Gold', 'UK', now()), +(826, 'Scratch + Burn', 'US', now()), +(827, 'Chaser Non-Stop News Network', 'AU', now()), +(828, 'Strange Paradise', 'CA', now()), +(829, 'The Super', 'US', now()), +(830, 'Designers'' Challenge', 'US', now()), +(831, 'Come Outside', 'UK', now()), +(832, 'The Dreamstone', 'UK', now()), +(833, 'Marsupilami', 'US', now()), +(834, 'Uh-oh!', 'CA', now()), +(835, 'Carry on Laughing', 'UK', now()), +(836, 'Sykes', 'UK', now()), +(837, 'Ultraman: The Ultimate Hero', 'US', now()), +(838, 'Theodore Tugboat', 'CA', now()), +(839, 'Welcher and Welcher', 'AU', now()), +(840, 'Korg: 70,000 B.C.', 'US', now()), +(841, 'FM Nation', 'US', now()), +(842, 'Hyper Police', 'JP', now()), +(843, 'Battle Force: Andromeda', 'US', now()), +(844, 'Ninja Cadets', 'JP', now()), +(845, 'Magic Knight Rayearth', 'JP', now()), +(846, 'The Righteous Apples', 'US', now()), +(847, 'Scaredy Camp', 'US', now()), +(848, 'Fancy Lala', 'JP', now()), +(849, 'Peep Show', 'UK', now()), +(850, 'Runaway Bay', 'UK', now()), +(851, 'My Living Doll', 'US', now()), +(14694, 'Frosty''s Winter Wonderland', 'US', now()), +(853, 'Roman Holidays', 'US', now()), +(854, 'Avenger Penguins', 'UK', now()), +(855, 'The Groovenians', 'US', now()), +(856, 'Vets in Practice', 'UK', now()), +(857, 'Something Stupid', 'AU', now()), +(858, 'James Bond, Jr.', 'US', now()), +(860, 'TV Land Legends: The 60 Minutes Interviews', 'US', now()), +(861, 'Raw Toonage', 'US', now()), +(862, 'Inhumanoids', 'US', now()), +(863, 'A Flame in the Wind', 'US', now()), +(864, 'The Blobheads', 'CA', now()), +(865, 'Wild West', 'UK', now()), +(866, 'Stan the Man', 'UK', now()), +(867, 'Bless This House (UK)', 'UK', now()), +(868, 'El Hazard', 'JP', now()), +(869, 'Inside TV Land', 'US', now()), +(870, 'Arc the Lad', 'JP', now()), +(871, 'Bad Cop, Bad Cop', 'AU', now()), +(872, 'The River (1988)', 'UK', now()), +(873, 'Cutting It', 'UK', now()), +(874, 'Is Harry On The Boat', 'UK', now()), +(875, 'Nice Guy Eddie', 'UK', now()), +(876, 'Bellbird', 'AU', now()), +(877, 'Noir (US)', 'AJ', now()), +(878, 'The Magic Roundabout', 'UK', now()), +(879, 'Max and Ruby', 'CA', now()), +(880, 'Boogiepop Phantom', 'JP', now()), +(881, 'Vandread (US)', 'AJ', now()), +(882, 'tlc', 'UK', now()), +(884, 'Suzy''s World', 'NZ', now()), +(885, 'The Queens Nose', 'UK', now()), +(886, 'The Wild House', 'UK', now()), +(887, 'The Real McCoy', 'UK', now()), +(888, 'Welcome To Eltingville', 'US', now()), +(889, 'Master Keaton', 'JP', now()), +(890, 'Brain PowerD', 'JP', now()), +(891, 'Cutter to Houston', 'US', now()), +(892, 'Born Sloppy', 'UK', now()), +(893, 'Star Dates', 'US', now()), +(894, 'Popstars: Ireland', 'IE', now()), +(895, 'The Vacant Lot', 'CA', now()), +(896, 'Suspicion', 'US', now()), +(897, 'Almost Live!', 'US', now()), +(898, 'Aquila', 'UK', now()), +(899, 'Crossroads (2003)', 'UK', now()), +(900, 'Sesame Park', 'CA', now()), +(901, 'Groundling Marsh', 'CA', now()), +(902, 'SlamBall', 'US', now()), +(903, 'Final Justice with Erin Brockovich', 'US', now()), +(904, 'Solid Gold Hits', 'US', now()), +(905, 'The Big Arvo', 'AU', now()), +(906, 'Spine Chillers', 'UK', now()), +(907, 'Children of the Stones', 'UK', now()), +(908, 'Play of the Month', 'UK', now()), +(909, 'The Wednesday Play', 'UK', now()), +(910, 'In Loving Memory', 'UK', now()), +(911, 'The Maxx', 'US', now()), +(912, 'The DuPont Show of the Week', 'US', now()), +(913, 'Dino Babies', 'CA', now()), +(914, 'The New Adventures of Black Beauty', 'UK', now()), +(915, 'Star of the Family', 'US', now()), +(916, 'Weinerville', 'US', now()), +(917, 'Please Sir !', 'UK', now()), +(918, 'Gadget Boy and Heather', 'US', now()), +(919, 'Chuck Finn', 'AU', now()), +(920, 'Having It Off', 'UK', now()), +(921, 'Clochemerle', 'UK', now()), +(922, 'Thirty-Minute Theatre', 'UK', now()), +(923, 'Starting Out (UK)', 'UK', now()), +(924, 'Paddington Bear', 'UK', now()), +(925, 'Chewin'' The Fat', 'UK', now()), +(926, 'Eat My Shorts', 'AU', now()), +(927, 'The Dream Team with Annabelle and Michael', 'US', now()), +(928, 'Bernard''s Watch', 'UK', now()), +(929, 'Comedy Playhouse', 'UK', now()), +(930, 'Eco-Challenge', 'US', now()), +(931, 'Code Name: Foxfire', 'US', now()), +(932, 'Detective School', 'US', now()), +(933, 'Kingston: Confidential', 'US', now()), +(934, 'One in a Million', 'US', now()), +(935, 'Absolutely', 'UK', now()), +(936, 'The FBI Files', 'US', now()), +(937, 'History Bites', 'CA', now()), +(938, 'The Contender (1980)', 'US', now()), +(939, 'A Mind To Kill', 'UK', now()), +(940, 'Ivan the Terrible', 'US', now()), +(941, 'Legmen', 'US', now()), +(942, 'Hey Monie!', 'US', now()), +(943, 'The Onedin Line', 'UK', now()), +(944, 'Celebrity Boxing', 'US', now()), +(945, 'Ryan', 'AU', now()), +(946, 'The Karen Dunbar Show', 'UK', now()), +(947, 'Almost There!', 'US', now()), +(948, 'Pongwiffy', 'UK', now()), +(949, '.hack//SIGN (JP)', 'JP', now()), +(950, 'Escape from Experiment Island', 'US', now()), +(952, 'The Wrong Coast', 'CA', now()), +(12249, 'Karen''s Song', 'US', now()), +(954, 'Mr. Bogus', 'US', now()), +(955, '13 Demon Street', 'SE', now()), +(956, 'Patrol Boat', 'AU', now()), +(957, 'Marion and Geoff', 'UK', now()), +(958, 'Telephone Time', 'US', now()), +(959, 'Chobits', 'JP', now()), +(960, 'Bobby Dazzler', 'AU', now()), +(961, 'Rentaghost', 'UK', now()), +(962, 'Red Serge', 'CA', now()), +(963, 'Strassman', 'NZ', now()), +(964, 'Boarding House: North Shore', 'US', now()), +(965, 'The Awful Truth', 'US', now()), +(966, 'The Family (US)', 'US', now()), +(967, 'Thriller (UK)', 'UK', now()), +(968, 'Kraft Television Theatre (1953)', 'US', now()), +(969, 'Dance Fever', 'US', now()), +(970, 'The Cambridge Spies', 'UK', now()), +(971, 'The Funkhousers', 'US', now()), +(972, 'Teknoman', 'AJ', now()), +(973, 'Whirlybirds', 'US', now()), +(974, 'Are You Hot?', 'US', now()), +(975, '20 Things to Do Before You''re 30', 'UK', now()), +(976, 'Beulah', 'US', now()), +(977, 'Big Urban Myth Show', 'US', now()), +(978, 'Matinee Theater', 'US', now()), +(979, 'Hunter (2003)', 'US', now()), +(980, 'To Serve Them All My Days', 'UK', now()), +(21912, 'The Many Adventures of Mr. Mailman', 'US', now()), +(982, 'SpaceCats', 'US', now()), +(983, 'Fruits Basket', 'JP', now()), +(984, 'The Immigrants', 'US', now()), +(985, 'Harry Enfield''s Television Programme', 'UK', now()), +(986, 'Skithouse', 'AU', now()), +(987, 'You''re On! (1985)', 'US', now()), +(988, 'George Shrinks', 'US', now()), +(989, 'Thunderbirds 2086', 'JP', now()), +(990, 'Ulysses 31', 'FR', now()), +(991, 'Dr. Finlay''s Casebook', 'UK', now()), +(992, 'No Bananas', 'UK', now()), +(993, 'William and Mary', 'UK', now()), +(21898, 'Spaanse Droom, De', 'NL', now()), +(995, 'An American in Canada', 'CA', now()), +(997, 'Wavelength', now(), now()), +(998, 'Phoenix (AU)', 'AU', now()), +(999, 'The Peter Principle', 'UK', now()), +(1000, 'Our World', 'US', now()), +(1001, 'Too Young to Go Steady', 'US', now()), +(1002, 'Strange But True', 'UK', now()), +(1003, 'Ed Stone Is Dead', 'UK', now()), +(1004, 'Gerhard Reinke''s Wanderlust', 'US', now()), +(16636, 'Barbara Mandrell and the Mandrell Sisters', 'US', now()), +(1006, 'Hardware', 'UK', now()), +(1007, 'Skirts', 'AU', now()), +(1008, 'Comedy Now', 'CA', now()), +(1009, 'Offenders', 'UK', now()), +(1010, 'Happening ''68', 'US', now()), +(16900, 'Color Correction', 'US', now()), +(1012, 'Rubbadubbers', 'UK', now()), +(1013, 'Miami Sands', 'KE', now()), +(1014, 'Girls in Love', 'UK', now()), +(1015, 'American Muscle Car', 'US', now()), +(1016, 'Gold Trails and Ghost Towns', 'CA', now()), +(1017, 'American Juniors', 'US', now()), +(1018, 'Macross 7', 'JP', now()), +(1019, 'Baby Felix', 'JP', now()), +(1020, 'Mushrambo (JP)', 'JP', now()), +(1021, 'Sentimental Journey', 'JP', now()), +(1022, 'Comic Party', 'JP', now()), +(1023, 'Burn It', 'UK', now()), +(15206, 'Hey! Hey! Hey! Music Champ', 'JP', now()), +(1026, 'Fresh Fields', 'UK', now()), +(1027, 'Comedy Inc. (US)', 'US', now()), +(1028, 'Steel Angel Kurumi', 'JP', now()), +(1029, 'The Secret Life of Toys', 'US', now()), +(1030, 'Infinite Ryvius (US)', 'AJ', now()), +(1031, 'Project ARMS', 'JP', now()), +(1032, 'Mr. Personality', 'US', now()), +(1033, 'Hey, Joel!', 'US', now()), +(1034, 'Lavender Castle', 'UK', now()), +(1035, 'Harry Hill''s TV Burp', 'UK', now()), +(1036, 'Golden Boy (JP)', 'JP', now()), +(1037, 'Miracle Girls', 'JP', now()), +(1038, 'Shadow Skill', 'JP', now()), +(1039, 'Moo Wop', now(), now()), +(1040, 'Stingray (1964)', 'UK', now()), +(1041, 'The Murder Game', 'UK', now()), +(1042, 'Angelic Layer', 'JP', now()), +(1043, 'Gate Keepers', 'JP', now()), +(1044, 'Haunted Junction', 'JP', now()), +(1045, 'Princess Nine', 'JP', now()), +(1046, 'Tokyo Underground', 'JP', now()), +(1047, 'Virus Buster Serge', 'JP', now()), +(1048, 'Paradise Hotel', 'US', now()), +(1049, 'Visions', 'US', now()), +(1050, 'Racket Squad', 'US', now()), +(1051, 'IMX', 'CA', now()), +(1053, 'His and Her Circumstances', 'JP', now()), +(1054, 'Legend of Basara', 'JP', now()), +(1055, 'Doggy Fizzle Televizzle', 'US', now()), +(1056, 'Excel Saga (US)', 'AJ', now()), +(1057, 'D*A*A*S Kapital', 'AU', now()), +(1058, 'Hand Maid May', 'JP', now()), +(25091, 'Star Académie (CA)', 'CA', now()), +(1060, 'Kiddy Grade', 'JP', now()), +(14567, 'Gokusen (2002)', 'JP', now()), +(1062, 'Oni', now(), now()), +(1063, 'SM Girls Saber Marionette R', 'JP', now()), +(1064, 'Vandread (JP)', 'JP', now()), +(1065, 'Noozles', 'JP', now()), +(1066, 'Grease Monkeys', 'UK', now()), +(1067, 'Dynomutt, Dog Wonder', 'US', now()), +(1068, 'Slam Dunk', 'JP', now()), +(1069, 'Silent Mobius', 'JP', now()), +(1070, 'Gash', 'UK', now()), +(7998, 'The Arsenio Hall Show', 'US', now()), +(1072, 'Knife Edge', 'UK', now()), +(1073, 'The Court of Last Resort', 'US', now()), +(1074, 'The Ruff & Ready Show', 'US', now()), +(1075, 'Mr Benn', 'UK', now()), +(1076, 'King Rollo', 'UK', now()), +(22145, 'When Animals Strike', 'US', now()), +(1078, 'The Bozo Show', 'US', now()), +(1079, 'The Chuck McCann Show', 'US', now()), +(1080, 'The Cops', 'UK', now()), +(1081, 'The Little Rascals', 'US', now()), +(1082, 'The Cartoon Zoo', now(), now()), +(14683, 'Fairies', 'UK', now()), +(1084, 'The Dick Tracy Cartoon Show', 'US', now()), +(14656, 'Trial by Choir', 'US', now()), +(1086, 'It Ain''t Half Hot Mum', 'UK', now()), +(1087, 'When the Boat Comes In', 'UK', now()), +(14665, 'Festival of Family Classics', 'US', now()), +(1089, 'In Melbourne Tonight', 'AU', now()), +(1090, 'Fractured Flickers', 'US', now()), +(1091, 'The Dick Clark Show', 'US', now()), +(16979, 'Brenner', 'US', now()), +(1093, 'Surf Girls', 'US', now()), +(1094, 'The Aunty Jack Show', 'AU', now()), +(1095, 'Harry Hill', 'UK', now()), +(1096, 'Fruit Fancies', 'UK', now()), +(1097, 'Caesar''s Hour', 'US', now()), +(1098, 'Tony Orlando and Dawn', 'US', now()), +(1099, 'The Singing Detective', 'UK', now()), +(1100, 'The Big Impression', 'UK', now()), +(1101, 'The Basil Brush Show', 'UK', now()), +(1102, 'The Wheels on the Bus', 'UK', now()), +(1103, 'Kingswood Country', 'AU', now()), +(1104, 'Kimba the White Lion', 'AJ', now()), +(1105, 'The Belzer Connection', 'US', now()), +(1106, 'Cave Kids', 'US', now()), +(1107, 'Train 48', 'CA', now()), +(32358, 'World Olympic Dreams', 'UK', now()), +(1109, 'Nadia of the Mysterious Seas', 'JP', now()), +(1110, 'Bambaloo', 'AU', now()), +(1111, 'The Water Margin', 'UK', now()), +(1112, 'Dead Famous', 'UK', now()), +(1113, 'Birdz', 'CA', now()), +(1114, 'Out There (AU)', 'AU', now()), +(1115, 'French Fields', 'UK', now()), +(1116, 'Saint Tail (US)', 'AJ', now()), +(1117, 'Trash To Cash', 'US', now()), +(1118, 'Unscrewed with Martin Sargent', 'US', now()), +(1119, 'Who''s Your Daddy?', 'US', now()), +(1120, 'The Adventures of T-Rex', 'US', now()), +(1121, 'Stupid Behavior Caught on Tape', 'US', now()), +(1122, 'Anything for Love', 'US', now()), +(1123, 'Freaky Stories', 'CA', now()), +(1124, 'The Metric Marvels', 'US', now()), +(1125, 'Dual! Parallel Trouble Adventures', 'JP', now()), +(1126, 'Champions of the Wild', 'US', now()), +(1127, 'Jerry Coleman', 'US', now()), +(1128, 'Extreme Engineering', 'US', now()), +(1129, 'Wizadora', 'UK', now()), +(1130, 'Food Fight (US)', 'US', now()), +(1131, 'Worst Best Friends', 'AU', now()), +(1132, 'Micallef Tonight', 'AU', now()), +(1133, 'RahXephon', 'JP', now()), +(1134, 'Generator Gawl', 'JP', now()), +(1135, 'Switched!', 'US', now()), +(1136, 'Gasaraki', 'JP', now()), +(1137, 'HeartBeat (US)', 'US', now()), +(1138, 'Please Teacher!', 'JP', now()), +(1139, 'Photon', now(), now()), +(1140, 'Kikader the Animation', 'US', now()), +(1141, 'GirlStuff/BoyStuff', 'CA', now()), +(1142, 'Gravitation', 'JP', now()), +(1143, 'Monkey Dust', 'UK', now()), +(1144, 'Fat Dog Mendoza', 'US', now()), +(1145, 'Forever Summer with Nigella', 'UK', now()), +(1146, 'Wish You Were Here', 'US', now()), +(1147, 'Silverwing', 'CA', now()), +(1148, 'Quick Draw McGraw', 'US', now()), +(1149, 'Shazzan!', 'US', now()), +(1150, 'Don''t Blame Me', 'AU', now()), +(1152, 'Wally Gator', 'US', now()), +(21578, 'True Crime Authors', 'US', now()), +(1154, 'Hillbilly Bears', 'US', now()), +(1155, 'Paw Paws', now(), now()), +(1156, 'Peter Potamus and His Magic Flying Balloon', 'US', now()), +(1157, 'Lippy the Lion', 'US', now()), +(1158, 'Boys and Girls', 'UK', now()), +(1159, 'Sea of Souls', 'UK', now()), +(1160, 'Love in the 21st Century', 'UK', now()), +(1161, 'Weekend Warriors', 'US', now()), +(1162, 'The Lionhearts', 'US', now()), +(1163, 'Sexy Urban Legends', 'US', now()), +(1164, 'Lancelot Link, Secret Chimp', 'US', now()), +(14757, 'The Cat in the Hat', 'US', now()), +(11239, 'Saxondale', 'UK', now()), +(1167, 'Strawberry Eggs', 'JP', now()), +(1168, 'The Martian Chronicles', 'US', now()), +(1169, 'Stark', 'UK', now()), +(1170, 'FortySomething', 'UK', now()), +(1171, 'Battle Athletes Victory', 'JP', now()), +(1172, 'City Confidential', 'US', now()), +(1173, 'The Jasper Carrott Trial', 'UK', now()), +(1174, 'Canned Carrott', 'UK', now()), +(1175, 'Forever Green', 'UK', now()), +(1176, 'Look Around You', 'UK', now()), +(1177, 'The Dating Experiment', 'US', now()), +(1178, 'Evil Con Carne', 'US', now()), +(1179, 'Hi-de-Hi!', 'UK', now()), +(1180, 'Redcap', 'UK', now()), +(1181, 'It''s The Wolf', 'US', now()), +(1182, 'Trevor''s World of Sport', 'UK', now()), +(1183, 'The Adventurer (AU)', 'UK', now()), +(1184, 'Animal Kidding', 'US', now()), +(1185, 'Timeblazers', 'CA', now()), +(1186, 'Kamikaze Kaitou Jeanne', 'JP', now()), +(1187, 'Touch (JP)', 'JP', now()), +(1188, 'Rainbow', 'UK', now()), +(1189, 'Mina and the Count', 'US', now()), +(1190, 'Beg, Borrow & Deal', 'US', now()), +(1191, 'The Savage Dragon', 'US', now()), +(1192, 'Argento Soma', 'JP', now()), +(1193, 'Azumanga Daioh', 'JP', now()), +(1194, 'Zone of the Enders', 'JP', now()), +(1195, 'Tantei Gakuen Q', 'JP', now()), +(1196, 'Zenki', 'JP', now()), +(1197, 'Cyber Team in Akihabara', 'AJ', now()), +(1198, 'Eden''s Bowy', 'JP', now()), +(1199, 'Dragon Slayer', 'JP', now()), +(1201, 'Hakkenden: Legend of the Dog Warriors', 'JP', now()), +(1202, 'The Tweenies', 'UK', now()), +(1203, 'Gadget and the Gadgetinis', 'US', now()), +(1204, 'Stratos 4', 'JP', now()), +(1205, 'K.O. Beast', now(), now()), +(1206, 'Four on the Floor', 'CA', now()), +(1207, 'Patlabor', 'JP', now()), +(1209, 'I Hate This House', 'UK', now()), +(1210, 'Gunbuster', 'JP', now()), +(14724, 'Five Minutes More', 'AU', now()), +(1212, 'City Hunter', 'JP', now()), +(1213, 'Di Gi Charat Nyo', 'JP', now()), +(7995, 'Munich: Mossad''s Revenge', 'UK', now()), +(1215, 'Bo'' Selecta!', 'UK', now()), +(1217, 'Tijuana Toads', 'US', now()), +(1218, 'Aura Battler Dunbine', 'JP', now()), +(1220, 'Rune Soldier', 'JP', now()), +(1221, 'Najica Blitz Tactics', 'JP', now()), +(1222, 'Neo Ranga', 'JP', now()), +(1223, 'Posh Nosh', 'UK', now()), +(1224, 'Hoze Hounds', now(), now()), +(1225, 'Pretear', 'JP', now()), +(1226, 'Super Doll Licca-chan', 'JP', now()), +(1227, 'Orphen', 'JP', now()), +(1228, 'You''re Under Arrest!', 'JP', now()), +(1229, 'Sol Bianca: The Legacy', 'JP', now()), +(1230, 'Bomberman Bidaman Bakugaiden', 'JP', now()), +(1231, 'Cat Girl Nuku Nuku', 'JP', now()), +(1232, 'Arcade Gamer Fubuki', 'JP', now()), +(1233, 'Lost (2001)', 'US', now()), +(1234, 'Prospects', 'UK', now()), +(1235, 'Eyes Down', 'UK', now()), +(1236, 'Uranium', 'US', now()), +(1237, 'Serious and Organised', 'UK', now()), +(1238, 'Kimagure Orange Road', 'JP', now()), +(14568, 'Hana Yori Dango', 'JP', now()), +(14782, 'Vet Safari', 'UK', now()), +(1241, 'Tri-Zenon', now(), now()), +(1242, 'Killer Net', 'UK', now()), +(1243, 'Blue Murder (UK)', 'UK', now()), +(1244, 'The Beany and Cecil Show', 'US', now()), +(1245, 'The Bob Clampett Show', 'US', now()), +(1246, 'The Daffy Duck Show', 'US', now()), +(1247, 'The Tex Avery Show', 'US', now()), +(1248, 'The New Yankee Workshop', 'US', now()), +(14785, 'Britain & Ireland''s Next Top Model', 'UK', now()), +(1250, 'The Ant and The Aardvark', 'US', now()), +(1251, 'The Expert', 'UK', now()), +(1252, 'Thursday''s Child', 'UK', now()), +(1253, 'The Witch''s Daughter', 'UK', now()), +(1254, 'So Downtown', 'US', now()), +(1255, 'Get Your Own Back', 'UK', now()), +(1256, 'Blott on the Landscape', 'UK', now()), +(1257, 'Enchanted Musical Playhouse', 'US', now()), +(1258, 'Storybook Cinema', 'US', now()), +(1259, '1MMs', 'US', now()), +(1260, 'Mental Block', 'CA', now()), +(1261, 'Karaoke', 'UK', now()), +(1262, 'Please Twins!', 'JP', now()), +(1263, 'I Love the ''70s', 'US', now()), +(1264, 'State V.', 'US', now()), +(1265, 'Tying the Knot', 'US', now()), +(1266, 'Head 2 Toe', 'US', now()), +(1267, 'Revolver (2004)', 'UK', now()), +(1268, 'The Worst Week of My Life (UK)', 'UK', now()), +(1269, 'Annette', 'US', now()), +(1271, 'BBC Television Shakespeare', 'UK', now()), +(1272, 'Pure 24', 'UK', now()), +(1273, 'The Final Solution', 'UK', now()), +(1274, 'Chowdaheads', 'US', now()), +(1276, 'Crashburn', 'AU', now()), +(1277, 'The Baldy Man', 'UK', now()), +(1278, 'Pig City', 'CA', now()), +(1279, 'Harry & Cosh', 'UK', now()), +(1280, 'Street Sharks', 'US', now()), +(1281, 'Hustle', 'UK', now()), +(1282, 'Schamlos', 'DE', now()), +(1283, 'Rosemary and Thyme', 'UK', now()), +(14669, 'Corkscrewed: The Wrath of Grapes', 'US', now()), +(1285, 'Performing As', 'US', now()), +(1286, 'Sweet Medicine', 'UK', now()), +(1287, 'Macross', 'JP', now()), +(1288, '.hack//DUSK', 'JP', now()), +(1289, 'You''re A Star', 'IE', now()), +(1290, 'Eyes of Amyphysto', 'US', now()), +(1291, 'Shane (UK)', 'UK', now()), +(1292, 'Zero One (JP)', 'JP', now()), +(1293, 'Second Generation', 'UK', now()), +(1294, 'Terri McIntyre - Classy Bitch', 'UK', now()), +(1295, 'Kenny vs. Spenny', 'CA', now()), +(1296, 'Mischief City', 'CA', now()), +(1297, 'Good Eats', 'US', now()), +(1298, 'Canterbury Tales (2003)', 'UK', now()), +(1299, 'Shake, Rattle, and Roll', 'US', now()), +(1300, 'The New Adventures Of Ocean Girl', 'AU', now()), +(1301, 'Starcade', 'US', now()), +(1302, 'The Letter People', 'US', now()), +(1303, 'Wild West C.O.W. Boys of Moo Mesa', 'US', now()), +(1304, 'Celebrities Under Pressure', 'UK', now()), +(1305, 'The Pilot Show', 'UK', now()), +(1306, 'National Geographic Explorer', 'US', now()), +(1307, 'The Vanishing Man', 'UK', now()), +(1308, 'Grass', 'UK', now()), +(1309, 'Generation Jets', 'US', now()), +(1310, 'Kleo the Misfit Unicorn', 'CA', now()), +(1311, 'Mike''s Super-Short Show', 'US', now()), +(14731, 'Sound Unlimited (AU)', 'AU', now()), +(1313, 'SuperGALS', 'AJ', now()), +(1314, 'Legend of the Mystical Ninja Goemon', 'JP', now()), +(1315, 'Born and Bred (2002)', 'UK', now()), +(1316, 'Rude Dog and the Dweebs', 'US', now()), +(1317, 'NZ Idol', 'NZ', now()), +(1318, 'The Secret Of Lost Creek', 'US', now()), +(1319, 'Star', 'UK', now()), +(1320, 'Family (UK)', 'UK', now()), +(1321, 'Insektors', 'UK', now()), +(1322, 'Bodger and Badger', 'UK', now()), +(1323, 'Never the Twain', 'UK', now()), +(21903, 'Mantracker', 'CA', now()), +(1325, 'Make Way For Noddy', 'UK', now()), +(1326, 'Lost Universe (US)', 'AJ', now()), +(1327, 'Coca Cola RTR', 'NZ', now()), +(1328, 'Celebrity Treasure Island', 'NZ', now()), +(1329, 'Popstars (NZ)', 'NZ', now()), +(1330, 'We''ll Meet Again', 'UK', now()), +(1332, 'Chilly Beach', 'CA', now()), +(1333, 'Gardening by the Yard', 'US', now()), +(1334, 'Ultra Maniac', 'JP', now()), +(1335, 'Adventure Island', 'AU', now()), +(1336, 'Gungrave', 'JP', now()), +(1337, 'Jane Goldman Investigates', 'UK', now()), +(1338, 'Beverly Hills Vet', 'US', now()), +(1339, 'Blue Seed 2: Beyond', 'JP', now()), +(1340, 'Seven Wonders of the Industrial World', 'UK', now()), +(1341, 'The Clinic', 'IE', now()), +(1342, 'I, Detective', 'US', now()), +(1343, 'Drive Shaft', 'US', now()), +(1344, 'Rising Stars', 'AU', now()), +(1345, '$40 a Day', 'US', now()), +(1346, 'Fake Out', 'US', now()), +(1347, 'D''Myna Leagues', 'CA', now()), +(1348, 'Sunshine (US)', 'US', now()), +(1349, 'Meteor Garden', 'TW', now()), +(1350, 'Paris (US)', 'US', now()), +(1351, 'Two''s Company (1975)', 'UK', now()), +(1352, 'Essential Poems', 'UK', now()), +(1355, 'Gunsmith Cats', 'US', now()), +(1356, 'Rick Mercer Report', 'CA', now()), +(1357, 'Shirt Tales', 'US', now()), +(1358, 'Slings & Arrows', 'CA', now()), +(1359, 'Mix It Up', 'US', now()), +(1360, 'TUGS', 'UK', now()), +(1361, 'Billy the Cat', 'US', now()), +(1362, 'Samurai Deeper Kyo', 'JP', now()), +(1363, 'House Rules (1998)', 'US', now()), +(1364, 'Sutherland''s Law', 'UK', now()), +(1365, 'Lady Lovelylocks and the Pixietails', 'US', now()), +(1366, 'Give My Head Peace', 'UK', now()), +(1367, 'With a Little Help from My Friends', 'UK', now()), +(1368, 'The Vic Damone Show', 'US', now()), +(1369, 'Banner of the Stars (JP)', 'JP', now()), +(1370, 'Absolute Power', 'UK', now()), +(1371, 'Living in TV Land', 'US', now()), +(1372, 'Tenshi na Konamaiki', 'JP', now()), +(1373, 'Coming to the Stage', 'US', now()), +(1374, 'Fergus McPhail', 'AU', now()), +(1375, 'The Sleepover Club', 'AU', now()), +(1376, '11 Somerset', 'CA', now()), +(1377, 'Between the Sheets', 'UK', now()), +(1378, 'The Dooley and Pals Show', 'US', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(1379, 'Legacy of the Silver Shadow', 'AU', now()), +(1380, 'How the Stars Get Hot', 'US', now()), +(1381, 'Glynis', 'US', now()), +(1382, 'Ivor the Engine (1958)', 'UK', now()), +(1383, 'SuperSecret TV Formulas', 'US', now()), +(1384, 'Billy (1979)', 'US', now()), +(14659, 'The Plot to Kill: Ronald Reagan', 'US', now()), +(15578, 'For The Rest Of Your Life', 'UK', now()), +(1387, 'Dragon Warrior', 'JP', now()), +(1388, 'New Cutey Honey', 'JP', now()), +(1389, 'Charles II: The Power and the Passion', 'UK', now()), +(1390, 'Pugwall', 'AU', now()), +(1391, 'Mad About Alice', 'UK', now()), +(1392, 'That Was the Week We Watched', 'UK', now()), +(1393, 'Dead Lawyers', 'US', now()), +(1394, 'Blue''s Room', 'US', now()), +(1395, 'Bloomers', 'UK', now()), +(1396, 'Eckhart', 'CA', now()), +(1397, 'Down to Earth (2000)', 'UK', now()), +(1398, 'Oruchuban Ebichu', 'JP', now()), +(1399, 'Kanon', 'JP', now()), +(1400, 'Amazing Nurse Nanako', 'JP', now()), +(1401, 'Weiß Kreuz', 'JP', now()), +(1402, 'Samurai Girl: Real Bout High School', 'JP', now()), +(1403, 'Star Ocean EX', 'JP', now()), +(1404, 'Ping-Pong Club', 'JP', now()), +(1405, 'Blue Submarine No. 6', 'AJ', now()), +(1406, 'Di Gi Charat', 'JP', now()), +(1407, 'Dragon Half', 'JP', now()), +(1408, 'Major League Wrestling: Underground TV', 'US', now()), +(1409, 'Love Scar', now(), now()), +(1410, 'Delta State', 'CA', now()), +(1411, 'Gravion', 'JP', now()), +(1412, 'Puppet Master Sakon', 'JP', now()), +(1413, 'ECW Pay-Per-View', 'US', now()), +(1414, 'Home (UK)', 'UK', now()), +(1415, 'Joshua Jones', 'UK', now()), +(1416, 'Fireman Sam', 'UK', now()), +(1417, 'Shattered (2004)', 'UK', now()), +(1418, 'Maya the Bee', 'JP', now()), +(11238, 'TV total', 'DE', now()), +(1420, 'Soul Hunter', 'AJ', now()), +(1421, 'Noah & Saskia', 'UK', now()), +(1422, 'Burn Up eXcess', 'AJ', now()), +(15152, 'MAGIC', 'KR', now()), +(14695, 'Inside The UFC', 'US', now()), +(1425, 'Dweezil and Lisa', 'US', now()), +(1426, 'Legend of Galactic Heroes', 'JP', now()), +(1428, 'Tennis no Oujisama', 'JP', now()), +(1429, 'Pita Ten', 'JP', now()), +(1431, 'Nightwalker', 'JP', now()), +(1432, 'Bedsitcom', 'UK', now()), +(1433, 'Wild Arms: TV', 'JP', now()), +(1434, 'Fake-A-Date', 'US', now()), +(1435, 'The Will', 'US', now()), +(1436, 'Zen & Buster', 'US', now()), +(1437, 'The Ghost Hunter', 'UK', now()), +(1438, 'Sir Gadabout: The Worst Knight In The Land', 'UK', now()), +(1439, 'Ugetme', 'UK', now()), +(1440, '.hack//Liminality', 'JP', now()), +(1441, 'Jungle De Ikou', 'JP', now()), +(1442, 'Ultraman', 'JP', now()), +(1443, 'Full Metal Panic Fumoffu', 'JP', now()), +(1444, 'Godannar', 'JP', now()), +(1445, 'éX-Driver', 'JP', now()), +(1446, 'Mirage of Blaze', 'JP', now()), +(1447, 'The Fosters', 'UK', now()), +(1448, 'World Idol', 'US', now()), +(1449, 'Madballs', 'US', now()), +(1450, '3-2-1 Contact', 'US', now()), +(1451, 'The Great Space Coaster', 'US', now()), +(1452, 'Mathica''s Mathshop', 'CA', now()), +(1453, 'Read All About It!', 'CA', now()), +(1454, 'Sky Commanders', 'US', now()), +(1455, 'Salty''s Lighthouse', 'US', now()), +(1456, 'Woodie''s World', 'US', now()), +(1457, 'NFL Game of the Week', 'US', now()), +(1458, 'Human Cargo', 'CA', now()), +(1459, 'Ricky''s Room', 'CA', now()), +(14723, 'Grandma Got Run Over by a Reindeer', 'US', now()), +(1462, 'Freshman Year', 'US', now()), +(1463, 'Secret Service', 'US', now()), +(1464, 'DNA²', 'JP', now()), +(1465, 'The Archie Show', 'US', now()), +(1466, 'The Archie Comedy Hour', 'US', now()), +(1467, 'The Groovie Goolies', 'US', now()), +(1468, 'The New Archie/Sabrina Hour', 'US', now()), +(1469, 'Zoobilee Zoo', 'US', now()), +(1470, 'The Dave Gorman Collection', 'UK', now()), +(1471, 'Squirt', 'NZ', now()), +(1472, 'The Voyage of the Mimi', 'US', now()), +(1473, 'Math Wise', 'US', now()), +(1474, 'In Other Words', 'US', now()), +(1475, 'Funky Phantom', 'US', now()), +(1476, 'Future Boy Conan', 'JP', now()), +(1477, 'Leo the Lion', 'AJ', now()), +(1478, 'Scream Team', 'UK', now()), +(1479, 'The Bozo Super Sunday Show', 'US', now()), +(1480, 'Memphis Wrestling', 'US', now()), +(1481, 'The Animal Show', 'US', now()), +(1483, 'Boys Over Flowers', 'JP', now()), +(1484, 'Petshop of Horrors', 'JP', now()), +(1485, 'Early Doors', 'UK', now()), +(1486, 'Home Farm Twins', 'UK', now()), +(1487, 'The John Henson Project', 'US', now()), +(1488, 'College Hill', 'US', now()), +(1489, 'Doctors & Nurses', 'UK', now()), +(1490, 'Chocky', 'UK', now()), +(1491, 'Todd TV', 'US', now()), +(1492, 'NWA Wildside TV', 'US', now()), +(1493, 'Full Moon wo Sagashite', 'JP', now()), +(7999, 'The Woodwright''s Shop', 'US', now()), +(1495, 'The Hoobs', 'UK', now()), +(1496, 'Jubei-chan', 'JP', now()), +(1497, 'TNA Xplosion', 'US', now()), +(1498, 'Boohbah', 'UK', now()), +(1499, 'Hollywood Justice', 'US', now()), +(1501, 'Alien Defender Geo-Armor, Kishin Corps', 'JP', now()), +(1502, 'Lazer Tag Academy', 'US', now()), +(1503, 'Passage of the Stars: Birth', 'JP', now()), +(1504, 'Custard Pie', 'CA', now()), +(1505, 'Milton the Monster', 'US', now()), +(1506, 'Gulf Playhouse', 'US', now()), +(1507, 'Saint Seiya (JP)', 'JP', now()), +(1508, 'Fireflies', 'AU', now()), +(1509, 'Garth Marenghi''s Darkplace', 'UK', now()), +(1510, 'Ministry of Mayhem', 'UK', now()), +(1511, 'SuperSecret Movie Rules', 'US', now()), +(1513, 'USA Championship Wrestling', 'US', now()), +(14715, 'Film Fun', 'CA', now()), +(1515, 'The JR Digs Show', 'CA', now()), +(1516, 'Pit Pony', 'CA', now()), +(1517, 'Directors Commentary', 'UK', now()), +(1518, 'Hi-5', 'AU', now()), +(27283, 'Kore wa Zombie desuka?', 'JP', now()), +(14696, 'Bel''s Boys', 'IE', now()), +(1521, 'The Wacky World Of Tex Avery', 'US', now()), +(1522, 'Moondial', 'UK', now()), +(1523, 'Portal', 'CA', now()), +(1524, 'Jasper Carrott: Back to the Front', 'UK', now()), +(1525, 'Lost Treasures of NFL Films', 'US', now()), +(1526, 'The Littlest Groom', 'US', now()), +(1527, 'The American Frontier', 'US', now()), +(1528, 'Back to Reality', 'UK', now()), +(1529, 'Dramarama', 'UK', now()), +(1530, 'Straight Plan for the Gay Man', 'US', now()), +(1531, 'The Kinetic Karnival of Jearl Walker', 'US', now()), +(1532, 'The Science Alliance', 'CA', now()), +(1533, 'Chemical Equilibrium', 'CA', now()), +(1534, 'Jaws and Claws', 'US', now()), +(1535, 'Sound fX', 'US', now()), +(1536, 'I''m Famous and Frightened', 'UK', now()), +(1537, 'Kagaku Ninja-Tai Gatchaman', 'JP', now()), +(13630, 'Knight Errant Limited', 'UK', now()), +(1539, 'Keeping Mum', 'UK', now()), +(1540, 'The Impressionable Jon Culshaw', 'UK', now()), +(1541, 'Carried by the Wind - Tsukikage Ran', 'JP', now()), +(1542, 'Busy Buses', 'UK', now()), +(1543, 'Finger Tips', 'UK', now()), +(1544, 'The Arrows Show', 'UK', now()), +(1545, 'Quadratics', 'CA', now()), +(1546, 'Beast Wars Neo', 'JP', now()), +(1547, 'Crashbox', 'CA', now()), +(1548, 'Crash Test', 'US', now()), +(1549, 'No Angels', 'UK', now()), +(1550, 'Nick Arcade', 'US', now()), +(1551, 'The Manly Bee', 'CA', now()), +(1552, 'Corneil & Bernie', 'FR', now()), +(1553, 'Dragons, Wagons & Wax', 'US', now()), +(1554, 'Trash', 'US', now()), +(1555, 'The Big Read', 'UK', now()), +(1556, 'Fur TV', 'UK', now()), +(1557, 'Switched Up!', 'US', now()), +(1558, 'Catterick', 'UK', now()), +(1559, 'The Space Explorers', 'US', now()), +(1560, 'Young Robin Hood', 'US', now()), +(1561, 'Mr Don & Mr George', 'UK', now()), +(1562, 'Massive Landmarks Of The Twentieth Century', 'UK', now()), +(1563, 'Monday Night Football', 'US', now()), +(1564, 'The Borderers', 'UK', now()), +(1565, 'GED on TV', 'US', now()), +(1566, 'Learn to Read', 'US', now()), +(1567, 'Great Hotels', 'US', now()), +(1568, 'It Figures', 'US', now()), +(1569, 'Tenchi Muyo! GXP (US)', 'AJ', now()), +(1570, 'Mr. & Mrs. North', 'US', now()), +(1571, 'Skeleton Warriors', 'US', now()), +(1572, 'Joyce Meyer', 'US', now()), +(1573, 'Hancock''s Half Hour', 'UK', now()), +(1574, 'Whatever Happened to the Likely Lads', 'UK', now()), +(1575, 'Lifegame', 'US', now()), +(1576, 'Harmony Street', 'US', now()), +(1577, 'Little Bear', 'CA', now()), +(1578, 'The Adventures of Dudley the Dragon', 'CA', now()), +(1579, 'Something in the Air', 'AU', now()), +(1580, 'The Rez', 'CA', now()), +(1581, 'Twisted Tales (AU)', 'AU', now()), +(1582, 'Number 96', 'AU', now()), +(1583, 'Homicide', 'AU', now()), +(1584, 'Pizza', 'AU', now()), +(1585, 'Street Legal (NZ)', 'NZ', now()), +(1586, 'The Crocodile Hunter', 'AU', now()), +(1587, 'Four Star Playhouse', 'US', now()), +(1588, 'The Detectives', 'UK', now()), +(1589, 'Fury', 'US', now()), +(1590, 'Destry', 'US', now()), +(1591, 'Cop Files', 'US', now()), +(1592, 'Till Death Us Do Part (UK)', 'UK', now()), +(1593, 'Eisenhower & Lutz', 'US', now()), +(1594, 'The Dave Thomas Comedy Show', 'US', now()), +(1595, 'WWF Excess', 'US', now()), +(1596, 'Angela Anaconda', 'CA', now()), +(1597, 'ECW on TNN', 'US', now()), +(1598, 'ECW Hardcore TV', 'US', now()), +(1599, 'Bucky O''Hare and the Toad Wars', 'US', now()), +(1600, 'Mom, P.I.', 'CA', now()), +(1601, 'The Thin Man', 'US', now()), +(1602, 'Love in a Cold Climate (1980)', 'UK', now()), +(1603, 'Oxbridge Blues', 'UK', now()), +(1604, 'Hearts and Bones', 'UK', now()), +(1605, 'Babes in the Wood', 'UK', now()), +(1606, 'City Central', 'UK', now()), +(1607, 'Upright Citizens Brigade', 'US', now()), +(1608, 'SCTV Network 90', 'CA', now()), +(1609, 'Birdman and the Galaxy Trio', 'US', now()), +(1610, 'Ultraviolet', 'UK', now()), +(1611, 'Mystery Of Black Rose Castle', 'AU', now()), +(1612, 'Curiosity Shop', 'US', now()), +(1613, 'Leap Years', 'US', now()), +(1614, 'Parenthood (1990)', 'US', now()), +(1615, 'Yes, Prime Minister', 'UK', now()), +(1616, 'Raw FM', 'AU', now()), +(13325, 'Catch Hand', 'UK', now()), +(1618, 'The Bots Master', 'US', now()), +(1619, 'Hurricanes', 'US', now()), +(1620, 'The Cutting Edge', 'US', now()), +(13323, 'No Cloak - No Dagger', 'UK', now()), +(1622, 'Gormenghast', 'UK', now()), +(1623, 'Bridget Loves Bernie', 'US', now()), +(1624, 'Bedtime', 'UK', now()), +(1625, 'The Cattanooga Cats', 'US', now()), +(1626, 'Bang! Bang! It''s Reeves and Mortimer', 'UK', now()), +(1627, 'Dark Shadows (1991)', 'US', now()), +(1628, 'Watercolour Challenge', 'UK', now()), +(1629, 'For the People (1965)', 'US', now()), +(1630, 'Ranma ½', 'JP', now()), +(1631, 'Video Girl Ai', 'JP', now()), +(1632, 'Foreign Objects', 'CA', now()), +(1633, 'Black Harbour', 'CA', now()), +(1634, 'Taking the Falls', 'CA', now()), +(1635, 'Quads', 'CA', now()), +(1636, 'Princess Sissi', 'CA', now()), +(1637, 'Blazing Dragons', 'CA', now()), +(1638, 'Beverly Hills Teens', 'US', now()), +(1639, 'Today''s Special', 'CA', now()), +(1640, 'The Completely Mental Misadventures of Ed Grimley', 'US', now()), +(1641, 'Second City TV', 'CA', now()), +(1642, 'The David Steinberg Show', 'US', now()), +(1643, 'The Complete and Utter History of Britain', 'UK', now()), +(1644, 'The Goodies', 'UK', now()), +(1645, 'Saber Marionette J (US)', 'AJ', now()), +(1646, 'Please Save My Earth', 'JP', now()), +(1647, 'Monster Squad', 'US', now()), +(1648, 'Backberner', 'AU', now()), +(1649, 'Paradise Beach', 'AU', now()), +(1650, 'Fire', 'AU', now()), +(1651, 'Many Happy Returns', 'US', now()), +(1652, 'Taz-Mania', 'US', now()), +(1653, 'The Sweeney', 'UK', now()), +(1654, 'Sk8', 'US', now()), +(1655, 'Dockside', 'AU', now()), +(1656, 'The Gavin Crawford Show', 'CA', now()), +(1657, 'Busted', 'US', now()), +(1658, 'Kwik Witz', 'US', now()), +(1659, 'Bondi Banquet', 'AU', now()), +(1660, 'Not the Nine O''Clock News', 'UK', now()), +(1661, 'Parkinson (1998)', 'UK', now()), +(1662, 'Ned''s Newt', 'CA', now()), +(1663, 'C Bear and Jamal', 'US', now()), +(1664, 'Northwood', 'CA', now()), +(1665, 'Some Mothers Do ''Ave ''Em', 'UK', now()), +(1666, 'My Hometown', 'CA', now()), +(1667, 'Sabrina', 'MX', now()), +(1668, 'Battle of The Planets', 'AJ', now()), +(1669, 'Cardiac Arrest', 'UK', now()), +(1670, 'A Fine Romance (1989)', 'US', now()), +(1671, 'Shining Time Station', 'US', now()), +(1672, 'Who''s Watching the Kids', 'US', now()), +(1673, 'Daktari', 'US', now()), +(1674, 'Press Your Luck', 'US', now()), +(1675, 'Moolah Beach', 'US', now()), +(1676, 'Let''s Make A Deal', 'US', now()), +(1677, 'Love Cruise: The Maiden Voyage', 'US', now()), +(14801, 'Brainwave', 'UK', now()), +(1679, 'Turn-On', 'US', now()), +(1680, 'Stickin'' Around', 'CA', now()), +(1681, 'Rolie Polie Olie', 'CA', now()), +(1682, 'Anatole', 'CA', now()), +(1683, 'Rich Man, Poor Man', 'US', now()), +(1684, 'Cold Feet (UK)', 'UK', now()), +(1685, 'Bookmice', now(), now()), +(1686, 'Mercury', 'AU', now()), +(1687, 'E Street', 'AU', now()), +(1688, 'Grass Roots', 'AU', now()), +(1689, 'Bluey', 'AU', now()), +(1690, 'You''re the One', 'US', now()), +(1691, 'Changi', 'AU', now()), +(1692, 'Who Wants to Be a Millionaire (UK)', 'UK', now()), +(1693, 'The Halls of Ivy', 'US', now()), +(1694, 'Temple Houston', 'US', now()), +(1695, 'The Charlie Horse Music Pizza', 'US', now()), +(1696, 'The Pruitts of Southampton', 'US', now()), +(1697, 'My Little Margie', 'US', now()), +(1698, 'Pistols ''n'' Petticoats', 'US', now()), +(1699, 'SportsCentury', 'US', now()), +(1700, 'When the Whistle Blows', 'US', now()), +(1701, 'The Comic Strip', 'US', now()), +(1702, 'Tutti Fruiti', 'UK', now()), +(1703, 'Street Cents', 'CA', now()), +(1704, 'The Monday Dump', 'AU', now()), +(1705, 'Club Buggery', 'AU', now()), +(1706, 'Exit 57', 'US', now()), +(1707, 'Sunburn', 'UK', now()), +(1708, 'Urban Gothic', 'UK', now()), +(1709, 'Kitty Foyle', 'US', now()), +(1710, 'Not Necessarily the News', 'US', now()), +(1711, 'The Dakotas', 'US', now()), +(1712, 'Mr. Adams and Eve', 'US', now()), +(1713, 'Operation Good Guys', 'UK', now()), +(1714, 'Gadget Boy''s Adventures in History', 'US', now()), +(1715, 'Here''s How', 'CA', now()), +(1716, 'Madeline', 'US', now()), +(1717, 'Maxie''s World', 'US', now()), +(1718, 'Wish Kids', 'US', now()), +(1719, 'Cover Up', 'US', now()), +(1720, 'Time Gentlemen Please', 'UK', now()), +(1721, 'Soldier Soldier', 'UK', now()), +(1722, 'Run for Your Life', 'US', now()), +(1723, 'Private Secretary', 'US', now()), +(1724, 'Our Private World', 'US', now()), +(1725, 'I Married Joan', 'US', now()), +(1726, 'Aaagh! It''s the Mr. Hell Show!', 'UK', now()), +(1727, 'Topper', 'US', now()), +(1728, 'Hollyweird', 'US', now()), +(1729, 'Skyways', 'AU', now()), +(1730, 'The Henderson Kids', 'AU', now()), +(1731, 'Frontier Circus', 'US', now()), +(1732, 'State Coroner', 'AU', now()), +(1733, 'Love On A Rooftop', 'US', now()), +(1734, 'The Cindy Margolis Show', 'US', now()), +(1735, 'Return to Peyton Place', 'US', now()), +(1736, 'Jason of Star Command', 'US', now()), +(1737, 'The Girl from Tomorrow', 'AU', now()), +(1738, 'Captain Gallant of the Foreign Legion', 'US', now()), +(1739, 'Web Girl', 'US', now()), +(1740, 'Masquerade', 'US', now()), +(1741, 'Brave Eagle', 'US', now()), +(1742, 'Buckskin', 'US', now()), +(1743, 'Buffalo Bill Jr.', 'US', now()), +(1744, 'The Californians', 'US', now()), +(1745, 'Casey Jones', 'US', now()), +(1747, 'Circus Boy', 'US', now()), +(1748, 'Cowboy G-Men', 'US', now()), +(1749, 'The Sandbaggers', 'UK', now()), +(1750, 'Cribb', 'UK', now()), +(1751, 'Tales of the City (US)', 'US', now()), +(1752, 'The People''s Choice', 'US', now()), +(1753, 'The Tom Ewell Show', 'US', now()), +(1754, 'Desert Rats', 'US', now()), +(1755, 'Frontier (US)', 'US', now()), +(1756, 'The Tall Man', 'US', now()), +(1757, 'The Ferals', 'AU', now()), +(1758, 'Hec Ramsey', 'US', now()), +(1759, 'Harris Against the World', 'US', now()), +(1760, 'Hotel de Paree', 'US', now()), +(1761, 'Screen Director''s Playhouse', 'US', now()), +(1762, 'The Range Rider', 'US', now()), +(1763, 'Happy Families', 'UK', now()), +(1764, 'Ted and Alice', 'UK', now()), +(1765, 'Birds of a Feather', 'UK', now()), +(1766, 'Michael Shayne', 'US', now()), +(1767, 'The Travels of Jaimie McPheeters', 'US', now()), +(1768, 'Judd for the Defense', 'US', now()), +(1769, 'Klondike', 'US', now()), +(1770, 'The Great American Quiz Show', 'US', now()), +(1771, 'Grand Slam (US)', 'US', now()), +(1772, 'Two Girls Named Smith', 'US', now()), +(1773, 'Tate', 'US', now()), +(1774, 'Justice (UK)', 'UK', now()), +(1775, '26 Men', 'US', now()), +(1776, 'The Dumplings', 'US', now()), +(1777, 'Teachers (UK)', 'UK', now()), +(1778, 'Mercy Peak', 'NZ', now()), +(1779, 'The Starland Vocal Band Show', 'US', now()), +(1780, 'The Kumars at No 42', 'UK', now()), +(1781, 'Dr. Terrible''s House of Horrible', 'UK', now()), +(1782, 'Mr Charity', 'UK', now()), +(10200, 'Halfway Home', 'US', now()), +(1784, 'Robotica', 'US', now()), +(1785, 'Chris Cross', 'UK', now()), +(1786, 'Bridges to Cross', 'US', now()), +(1787, 'The Best Times', 'US', now()), +(1788, 'Acropolis Now', 'AU', now()), +(1789, 'Dice (2001)', 'CA', now()), +(1790, 'Three for the Road', 'US', now()), +(1791, 'Game, Set, and Match', 'UK', now()), +(1792, 'The New Land', 'US', now()), +(1793, 'Freddie and Max', 'UK', now()), +(1794, 'Adrian Mole: The Cappuccino Years', 'UK', now()), +(1795, 'The Road Runner Show', 'US', now()), +(1796, 'Love Bites (NZ)', 'NZ', now()), +(1797, 'The 5th Quadrant', 'CA', now()), +(16821, 'Khan', 'US', now()), +(1799, 'Gentle Ben', 'US', now()), +(1800, 'Ruby', 'UK', now()), +(1801, 'The Nancy Walker Show', 'US', now()), +(1802, 'The Tide of Life', 'UK', now()), +(1803, 'Clocking Off', 'UK', now()), +(1804, 'Liverpool 1', 'UK', now()), +(1805, 'Hope and Glory', 'UK', now()), +(1806, 'Sex, Chips & Rock n'' Roll', 'UK', now()), +(1807, 'Children of Fire Mountain', 'NZ', now()), +(1809, 'Bread', 'UK', now()), +(1810, 'Gavilan', 'US', now()), +(1811, 'Slayers', 'JP', now()), +(1812, 'Grafters', 'UK', now()), +(1813, 'Paris (UK)', 'UK', now()), +(1814, 'Grandpa Goes to Washington', 'US', now()), +(1815, 'Robin''s Hoods', 'US', now()), +(1816, 'Eric''s World', 'CA', now()), +(1817, 'Doctors', 'UK', now()), +(1818, 'Juliet Bravo', 'UK', now()), +(1819, 'Fast Forward (AU)', 'AU', now()), +(1820, 'Shock Jock', 'AU', now()), +(1821, 'Janus', 'AU', now()), +(1822, 'Goodness Gracious Me', 'UK', now()), +(1823, 'Cold Lazarus', 'UK', now()), +(1824, 'Coogan''s Run', 'UK', now()), +(1825, 'London''s Burning', 'UK', now()), +(1826, 'Makin'' It', 'US', now()), +(1827, 'The Imogene Coca Show', 'US', now()), +(1828, 'Your Show of Shows', 'US', now()), +(1829, 'The Julie Andrews Hour', 'US', now()), +(1830, 'The Armando Iannucci Shows', 'UK', now()), +(1831, 'The Cara Williams Show', 'US', now()), +(1832, 'World of Pub', 'UK', now()), +(1833, 'The Directors', 'US', now()), +(1834, 'Kissyfur', 'US', now()), +(1835, 'Conan the Adventurer', 'US', now()), +(1836, 'Whatever Turns You On', 'CA', now()), +(1837, 'Princess Gwenevere and the Jewel Riders', 'US', now()), +(1838, 'Star Blazers (US)', 'AJ', now()), +(1839, 'The Detectives Starring Robert Taylor', 'US', now()), +(1840, 'Wait ''Til Your Father Gets Home', 'US', now()), +(1841, 'Quatermass', 'UK', now()), +(1842, 'The Bill Dana Show', 'US', now()), +(1843, 'Total Access 24/7', 'US', now()), +(1844, 'Matt Lincoln', 'US', now()), +(1845, 'The Richard Boone Show', 'US', now()), +(1846, 'Inspector Maigret', 'UK', now()), +(1847, 'Sitting Pretty', 'UK', now()), +(1848, 'Movie Surfers', 'US', now()), +(1849, 'Cro', 'US', now()), +(1850, 'Belfry Witches', 'UK', now()), +(1851, 'From the Earth to the Moon', 'US', now()), +(1852, 'The Ruth Rendell Mysteries', 'UK', now()), +(1853, 'CyberGirl', 'AU', now()), +(12760, 'Campbell Playhouse', 'US', now()), +(1855, 'Home to Roost', 'UK', now()), +(1856, 'The High Life (UK)', 'UK', now()), +(1857, 'All Together Now', 'AU', now()), +(14749, 'Kanon (2006)', 'JP', now()), +(1859, 'Dark Ages', 'UK', now()), +(1860, 'J.J. Starbuck', 'US', now()), +(1861, 'The Restless Years', 'AU', now()), +(1862, 'Viva Variety', 'US', now()), +(1863, 'This is David Harper', 'UK', now()), +(1864, 'The Ghost Busters', 'US', now()), +(1865, 'Beauty and the Beast (1996)', 'AU', now()), +(1866, 'Rideau Hall', 'CA', now()), +(1867, 'SilverHawks', 'US', now()), +(1868, 'Little Shop', 'US', now()), +(1869, 'The Sketch Show', 'UK', now()), +(1870, 'Great Big Saturday Morning', now(), now()), +(1871, 'The Bobby Vinton Show', 'CA', now()), +(1872, 'Occasional Wife', 'US', now()), +(1873, 'Hey Dad...!', 'AU', now()), +(1874, '2DTV', 'UK', now()), +(1875, 'The Nick Cannon Show', 'US', now()), +(1876, 'Dear Phoebe', 'US', now()), +(1877, 'Last of the Summer Wine', 'UK', now()), +(1878, 'Thunderbirds', 'UK', now()), +(1879, 'It''s Alive!', 'CA', now()), +(1880, 'Border Cafe', 'UK', now()), +(1881, 'The Further Adventures of SuperTed', 'UK', now()), +(1882, 'Droopy: Master Detective', 'US', now()), +(1883, 'Night and Day', 'UK', now()), +(1884, 'Timeslip', 'UK', now()), +(1885, 'Soul Train', 'US', now()), +(1886, 'Inquiring Minds', 'CA', now()), +(1887, 'The Baby Game', 'US', now()), +(1888, 'Hollyoaks', 'UK', now()), +(1889, 'Gun Shy', 'US', now()), +(1890, 'Turnabout', 'US', now()), +(1891, 'Reach for the Stars', 'US', now()), +(1892, 'Stunt Dawgs', 'US', now()), +(1893, 'North Square', 'UK', now()), +(1894, 'Extreme Gong', 'US', now()), +(1895, 'Viva Valdez', 'US', now()), +(1896, 'Beast Machines', 'US', now()), +(1897, 'Fat Friends', 'UK', now()), +(1898, 'Call Me Mister', 'UK', now()), +(1899, 'Devlin', 'US', now()), +(1900, 'Stories of the Century', 'US', now()), +(21906, 'Candy Girls', 'US', now()), +(1902, 'Beat the Geeks', 'US', now()), +(1903, 'This Hour Has 22 Minutes', 'CA', now()), +(1904, 'Front Page Challenge', 'CA', now()), +(1905, 'Maggie Briggs', 'US', now()), +(1906, 'Pay & Display', 'UK', now()), +(1907, 'The New Archies', 'US', now()), +(1908, 'The Raccoons', 'CA', now()), +(1909, 'Playing the Field', 'UK', now()), +(1910, 'Nightmare Ned', 'US', now()), +(1911, 'Riverdale', 'CA', now()), +(1912, 'Once a Hero', 'US', now()), +(1913, 'Shooting Stars', 'UK', now()), +(1914, 'WWF Livewire', 'US', now()), +(1915, 'American Family', 'US', now()), +(1916, 'Our Friends in the North', 'UK', now()), +(1917, 'Sweet Sixteen (1983)', 'UK', now()), +(1918, 'Crossroads (2001)', 'UK', now()), +(1919, 'Crossroads (1964)', 'UK', now()), +(1920, 'Flipside (AU)', 'AU', now()), +(9465, 'Jasper Carrott - Stand Up America', 'UK', now()), +(1922, 'Gypsy Girl', 'UK', now()), +(1923, 'S.W.A.L.K.', 'UK', now()), +(1924, 'Human Remains', 'UK', now()), +(1925, 'Frontier Justice', 'US', now()), +(1926, 'Western Theater', 'US', now()), +(1927, 'It''s A Miracle', 'US', now()), +(1928, 'Jonovision', 'CA', now()), +(1929, 'Roomies', 'US', now()), +(1930, 'Monstervision', 'US', now()), +(1931, 'The Sunday Comics', 'US', now()), +(1932, 'FanClub', 'US', now()), +(1933, 'Project A-ko', 'AJ', now()), +(1934, 'Celebrity Adventures', 'US', now()), +(1935, 'The Mrs Bradley Mysteries', 'UK', now()), +(1936, 'Mother and Son', 'AU', now()), +(1937, 'Tinker, Tailor, Soldier, Spy', 'UK', now()), +(1938, 'Smiley''s People', 'UK', now()), +(1939, 'Sugar and Spice', 'US', now()), +(1940, 'Ceres: Celestial Legend', 'JP', now()), +(1941, 'Angel Links', 'JP', now()), +(20828, 'The Roomies', 'US', now()), +(1943, 'Miss Marple', 'UK', now()), +(1944, 'Cobra', 'US', now()), +(1945, 'The Cramp Twins', 'UK', now()), +(1946, 'The Jury (UK)', 'UK', now()), +(1947, 'Mind Your Language', 'UK', now()), +(1948, 'Not on Your Nellie', 'UK', now()), +(1949, 'Stig of the Dump', 'UK', now()), +(1950, 'Battle Dome', 'US', now()), +(1951, 'In Sickness and In Health', 'UK', now()), +(1952, 'Women Docs', 'US', now()), +(1953, 'Caboose', 'US', now()), +(1954, 'Whirligig', 'US', now()), +(1955, 'Different and the Same', 'US', now()), +(1956, 'Square One TV', 'US', now()), +(1957, 'Meeting of Minds', 'US', now()), +(1958, 'The Puzzle Place', 'US', now()), +(1959, 'Softly, Softly', 'UK', now()), +(1960, 'Top Of The Pops (UK)', 'UK', now()), +(1961, 'Combat Missions', 'US', now()), +(1962, 'Truth Quest: California', 'US', now()), +(1963, 'Young Talent Time', 'AU', now()), +(1964, 'Chancer', 'UK', now()), +(1965, 'The Return of Shelley', 'UK', now()), +(1966, 'The Duchess of Duke Street', 'UK', now()), +(1967, 'Gloss', 'NZ', now()), +(1968, 'Solo', 'UK', now()), +(1969, 'Zoom (1999)', 'US', now()), +(21577, 'War Stories with Oliver North', 'US', now()), +(1971, 'The Pallisers', 'UK', now()), +(1972, 'Badger', 'UK', now()), +(21905, 'Dark Days in Monkey City', 'US', now()), +(21884, 'Party Down', 'US', now()), +(1975, 'The Irish R. M.', 'UK', now()), +(1976, 'Black of Life', 'CA', now()), +(1977, 'Eden (US)', 'US', now()), +(16554, 'Science of Love', 'US', now()), +(1979, 'Never Mind the Buzzcocks (US)', 'US', now()), +(1980, 'Mystery and Imagination', 'UK', now()), +(1981, 'The Ice Dream', 'AU', now()), +(1982, 'Medical Detectives', 'US', now()), +(1983, 'Ghost Story', 'US', now()), +(1984, 'The Strip (NZ)', 'NZ', now()), +(1985, 'Becoming', 'US', now()), +(1986, 'Nearest and Dearest', 'UK', now()), +(1987, 'Sponk!', 'US', now()), +(1988, 'Fun Food Frenzy', 'CA', now()), +(1989, 'The Marshal of Gunsight Pass', 'US', now()), +(1990, 'All About Me', 'UK', now()), +(1991, 'Bad Dog', 'CA', now()), +(1992, 'Angelica and Susie''s School Daze', 'US', now()), +(1993, 'Snakes and Ladders (UK)', 'UK', now()), +(1994, 'Chances', 'AU', now()), +(1995, 'Super Chicken', 'US', now()), +(1996, 'Make Your Own Kind of Music', 'US', now()), +(1997, 'Beat-Club', 'DE', now()), +(1998, 'Jay Jay The Jet Plane', 'US', now()), +(1999, 'Man Without a Gun', 'US', now()), +(2000, 'Northwest Passage', 'US', now()), +(2001, 'The Fear', 'UK', now()), +(2002, 'Joking Apart', 'UK', now()), +(2003, 'Ultimate Albums', 'US', now()), +(2004, 'The Sweet Life', 'US', now()), +(2005, 'Sugar: A Little Snow Fairy', 'JP', now()), +(2006, 'Crane', 'UK', now()), +(2007, 'Shades', 'UK', now()), +(2008, 'SAS: Are You Tough Enough?', 'UK', now()), +(2009, 'Chalk', 'UK', now()), +(2010, 'Mr Dressup', 'CA', now()), +(2011, 'Destiny Ridge', 'CA', now()), +(2012, 'Roundhouse', 'US', now()), +(2013, 'Eden (UK)', 'UK', now()), +(2014, 'The Ultimate Revenge', 'US', now()), +(2015, 'Super Dave: Daredevil for Hire', 'US', now()), +(2016, 'Dinosaucers', 'US', now()), +(2017, 'Camp Candy', 'US', now()), +(2018, 'CD:UK', 'UK', now()), +(2019, 'The Angel Files', 'AU', now()), +(2020, 'Ghost Squad', 'UK', now()), +(2021, 'Creepschool', 'CA', now()), +(2022, 'The Delphi Bureau', 'US', now()), +(2023, 'Cyderdelic', now(), now()), +(2024, 'Roobarb', 'UK', now()), +(2025, 'Noah and Nelly in...Skylark', 'UK', now()), +(2026, 'I am Not an Animal', 'UK', now()), +(2027, 'The Keith Barret Show', 'UK', now()), +(2028, 'Pulling Moves', 'UK', now()), +(2029, 'Bachelor Pad', 'US', now()), +(14660, 'The World''s Astonishing News!', 'US', now()), +(2031, 'The Twelve Kingdoms', 'JP', now()), +(2032, 'Supernatural (UK)', 'UK', now()), +(2033, 'Final Appeal: From the Files of Unsolved Mysteries', 'US', now()), +(2034, 'Pioneer Quest: A Year in the Real West', 'US', now()), +(2035, 'Camberwick Green', 'UK', now()), +(2036, 'Trumpton', 'UK', now()), +(2037, 'Eagle Riders', 'AJ', now()), +(2038, 'Murder City', 'UK', now()), +(2039, 'Big Girl''s Blouse', 'AU', now()), +(2040, 'Feather Boy', 'UK', now()), +(2041, 'Bodies', 'UK', now()), +(2042, 'DNAngel', 'JP', now()), +(2044, 'Kikaida-01', 'JP', now()), +(2045, 'Inazuman', 'JP', now()), +(2046, 'Balamory', 'UK', now()), +(15542, 'Doctor Brothers', 'KR', now()), +(2048, 'Wilmot', 'UK', now()), +(2049, 'Harry and the Wrinklies', 'UK', now()), +(18633, 'Ilusiones (compartidas)', 'AR', now()), +(2051, 'Roboroach', 'CA', now()), +(2052, 'Peep and the Big Wide World', 'US', now()), +(2053, 'Da Boom Crew', 'US', now()), +(2054, 'The Most Extreme', 'US', now()), +(2055, 'Two in Clover', 'UK', now()), +(2056, 'American Dream Derby', 'US', now()), +(2057, 'Sukeban Deka', 'JP', now()), +(2058, 'Historyonics', 'UK', now()), +(2059, 'My Life in Film', 'UK', now()), +(2060, 'Angels', 'UK', now()), +(2061, 'Spearhead', 'UK', now()), +(2062, 'First Person', 'US', now()), +(2063, 'Jinzo Ningen Kikaida', 'JP', now()), +(2064, 'The Timmy Toodles Tribute Show', 'UK', now()), +(2066, 'Tokio Private Police', 'JP', now()), +(2067, 'The Revenue Men', 'UK', now()), +(2068, 'Hamish and Andy', 'AU', now()), +(2069, 'The Koala Brothers', 'US', now()), +(2070, 'The Mysti Show', 'UK', now()), +(2071, 'I''m Still Alive', 'US', now()), +(2072, 'Gigglish Allsorts', 'UK', now()), +(2073, 'Ideal', 'UK', now()), +(2074, 'Debbie Travis'' Facelift', 'US', now()), +(2075, 'Shorties Watchin'' Shorties', 'US', now()), +(2076, 'Big Bite', 'AU', now()), +(2077, 'Omnibus', 'UK', now()), +(2078, 'We Are History', 'UK', now()), +(2079, 'Straight Dates by Gay Mates', 'UK', now()), +(2080, 'World Series of Blackjack', 'US', now()), +(15523, 'That''s Incredible! (1997)', 'US', now()), +(2082, 'Trick of the Mind', 'UK', now()), +(2083, 'The Blue Planet', 'UK', now()), +(2084, 'Life in the Freezer', 'UK', now()), +(2085, 'The Brief', 'UK', now()), +(11199, 'See No Evil: The Moors Murders', 'UK', now()), +(2087, 'Serial Killers', 'NZ', now()), +(2088, 'Life''s a Bitch', 'US', now()), +(18344, 'Relocation, Relocation', 'UK', now()), +(2090, 'Marvin the Tap-Dancing Horse', 'CA', now()), +(2091, 'Knightmare', 'UK', now()), +(2092, 'Rickety Rocket', 'US', now()), +(2093, 'TV Land Top 10', 'US', now()), +(2094, 'Comedy Inc. (CA)', 'CA', now()), +(2095, 'Gutter Ball Alley', 'CA', now()), +(2096, 'Technically Funny', now(), now()), +(2097, 'Silversun', 'AU', now()), +(2098, 'The Sooty Show', 'UK', now()), +(2099, 'Kaze No Yojimbo', 'JP', now()), +(13076, 'Kane & Abel', 'US', now()), +(2101, 'NYPD 24/7', 'US', now()), +(2102, 'The Everyday Adventures of Hannah Handleman', 'US', now()), +(8402, 'YAT Anshin! Luxury Space Tours', 'JP', now()), +(2104, 'Restoration', 'UK', now()), +(2105, 'Benny Hill', 'UK', now()), +(2106, 'Divergence Eve', 'JP', now()), +(2108, 'The Benny Hill Show (1955)', 'UK', now()), +(2109, 'Texhnolyze', 'JP', now()), +(2110, 'Close to Home (NZ)', 'NZ', now()), +(2111, 'Fangface', 'US', now()), +(2112, 'Union Jack', 'UK', now()), +(2113, 'Mahou no Princess Minky Momo', 'JP', now()), +(2114, 'Starhyke', 'UK', now()), +(2115, 'Elven Bride', 'JP', now()), +(2116, 'Dirty Sanchez', 'UK', now()), +(2117, 'Tsukihime, Lunar Legend', 'JP', now()), +(2118, 'Just for Kicks', 'US', now()), +(28869, 'The Antiques Ghost Show', 'UK', now()), +(2120, 'Chorlton and The Wheelies', 'UK', now()), +(12147, 'Robin Hood no Daiboken', 'JP', now()), +(2122, 'The Trap Door', 'UK', now()), +(2123, 'Denjin Zaboga', 'JP', now()), +(2124, 'The Secret Life of Machines', 'UK', now()), +(2125, 'Kino''s Journey', 'JP', now()), +(2126, 'Nazca', 'JP', now()), +(2127, 'Happy Lesson', 'AJ', now()), +(2128, 'The Ultimate Love Test', 'US', now()), +(2129, 'Making Waves', 'UK', now()), +(2130, 'Hell''s Kitchen (UK)', 'UK', now()), +(2131, 'Ego from Mars', 'AU', now()), +(2132, 'Maigret', 'UK', now()), +(2133, 'Rocket Robin Hood', 'CA', now()), +(2134, 'Gunparade March', 'JP', now()), +(2135, 'Sakura Wars', 'JP', now()), +(2136, 'Monster', 'JP', now()), +(2137, 'Dr. Slump 2', 'JP', now()), +(2138, 'The Toy Castle', 'CA', now()), +(2139, 'Scream Play', 'US', now()), +(2140, 'Peace Maker Kurogane', 'JP', now()), +(2141, 'Growing Pains (UK)', 'UK', now()), +(2142, 'Beauty & the Beast (1964)', 'AU', now()), +(2143, 'Crossballs', 'US', now()), +(2144, 'The Courtroom', 'UK', now()), +(2145, 'Saikano', 'JP', now()), +(2146, 'Extreme Dodgeball', 'US', now()), +(2147, 'Blankety Blanks (US)', 'US', now()), +(2148, 'Descendants of Darkness', 'JP', now()), +(2149, 'Blue Dove', 'UK', now()), +(2150, 'Daa! Daa! Daa!', 'JP', now()), +(2151, 'Shadow Star Narutaru', 'JP', now()), +(2152, 'Club Reps', 'UK', now()), +(2153, 'HPW Aggression', 'US', now()), +(2154, 'Kaput & Zösky', 'CA', now()), +(2155, 'Report to Murphy', 'US', now()), +(2156, 'There''s Something About Miriam', 'UK', now()), +(2157, 'Burned', 'US', now()), +(2158, 'Bounty Hamster', 'UK', now()), +(2160, 'The Devil Lady', 'JP', now()), +(2161, 'In a Fix', 'US', now()), +(2162, 'The Assistant', 'US', now()), +(2163, 'I Hate My Job', 'US', now()), +(2164, 'Family Business (1996)', 'US', now()), +(2165, 'The Hardy Boys (1969)', 'US', now()), +(2166, 'The Long Firm', 'UK', now()), +(2167, 'Bomberman Jetters', 'AJ', now()), +(2168, 'Whistle!', 'JP', now()), +(2169, 'Stephen Hawking''s Universe', 'UK', now()), +(2170, 'Ayane''s High Kick', now(), now()), +(2171, 'Ghost Sweeper Mikami', 'JP', now()), +(2173, 'Magic Users Club!', 'JP', now()), +(2174, 'Legendz: Yomigaeru Ryuuou Densetsu', 'JP', now()), +(2175, 'Kaleido Star', 'JP', now()), +(7994, 'Tonight', 'UK', now()), +(13623, 'Space School', 'UK', now()), +(2178, 'Holly''s Heroes', 'NZ', now()), +(2179, 'Sakura Wars 2', 'JP', now()), +(2180, 'World Famous For Dicking Around', 'UK', now()), +(2181, 'Bombshell', 'UK', now()), +(2182, 'Zero One (UK)', 'UK', now()), +(2183, 'Island at War', 'UK', now()), +(13624, 'Rob Roy', 'UK', now()), +(2185, 'The Block', 'AU', now()), +(2186, 'The Dragon Chronicles', 'AU', now()), +(2187, 'Pfish and Chip', 'US', now()), +(2188, 'Cyborg Soldier 009', 'JP', now()), +(14732, 'Right On (AU)', 'AU', now()), +(2190, 'Family Bonds', 'US', now()), +(2191, 'Moody and Pegg', 'UK', now()), +(2192, 'Dancin'' On Air', 'US', now()), +(2193, 'Missing You Already', 'UK', now()), +(2194, 'Carrie & Barry', 'UK', now()), +(2195, 'World Shut Your Mouth', 'UK', now()), +(2196, 'Shoebox Zoo', 'UK', now()), +(2197, 'Matantei Loki Ragnarok', 'JP', now()), +(2198, 'Stroker & Hoop', 'US', now()), +(2199, 'How Clean Is Your House? (US)', 'US', now()), +(2200, 'The Red Hand Gang', 'US', now()), +(2201, 'Kenyuu Densetsu Yaiba', 'JP', now()), +(14658, 'Manchild (US)', 'US', now()), +(2203, 'The Adventures of Mini-Goddess', 'JP', now()), +(2204, 'World Comedy Tour', 'US', now()), +(2205, 'Eiken', 'JP', now()), +(2206, 'The Lisa Maxwell Show', 'UK', now()), +(2207, 'Living The Dream', 'NZ', now()), +(2208, 'Bakuretsu Tenshi', 'JP', now()), +(2209, 'NY-LON', 'UK', now()), +(2210, 'Now and Then, Here and There', 'AJ', now()), +(2211, 'Rock Camp', 'CA', now()), +(20827, 'The Rock and Roll Acid Test', 'US', now()), +(2213, 'Surgical Spirit', 'UK', now()), +(2214, 'Hime Chan''s Ribbon', 'JP', now()), +(2215, 'Best Friend''s Date', 'US', now()), +(2216, 'Design Rules', 'UK', now()), +(15172, 'Concentration (1958)', 'US', now()), +(2218, 'Audition to Action', 'US', now()), +(2219, 'Requiem From The Darkness', 'JP', now()), +(2220, 'A Thing Called Love', 'UK', now()), +(2221, 'The Insiders Guide to Happiness', 'NZ', now()), +(14722, 'I Love New York', 'US', now()), +(2223, 'Ninja EX', 'US', now()), +(2224, 'Mao-chan', 'JP', now()), +(2225, 'Fandemonium', 'CA', now()), +(2226, 'Miracle''s Boys', 'US', now()), +(2227, 'Steel River Blues', 'UK', now()), +(2228, 'Watt On Earth', 'UK', now()), +(2229, 'Dante''s Cove', 'US', now()), +(2230, 'Wanna Come In?', 'US', now()), +(2231, 'Cosmos', 'US', now()), +(2232, 'The Marvel Superheroes', 'CA', now()), +(2233, 'Melody of Oblivion', 'JP', now()), +(2234, 'Madlax', 'JP', now()), +(2235, 'Mamotte Shugogetten', 'JP', now()), +(2236, 'Captain Tsubasa: Road to 2002', 'JP', now()), +(2237, 'Genshiken', 'JP', now()), +(13636, 'Stars Reunited', 'UK', now()), +(2239, 'Maburaho', 'JP', now()), +(2240, 'Someday''s Dreamers', 'JP', now()), +(7101, '60 Minutes (US)', 'US', now()), +(2242, 'Mutant League', 'US', now()), +(2243, 'Wish*a*roo Park', 'US', now()), +(2244, 'Bertha', 'UK', now()), +(13631, 'The Infamous John Friend', 'UK', now()), +(13626, 'Shadow Squad', 'UK', now()), +(2247, '1 Day With...', 'US', now()), +(2248, 'Return to River Cottage', 'UK', now()), +(2249, 'River Cottage Forever', 'UK', now()), +(2250, 'Soapography', 'US', now()), +(2251, 'Moccasin Flats', 'CA', now()), +(2252, 'Space', 'UK', now()), +(2253, 'Totally Obsessed', 'US', now()), +(2254, 'The Planets', 'UK', now()), +(2255, 'Coronation Street Family Album', 'UK', now()), +(2256, 'The House Of Bulger', 'AU', now()), +(2257, 'Oh Yeah! Cartoons', 'US', now()), +(2258, 'Popotan', 'JP', now()), +(2259, 'Sniz & Fondue', 'US', now()), +(2260, 'bro''Town', 'NZ', now()), +(2261, 'Biker Build-Off', 'US', now()), +(14692, 'Strutter', 'UK', now()), +(2263, 'The Comedy Company', 'AU', now()), +(13625, 'The Lost Planet', 'UK', now()), +(2265, 'I Dream', 'UK', now()), +(2266, 'Leader Dog', 'US', now()), +(2267, 'Weiss Kreuz Gluhen', 'JP', now()), +(2268, 'I''ll / CKBC', 'JP', now()), +(2269, 'Dr. Slump', 'JP', now()), +(2270, 'Urusei Yatsura', 'JP', now()), +(13629, 'Deadline Midnight', 'UK', now()), +(13628, 'Chosen', 'US', now()), +(13627, 'Kenilworth', 'UK', now()), +(2274, 'Secret Agent Men', 'NZ', now()), +(2275, 'The Adventures of Portland Bill', 'UK', now()), +(2276, 'Ambush Makeover', 'US', now()), +(2277, 'Battle Programmer Shirase', 'JP', now()), +(2278, 'Doraemon (1973)', 'JP', now()), +(2279, 'Vegetable Soup', 'US', now()), +(2280, 'John Safran vs. God', 'AU', now()), +(2281, 'You''ve Got A Friend', 'US', now()), +(2282, 'Killinaskully', 'IE', now()), +(2283, 'Super President', 'US', now()), +(2284, 'Trucks', 'US', now()), +(14759, 'Gerald McBoing-Boing (2005)', 'US', now()), +(2286, 'Jackie Collins Presents', 'US', now()), +(2287, 'School Rumble', 'JP', now()), +(2288, 'Naked Science', 'US', now()), +(2289, 'The Giblet Boys', 'UK', now()), +(2290, 'Murder Prevention', 'UK', now()), +(2291, 'Untold', 'US', now()), +(2292, 'Squidbillies', 'US', now()), +(2293, 'The Cassidys', 'IE', now()), +(2294, 'Hoop Days', 'JP', now()), +(2295, 'Spooks Of Bottle Bay', 'UK', now()), +(2296, 'Quest for the Bay', 'US', now()), +(2297, 'House of Clues', 'US', now()), +(2298, 'Barking (2004)', 'UK', now()), +(2300, 'The First 48', 'US', now()), +(2301, 'HELP! I''m a Teenage Outlaw', 'UK', now()), +(2303, 'Motormouth', 'US', now()), +(2304, 'The Mansion', 'US', now()), +(2305, 'Terminal City', 'CA', now()), +(2306, 'Coolman!', 'CA', now()), +(2307, 'The World of Narue', 'JP', now()), +(2308, 'Joint Custody', 'US', now()), +(18180, 'The New Adventures of Mighty Mouse and Heckle & Jeckle', 'US', now()), +(2310, 'Conviction (UK)', 'UK', now()), +(2311, 'The Super Milk-Chan Show', 'AJ', now()), +(2312, 'Overman King Gainer', 'JP', now()), +(2313, 'Hey! Spring of Trivia', 'US', now()), +(14560, 'Cold Blood Warm Heart', 'HK', now()), +(2315, 'Jump Cuts', 'US', now()), +(2316, 'Outlaws (UK)', 'UK', now()), +(14682, 'The Feds', 'AU', now()), +(2318, 'Blackpool', 'UK', now()), +(2319, 'Max & Paddy''s Road to Nowhere', 'UK', now()), +(2320, 'True Horror', 'UK', now()), +(2321, 'ABC TV Micro-Mini Series', 'US', now()), +(2322, 'Mine All Mine', 'UK', now()), +(8277, 'Sunabouzu', 'JP', now()), +(2325, '$25 Million Dollar Hoax', 'US', now()), +(2326, 'Outrageous Fortune', 'NZ', now()), +(2327, 'Ladies'' Man', 'US', now()), +(2328, 'Can''t Sing Singers', 'UK', now()), +(2329, 'Family Face-Off: Hollywood', 'US', now()), +(2330, 'When Jordan Met Peter', 'UK', now()), +(2331, 'Metropia', 'CA', now()), +(2332, 'Steam Detectives', 'JP', now()), +(2333, 'Earth Report', 'UK', now()), +(2334, 'Pornucopia', 'US', now()), +(2335, 'Rozen Maiden', 'JP', now()), +(14716, 'Final Audition', 'CA', now()), +(2337, 'Tenjho Tenge', 'JP', now()), +(2338, 'I Married a Princess', 'US', now()), +(2339, 'Tots TV', 'UK', now()), +(2340, 'America or Busted', 'US', now()), +(2341, 'Chouriki Sentai Ohranger', 'JP', now()), +(2342, 'Film Fakers', 'US', now()), +(2343, 'The Adventures Of Twizzle', 'UK', now()), +(2344, 'Gantz', 'JP', now()), +(2345, 'MuzikMafia TV', 'US', now()), +(2346, 'The Jane Show', 'CA', now()), +(2347, 'High Five', 'US', now()), +(2348, 'The Last Chancers', 'UK', now()), +(2349, 'According to Bex', 'UK', now()), +(2351, 'Tall Poppies', 'AU', now()), +(2352, 'Big Brother Panto', 'UK', now()), +(2353, 'High School Project USA', 'UK', now()), +(2354, 'The Beiderbecke Tapes', 'UK', now()), +(2355, 'The Beiderbecke Connection', 'UK', now()), +(2356, 'Sister Princess', 'JP', now()), +(2358, 'Da Capo', 'JP', now()), +(2359, 'My-Hime', 'JP', now()), +(2360, 'Augie Doggie and Doggie Daddy', 'US', now()), +(2361, 'Distant Shores', 'UK', now()), +(2362, 'Pokémon Chronicles', 'AJ', now()), +(2363, 'Haibane Renmei', 'JP', now()), +(2364, 'The New Worst Witch', 'UK', now()), +(2365, 'Under the Mountain', 'NZ', now()), +(2366, 'Tortellini Western', 'CA', now()), +(2367, 'Double The Fist', 'AU', now()), +(8000, 'Motorweek', 'US', now()), +(2370, 'Puni Puni Poemy', 'JP', now()), +(2371, 'Vaya Semanita', 'ES', now()), +(2372, 'Mr. Romance', 'US', now()), +(2373, 'Trisha Goddard', 'UK', now()), +(2374, 'The Lance Krall Show', 'US', now()), +(2375, 'Trippin''', 'US', now()), +(2376, 'World''s Wildest Police Videos', 'US', now()), +(2377, 'Dead Man Weds', 'UK', now()), +(18576, 'Super Idol', 'GR', now()), +(2379, 'A Bear''s Tail', 'UK', now()), +(2380, 'Timeless', 'US', now()), +(2381, 'Pingu', 'CH', now()), +(2382, 'The Rotters'' Club', 'UK', now()), +(2383, 'Saiyuki Gaiden', 'JP', now()), +(2384, 'Petite Princess Yucie', 'JP', now()), +(2385, 'Miss Popularity', 'NZ', now()), +(2386, 'What the Ancients Did For Us', 'UK', now()), +(2387, 'The James Whale Radio Show', 'UK', now()), +(2388, 'Twisted Tales (UK)', 'UK', now()), +(2389, 'Ferry Boat Fred', 'AU', now()), +(2390, 'Back of the Y', 'NZ', now()), +(2391, 'Midori Days', 'JP', now()), +(2392, 'Planetes', 'JP', now()), +(2393, 'Unnovations', 'UK', now()), +(2394, 'Making the Band 3', 'US', now()), +(2395, 'Meet the Barkers', 'US', now()), +(2396, 'King Arthur''s Disasters', 'UK', now()), +(2397, 'Southern Steel', 'US', now()), +(2398, 'Pappyland', 'US', now()), +(2399, 'Its Not Fair', 'UK', now()), +(2400, 'The Smoggies', 'US', now()), +(2401, 'Coach Trip', 'UK', now()), +(2402, 'Mahou Sensei Negima!', 'JP', now()), +(2403, 'The Hollow Men', 'US', now()), +(2404, 'Top Buzzer', 'UK', now()), +(2405, 'Make Me a Supermodel (UK)', 'UK', now()), +(2406, 'E! Hollywood Hold''em', 'US', now()), +(2407, 'The Crust', 'UK', now()), +(2408, 'Onmyou Taisenki', 'JP', now()), +(2409, 'Whistler', 'CA', now()), +(2410, 'Ultraman: Towards the Future', 'AJ', now()), +(2411, 'My Restaurant Rules', 'AU', now()), +(2412, 'Liquid Television', 'US', now()), +(2413, 'Kyo Kara Maoh!', 'JP', now()), +(2414, 'It''s Me Gerald', 'CA', now()), +(2415, 'Cheap Draft', 'CA', now()), +(2416, 'Fighting Spirit', 'JP', now()), +(2417, 'Magical Meow Meow Taruto', 'JP', now()), +(2418, 'Movie Life: House of Wax', 'US', now()), +(2419, 'Playing It Straight (UK)', 'UK', now()), +(14781, 'Ian Wright''s Supersize Kids', 'UK', now()), +(2421, 'Hancock (1963)', 'UK', now()), +(2422, 'Las Vegas Garden of Love', 'US', now()), +(2423, 'Tsubasa Chronicle', 'JP', now()), +(2424, 'Vampiyan Kids', 'JP', now()), +(2425, 'The Law of Ueki', 'JP', now()), +(2426, 'Showdog Moms & Dads', 'US', now()), +(2427, 'Princess Tutu', 'JP', now()), +(2428, 'Mr. Magoo', 'US', now()), +(2429, 'Knievel''s Wild Ride', 'US', now()), +(2430, 'Loser Leaves Town', 'US', now()), +(2431, 'Diary of an Affair', 'US', now()), +(2432, '100 Centre Street', 'US', now()), +(2433, '100 Deeds for Eddie McDowd', 'US', now()), +(2434, '101 Dalmatians: The Series', 'US', now()), +(2435, '106 and Park', 'US', now()), +(2436, '15/Love', 'CA', now()), +(2437, '15 Storeys High', 'UK', now()), +(2438, '18 Wheels of Justice', 'US', now()), +(2439, '1st & Ten', 'US', now()), +(2440, '2000 Malibu Road', 'US', now()), +(2441, '2030 CE', 'CA', now()), +(2442, '20/20 Downtown', 'US', now()), +(2443, '21 Jump Street', 'US', now()), +(2444, '227', 'US', now()), +(2445, '24', 'US', now()), +(2446, '240-Robert', 'US', now()), +(2447, '24Seven', 'UK', now()), +(2448, '2gether', 'US', now()), +(2449, '2point4 Children', 'UK', now()), +(2450, '2 Stupid Dogs', 'US', now()), +(2451, '3 South', 'US', now()), +(2452, '30 Minute Meals', 'US', now()), +(2453, '3 Non Blondes', 'UK', now()), +(2454, '3rd Rock from the Sun', 'US', now()), +(2455, '413 Hope St.', 'US', now()), +(2456, '55 Degrees North', 'UK', now()), +(2457, '64 Zoo Lane', 'UK', now()), +(2458, '6teen', 'CA', now()), +(2459, 'The 700 Club', 'US', now()), +(2460, '704 Hauser', 'US', now()), +(2461, '77 Sunset Strip', 'US', now()), +(2462, '7 Days', 'US', now()), +(2463, '7th Heaven', 'US', now()), +(2464, '8 Simple Rules', 'US', now()), +(2465, '90 Days in Hollywood', 'US', now()), +(2466, '9 to 5', 'US', now()), +(2467, 'A.E.S. Hudson Street', 'US', now()), +(2468, 'A.K.A. Pablo', 'US', now()), +(2469, 'A.U.S.A.', 'US', now()), +(2470, 'Aaahh!!! Real Monsters', 'US', now()), +(2471, 'Aaron''s Way', 'US', now()), +(2472, 'Abby', 'US', now()), +(2473, 'ABC Showcase', 'US', now()), +(2474, 'ABC Stage 67', 'US', now()), +(2475, 'Abe Burrows'' Almanac', 'US', now()), +(2476, 'Above the Law', 'AU', now()), +(2477, 'Absolutely Fabulous', 'UK', now()), +(2478, 'Acapulco', 'US', now()), +(2479, 'Acapulco H.E.A.T.', 'US', now()), +(2480, 'Access Hollywood', 'US', now()), +(2481, 'According to Jim', 'US', now()), +(2482, 'Accused', 'US', now()), +(2483, 'Ace Crawford, Private Eye', 'US', now()), +(2484, 'Ace of Wands', 'UK', now()), +(2485, 'Ace Ventura: Pet Detective', 'US', now()), +(2486, 'Action', 'US', now()), +(2487, 'Action League Now!!!', 'US', now()), +(2488, 'Action Man (1995)', 'US', now()), +(2489, 'Action Man (2000)', 'US', now()), +(2490, 'Actors Studio', 'US', now()), +(2491, 'Adam-12 (1968)', 'US', now()), +(2492, 'Adam-12 (1989)', 'US', now()), +(2493, 'Adam''s Rib', 'US', now()), +(2494, 'Adam Adamant Lives!', 'UK', now()), +(2495, 'Adderly', 'US', now()), +(2496, 'A Different World', 'US', now()), +(2498, 'Adventure Inc', 'US', now()), +(2499, 'Adventures from the Book of Virtues', 'US', now()), +(2500, 'Adventures in Paradise', 'US', now()), +(2501, 'Adventures in Rainbow Country', 'CA', now()), +(2502, 'Adventures in Wonderland', 'US', now()), +(2503, 'The Adventures of Don Quick', 'UK', now()), +(2504, 'Adventures of Superman', 'US', now()), +(2505, 'The Adventures of the Galaxy Rangers', 'US', now()), +(2506, 'Aeon Flux', 'US', now()), +(2507, 'A Fine Romance (1981)', 'UK', now()), +(2508, 'AFP: American Fighter Pilot', 'US', now()), +(2509, 'African Skies', 'CA', now()), +(2510, 'After Henry', 'UK', now()), +(2511, 'AfterMASH', 'US', now()), +(2512, 'Against All Odds', 'US', now()), +(2513, 'Against the Grain', 'US', now()), +(2514, 'Against the Law', 'US', now()), +(2515, 'Agatha Christie''s Marple', 'UK', now()), +(2516, 'Agatha Christie''s Partners in Crime', 'UK', now()), +(2517, 'Agony', 'UK', now()), +(2518, 'Agony Again', 'UK', now()), +(2519, 'Ah! My Goddess', 'JP', now()), +(2520, 'Air America', 'US', now()), +(2521, 'Airline (1982)', 'UK', now()), +(2522, 'Airline (US)', 'US', now()), +(2523, 'Airline (1998)', 'UK', now()), +(2524, 'Airport (UK)', 'UK', now()), +(2525, 'Airwolf', 'US', now()), +(2526, 'Ai yori Aoshi', 'JP', now()), +(2527, 'Akazukin ChaCha', 'JP', now()), +(2528, 'Aladdin', 'US', now()), +(2530, 'Albert and Victoria', 'UK', now()), +(2531, 'Alexei Sayle''s Stuff', 'UK', now()), +(2532, 'ALF', 'US', now()), +(2533, 'ALF: The Animated Series', 'US', now()), +(2534, 'Alfred Hitchcock Presents (1955)', 'US', now()), +(2535, 'Alfred Hitchcock Presents (1985)', 'US', now()), +(2536, 'ALF Tales', 'US', now()), +(2537, 'Alias', 'US', now()), +(2538, 'Alias Smith and Jones', 'US', now()), +(2539, 'Alice (1976)', 'US', now()), +(2540, 'Alice Pearce', 'US', now()), +(2541, 'Alienated', 'CA', now()), +(2542, 'Alienators: Evolution Continues', 'US', now()), +(2543, 'Alien Nation', 'US', now()), +(2544, 'Alien Racers', 'CA', now()), +(2545, 'Aliens in the Family (US)', 'US', now()), +(2546, 'Alkali Ike', 'US', now()), +(2547, 'All-American Girl', 'US', now()), +(2548, 'All-New Dennis the Menace', 'US', now()), +(2549, 'All''s Fair', 'US', now()), +(2550, 'All About the Andersons', 'US', now()), +(2551, 'All About Us', 'US', now()), +(2552, 'All Along the Watchtower', 'UK', now()), +(2553, 'All at No. 20', 'UK', now()), +(2554, 'All Creatures Great and Small', 'UK', now()), +(2555, 'All Dogs Go to Heaven', 'US', now()), +(2556, 'Allegra''s Window', 'US', now()), +(2557, 'All Grown Up', 'US', now()), +(2558, 'All in Good Faith', 'UK', now()), +(2559, 'All in the Family', 'US', now()), +(2560, 'All is Forgiven', 'US', now()), +(2561, 'All My Children', 'US', now()), +(2562, 'Allo! Allo!', 'UK', now()), +(2563, 'All of Us', 'US', now()), +(2564, 'All Saints', 'AU', now()), +(2565, 'All Souls', 'US', now()), +(2566, 'All That', 'US', now()), +(2567, 'Ally', 'US', now()), +(2568, 'Ally McBeal', 'US', now()), +(2569, 'Almost Grown', 'US', now()), +(2570, 'Almost Perfect', 'US', now()), +(2571, 'Aloha Paradise', 'US', now()), +(2572, 'Alright Already', 'US', now()), +(2573, 'AL-TV', 'US', now()), +(2574, 'Alvin & the Chipmunks', 'US', now()), +(2575, 'Always Greener', 'AU', now()), +(2576, 'A Makeover Story', 'US', now()), +(2577, 'A Man Called Hawk', 'US', now()), +(2578, 'A Man Called Shenandoah', 'US', now()), +(2579, 'A Man Called Sloane', 'US', now()), +(2580, 'Amanda''s', 'US', now()), +(2581, 'Amazing Grace', 'US', now()), +(2582, 'Amazing Live Sea-Monkeys', 'US', now()), +(2583, 'Amazing Stories', 'US', now()), +(2584, 'America''s Funniest Home Videos', 'US', now()), +(2585, 'America''s Funniest People', 'US', now()), +(2586, 'America''s Greatest Pets', 'US', now()), +(2587, 'America''s Most Talented Kids', 'US', now()), +(2588, 'America''s Most Wanted', 'US', now()), +(2589, 'America''s Next Top Model', 'US', now()), +(2590, 'American Bandstand', 'US', now()), +(2591, 'American Candidate', 'US', now()), +(2592, 'American Casino', 'US', now()), +(2593, 'American Chopper', 'US', now()), +(2594, 'American Dad!', 'US', now()), +(2595, 'American Dragon: Jake Long', 'US', now()), +(2596, 'American Dream', 'US', now()), +(2597, 'American Dreamer', 'US', now()), +(2598, 'American Dreams', 'US', now()), +(2599, 'American Gothic', 'US', now()), +(2600, 'American High', 'US', now()), +(2601, 'American Idol', 'US', now()), +(2602, 'American Princess', 'US', now()), +(2603, 'American Start-Up', 'US', now()), +(2604, 'A Minute With Stan Hooper', 'US', now()), +(2605, 'Amish in the City', 'US', now()), +(2607, 'Amos ''n'' Andy', 'US', now()), +(2608, 'Andromeda', 'US', now()), +(2609, 'Andy Richter Controls the Universe', 'US', now()), +(2610, 'Angel', 'US', now()), +(2611, 'Angelina Ballerina', 'UK', now()), +(2612, 'Angel Street', 'US', now()), +(2613, 'Angie', 'US', now()), +(2614, 'Animal Atlas', 'US', now()), +(2615, 'Animal Cops: Houston', 'US', now()), +(2616, 'Animal Cops: San Francisco', 'US', now()), +(2617, 'Animal Face-Off', 'US', now()), +(2618, 'Animal Precinct', 'US', now()), +(2619, 'Animal X', 'US', now()), +(2620, 'Animaniacs', 'US', now()), +(2621, 'Animorphs', 'US', now()), +(2622, 'Anna and the King', 'US', now()), +(2623, 'Anna Lee', 'UK', now()), +(2624, 'Anne of Green Gables: The Animated Series', 'US', now()), +(2625, 'Annie Oakley', 'US', now()), +(2626, 'Another Life', 'US', now()), +(2627, 'Another World', 'US', now()), +(2628, 'Ant and Dec''s Saturday Night Takeaway', 'UK', now()), +(2629, 'Anthony Ant', 'CA', now()), +(2630, 'Your Movie Show', 'US', now()), +(2631, 'An Unsuitable Job for a Woman', 'UK', now()), +(2632, 'Any Day Now', 'US', now()), +(2633, 'Anything but Love', 'US', now()), +(2634, 'Apple''s Way', 'US', now()), +(2635, 'A Prince Among Men', 'UK', now()), +(2636, 'A Pup Named Scooby-Doo', 'US', now()), +(2637, 'Aquaman', 'US', now()), +(2638, 'Aqua Teen Hunger Force', 'US', now()), +(2639, 'Archer (1975)', 'US', now()), +(17247, 'Nagmamahal, Kapamilya', 'PH', now()), +(2641, 'Archie''s TV Funnies', 'US', now()), +(2642, 'Archie''s Weird Mysteries', 'US', now()), +(2643, 'Archie Bunker''s Place', 'US', now()), +(2644, 'Are You Afraid of the Dark?', 'CA', now()), +(2645, 'Are You Being Served?', 'UK', now()), +(2646, 'Ark II', 'US', now()), +(2647, 'Arli4610', 'US', now()), +(2648, 'Around the World in 80 Days (1972)', 'AU', now()), +(2649, 'Arrested Development', 'US', now()), +(2650, 'Arresting Behavior', 'US', now()), +(2651, 'Arsenio', 'US', now()), +(2652, 'Arthur', 'US', now()), +(2653, 'Arthur of the Britons', 'UK', now()), +(2654, 'As If (UK)', 'UK', now()), +(2655, 'As If (US)', 'US', now()), +(2656, 'Ask Harriet', 'US', now()), +(2657, 'Ask This Old House', 'US', now()), +(2658, 'As The World Turns', 'US', now()), +(2659, 'As Time Goes By (UK)', 'UK', now()), +(2660, 'As Told By Ginger', 'US', now()), +(2661, 'Astro Boy (1963)', 'JP', now()), +(2662, 'Astro Boy (2004)', 'AJ', now()), +(2663, 'Astronauts', 'UK', now()), +(2664, 'At Home with the Braithwaites', 'UK', now()), +(2665, 'Atlantis High', 'UK', now()), +(2666, 'Atomic Betty', 'CA', now()), +(2667, 'A Touch of Frost', 'UK', now()), +(2668, 'Attachments', 'UK', now()), +(2669, 'Attack of The Killer Tomatoes', 'US', now()), +(2670, 'Attack Of The Show!', 'US', now()), +(2671, 'A Twist in the Tale', 'UK', now()), +(2672, 'Auf Wiedersehen, Pet', 'UK', now()), +(2673, 'Aussie Queer Eye for the Straight Guy', 'AU', now()), +(2674, 'Austin City Limits', 'US', now()), +(2675, 'Austin Stories', 'US', now()), +(2676, 'Australia''s Next Top Model', 'AU', now()), +(2677, 'Australian Idol', 'AU', now()), +(2678, 'Automan', 'US', now()), +(2679, 'Automaniac', 'US', now()), +(2680, 'Avatar: The Last Airbender', 'US', now()), +(2681, 'Avengers', 'US', now()), +(16644, 'No Time for Sergeants', 'US', now()), +(2683, 'Average Joe', 'US', now()), +(2684, 'A Very Peculiar Practice', 'UK', now()), +(2685, 'Road to Avonlea', 'CA', now()), +(2686, 'A Walk in Your Shoes', 'US', now()), +(2687, 'A Whole New Ballgame', 'US', now()), +(2688, 'B.J. and the Bear', 'US', now()), +(2689, 'B.L. Stryker', 'US', now()), +(2690, 'Babar', 'CA', now()), +(2691, 'Baby Blues', 'US', now()), +(2692, 'Baby Bob', 'US', now()), +(2693, 'Babylon 5', 'US', now()), +(21881, 'Mamta', 'IN', now()), +(2695, 'Baby Looney Tunes', 'US', now()), +(2696, 'Baby Talk', 'US', now()), +(2697, 'Back to Sherwood', 'CA', now()), +(2698, 'Back to the Future', 'US', now()), +(2699, 'Baddiel & Skinner Unplanned', 'UK', now()), +(2700, 'Baddiel''s Syndrome', 'UK', now()), +(2701, 'Bad Girls', 'UK', now()), +(2702, 'Baggy Pants and the Nitwits', 'US', now()), +(2703, 'Bakersfield, P.D.', 'US', now()), +(2704, 'Ballykissangel', 'UK', now()), +(2705, 'Banacek', 'US', now()), +(2706, 'Bananaman', 'UK', now()), +(2707, 'Bananas in Pyjamas', 'AU', now()), +(2708, 'Band of Brothers', 'US', now()), +(2709, 'Bands Reunited', 'US', now()), +(2710, 'Barbara', 'UK', now()), +(2711, 'The Barbara Stanwyck Show', 'US', now()), +(2712, 'Barbershop', 'US', now()), +(2713, 'Baretta', 'US', now()), +(2714, 'Barnaby Jones', 'US', now()), +(2715, 'Barney & Friends', 'US', now()), +(2716, 'Barney Miller', 'US', now()), +(2717, 'Barrier Reef', 'AU', now()), +(2718, 'Baseball Tonight', 'US', now()), +(2719, 'Batman', 'US', now()), +(2720, 'The New Batman Adventures', 'US', now()), +(2721, 'Batman: The Animated Series', 'US', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(2722, 'Batman Beyond', 'US', now()), +(2723, 'Battery Park', 'US', now()), +(2724, 'Battle B-Daman', 'JP', now()), +(2725, 'BattleBots', 'US', now()), +(2726, 'Battle for Ozzfest', 'US', now()), +(2727, 'Battle of the Gridiron Stars', 'US', now()), +(2728, 'Battle of the Network Stars', 'US', now()), +(2729, 'Battlestar Galactica (1978)', 'US', now()), +(2730, 'Battlestar Galactica', 'US', now()), +(2731, 'Battletoads', 'US', now()), +(2732, 'Bay City Blues', 'US', now()), +(2733, 'Baywatch', 'US', now()), +(2734, 'Baywatch Nights', 'US', now()), +(2735, 'Beach Girls', 'US', now()), +(2736, 'Beakman''s World', 'US', now()), +(2737, 'Bearcats!', 'US', now()), +(2738, 'Bear in the Big Blue House', 'US', now()), +(2739, 'Beast (UK)', 'UK', now()), +(2740, 'Beastmaster', 'US', now()), +(2741, 'Beast Wars', 'US', now()), +(2742, 'Beat Route', 'UK', now()), +(2743, 'Beautiful People', 'US', now()), +(2744, 'Beauty and the Beast (US)', 'US', now()), +(2745, 'Beauty and the Geek', 'US', now()), +(2746, 'Beavis and Butt-Head', 'US', now()), +(2747, 'Beck: Mongolian Chop Squad', 'JP', now()), +(2748, 'Becker', 'US', now()), +(2749, 'Bedtime Stories (US)', 'US', now()), +(2750, 'Beech is Back', 'UK', now()), +(2751, 'Beetleborgs', 'US', now()), +(2752, 'Beetlejuice', 'US', now()), +(2753, 'Beet the Vandel Buster', 'JP', now()), +(2754, 'Beggars and Choosers', 'US', now()), +(2755, 'Behind The Music', 'US', now()), +(2756, 'Being Bobby Brown', 'US', now()), +(2757, 'Being Eve', 'NZ', now()), +(2758, 'Being Ian', 'CA', now()), +(2759, 'Belle and Sebastian', 'JP', now()), +(2760, 'Benji, Zax and the Alien Prince', 'US', now()), +(2761, 'Benson', 'US', now()), +(2762, 'Ben Vereen... Comin'' at Ya', 'US', now()), +(2763, 'Bergerac', 'UK', now()), +(2764, 'Berserk', 'JP', now()), +(2765, 'Bert D''Angelo Superstar', 'US', now()), +(2766, 'Best of the West', 'US', now()), +(2767, 'Best Week Ever', 'US', now()), +(2768, 'ComicView', 'US', now()), +(2769, 'Be the Creature', 'US', now()), +(2770, 'Bette', 'US', now()), +(2771, 'Better Days', 'US', now()), +(2772, 'Betterman', 'JP', now()), +(2773, 'Betty Boop', 'US', now()), +(2774, 'Between Brothers', 'US', now()), +(2775, 'Between the Lions', 'US', now()), +(2776, 'Beverly Hills, 90210', 'US', now()), +(2777, 'Beverly Hills Buntz', 'US', now()), +(2778, 'Beware of Dog', 'US', now()), +(2779, 'Bewitched', 'US', now()), +(2780, 'Beyblade (JP)', 'JP', now()), +(2781, 'Beyond Belief: Fact or Fiction', 'US', now()), +(2782, 'Beyond Reality', 'CA', now()), +(2783, 'Beyond Westworld', 'US', now()), +(2784, 'BIG!', 'US', now()), +(2785, 'Big Apple', 'US', now()), +(2786, 'Big Bad World', 'UK', now()), +(2787, 'Big Brother (US)', 'US', now()), +(2788, 'Big Brother - Up Late', 'AU', now()), +(2789, 'Big Brother (Africa)', 'ZA', now()), +(2790, 'Big Brother (AU)', 'AU', now()), +(2791, 'Big Brother''s Little Brother', 'UK', now()), +(2792, 'Big Brother (UK)', 'UK', now()), +(2793, 'Big Brother Jake', 'US', now()), +(2794, 'Bigfoot and Wildboy', 'US', now()), +(2795, 'Big Guy and Rusty the Boy Robot', 'US', now()), +(2796, 'Big Kids', 'UK', now()), +(2797, 'Big Love', 'US', now()), +(2798, 'Big Man on Campus', 'US', now()), +(2799, 'Big Meg, Little Meg', 'UK', now()), +(2800, 'The Big O (US)', 'AJ', now()), +(2801, 'Big Sound', 'CA', now()), +(12372, 'Kikou Sen''nyo Rouran', 'JP', now()), +(2803, 'Big Wolf on Campus', 'CA', now()), +(2804, 'Biker Mice from Mars (1993)', 'US', now()), +(2805, 'Bill & Ted''s Excellent Adventures (1990)', 'US', now()), +(2806, 'Bill Nye: The Science Guy', 'US', now()), +(2807, 'Billy (1992)', 'US', now()), +(2808, 'Bionic Six', 'US', now()), +(2809, 'Birdland', 'US', now()), +(2810, 'Birds of Prey', 'US', now()), +(2811, 'The Adventures of Black Beauty', 'UK', now()), +(2812, 'Black Books', 'UK', now()), +(2813, 'Blackfly', 'CA', now()), +(2814, 'Blackhearts in Battersea', 'UK', now()), +(2815, 'Black Jack (OAV)', 'JP', now()), +(21064, 'Billy the Exterminator', 'US', now()), +(2817, 'Black Saddle', 'US', now()), +(2818, 'Black Scorpion', 'US', now()), +(2819, 'Black Sheep Squadron', 'US', now()), +(2820, 'Blackstar', 'US', now()), +(2821, 'Black Tie Nights', 'US', now()), +(2822, 'Blade: The Series', 'US', now()), +(2823, 'Blake''s 7', 'UK', now()), +(2824, 'Blaster''s Universe', 'CA', now()), +(2825, 'Bleach (JP)', 'JP', now()), +(2826, 'Bless Me Father', 'UK', now()), +(2827, 'Bless This House (US)', 'US', now()), +(2828, 'Blind Date (1999)', 'US', now()), +(2829, 'Blind Justice', 'US', now()), +(2830, 'Blind Men', 'UK', now()), +(13322, 'Walk a Crooked Mile', 'UK', now()), +(2832, 'Bliss', 'CA', now()), +(2833, 'Blondie (1957)', 'US', now()), +(2834, 'Blood of the Samurai: The Series', 'US', now()), +(2835, 'Blossom', 'US', now()), +(2836, 'Blotter', 'US', now()), +(2837, 'Blowing Up: Fatty Koo', 'US', now()), +(2838, 'Blow Out', 'US', now()), +(2839, 'Blue''s Clues', 'US', now()), +(2840, 'Blue Collar TV', 'US', now()), +(2841, 'Blue Gender', 'AJ', now()), +(2842, 'Blue Heelers', 'AU', now()), +(2843, 'Blue Light', 'US', now()), +(2844, 'Blue Murder (CA)', 'CA', now()), +(2845, 'Blue Peter', 'UK', now()), +(2846, 'Blue Seed', 'AJ', now()), +(2847, 'Blue Skies (1994)', 'US', now()), +(2848, 'Blue Skies (1988)', 'US', now()), +(2849, 'Blue Thunder', 'US', now()), +(2850, 'Blue Water High', 'AU', now()), +(2851, 'Bob', 'US', now()), +(2852, 'Bob and Rose', 'UK', now()), +(2853, 'Bob and Margaret', 'UK', now()), +(2854, 'Bobby''s World', 'US', now()), +(2855, 'Bobcat''s Big Ass Show', 'US', now()), +(2856, 'Bob Hope Presents The Chrysler Theatre', 'US', now()), +(2857, 'Bob Martin', 'UK', now()), +(2858, 'Bob Morane', 'CA', now()), +(2859, 'Bobobo-bo Bo-bobo', 'JP', now()), +(2860, 'Bob Patterson', 'US', now()), +(2861, 'Bob the Builder', 'UK', now()), +(2862, 'Bodies of Evidence', 'US', now()), +(2863, 'Body and Soul (US)', 'US', now()), +(2864, 'Bodyguards', 'UK', now()), +(2865, 'Body Hits', 'US', now()), +(2866, 'Body Work', 'US', now()), +(2867, 'Boiling Points', 'US', now()), +(2868, 'Bonanza', 'US', now()), +(2869, 'Bone Chillers', 'CA', now()), +(2870, 'Bones', 'US', now()), +(2871, 'Bonjour la classe', 'UK', now()), +(2872, 'Bonkers', 'US', now()), +(2873, 'Booker', 'US', now()), +(2874, 'Boomtown', 'US', now()), +(2875, 'Boon', 'UK', now()), +(2876, 'Boone', 'US', now()), +(2877, 'Boots and Saddles', 'US', now()), +(2878, 'Bordertown (CA)', 'CA', now()), +(2879, 'Bosom Buddies', 'US', now()), +(2880, 'Boston Blackie', 'US', now()), +(2881, 'Boston Common', 'US', now()), +(2882, 'Boston Legal', 'US', now()), +(2883, 'Boston Public', 'US', now()), +(2884, 'Bottom', 'UK', now()), +(2885, 'Bourbon Street Beat', 'US', now()), +(2886, 'Boy Meets Boy', 'US', now()), +(2887, 'Boy Meets World', 'US', now()), +(2888, 'Braceface', 'CA', now()), +(2889, 'Bracken''s World', 'US', now()), +(2890, 'Brady''s Beasts', 'CA', now()), +(2891, 'Brainiac: Science Abuse', 'UK', now()), +(2892, 'Bram & Alice', 'US', now()), +(2893, 'Branded', 'US', now()), +(2894, 'Brand New Life', 'US', now()), +(2895, 'Brandy & Mr. Whiskers', 'US', now()), +(2896, 'Brat Camp (US)', 'US', now()), +(2897, 'Brat Camp (UK)', 'UK', now()), +(2898, 'Brats of the Lost Nebula', 'US', now()), +(2899, 'BraveStarr', 'US', now()), +(2900, 'Breaker High', 'CA', now()), +(2901, 'Breakers', 'AU', now()), +(2902, 'Breakfast with Frost', 'UK', now()), +(2903, 'Breaking News', 'US', now()), +(2904, 'Breaking Point (US)', 'US', now()), +(2905, 'Bremner, Bird and Fortune', 'UK', now()), +(2906, 'Bret Maverick', 'US', now()), +(2907, 'Brewster Place', 'US', now()), +(2908, 'Brighton Belles', 'UK', now()), +(2909, 'Brimstone', 'US', now()), +(2910, 'Bring ''Em Back Alive', 'US', now()), +(2911, 'Bringing up Jack', 'US', now()), +(2912, 'Britney and Kevin: Chaotic', 'US', now()), +(2913, 'Broken Badges', 'US', now()), +(2914, 'Bromwell High', 'UK', now()), +(2915, 'Bronco', 'US', now()), +(2916, 'Brooklyn Bridge', 'US', now()), +(2917, 'Brooklyn South', 'US', now()), +(2918, 'Brother''s Keeper', 'US', now()), +(2919, 'Brotherly Love (US)', 'US', now()), +(2920, 'Brothers (US)', 'US', now()), +(2921, 'Brum', 'UK', now()), +(2922, 'Brush Strokes', 'UK', now()), +(2923, 'Brutally Normal', 'US', now()), +(2924, 'BSTV', 'US', now()), +(2925, 'Bubblegum Crisis (AU)', 'JP', now()), +(2926, 'Bubblegum Crisis Tokyo 2040 (AU)', 'JP', now()), +(2927, 'Buck Rogers in the 25th Century', 'US', now()), +(2928, 'Buddy Faro', 'US', now()), +(2929, 'Budgie', 'UK', now()), +(2930, 'Buffy the Vampire Slayer', 'US', now()), +(2931, 'Buffy the Animated Series', 'US', now()), +(2932, 'The Bugaloos', 'US', now()), +(2933, 'Bugs', 'UK', now()), +(2934, 'Built to Last', 'US', now()), +(2935, 'Bull', 'US', now()), +(2936, 'Bullet & Gunn', 'AU', now()), +(2937, 'Bump in the Night', 'US', now()), +(2938, 'Bureau of Alien Detectors', 'US', now()), +(2939, 'Burke''s Law (1963)', 'US', now()), +(2940, 'Burst Angel', 'AJ', now()), +(2941, 'Butch Cassidy & The Sundance Kids', 'US', now()), +(2942, 'Butch Patterson: Private Dick', 'CA', now()), +(2943, 'Butt Ugly Martians', 'US', now()), +(2944, 'Butterflies', 'UK', now()), +(2945, 'Buzz', 'CA', now()), +(2946, 'Buzzkill', 'US', now()), +(2947, 'Buzz Lightyear of Star Command', 'US', now()), +(2948, 'C-16: FBI', 'US', now()), +(2949, 'C.A.T.S. Eyes', 'UK', now()), +(2950, 'C.O.P.S.', 'US', now()), +(2951, 'C.P.O. Sharkey', 'US', now()), +(2952, 'Cade''s County', 'US', now()), +(2953, 'Cadfael', 'UK', now()), +(2954, 'Cadillacs and Dinosaurs', 'US', now()), +(2955, 'Cagney & Lacey', 'US', now()), +(2956, 'Caillou', 'CA', now()), +(2957, 'Caitlin''s Way', 'US', now()), +(2958, 'California Dreams', 'US', now()), +(2959, 'Callan', 'UK', now()), +(2960, 'Call of the Wild', 'US', now()), +(2961, 'Call to Glory', 'US', now()), +(2962, 'Campion', 'UK', now()), +(2963, 'Camp Lazlo', 'US', now()), +(2964, 'Camp Wilder', 'US', now()), +(2965, 'Can''t Hurry Love', 'US', now()), +(2966, 'Canada: A People''s History', 'CA', now()), +(2967, 'Canadian Idol', 'CA', now()), +(2968, 'Candid Camera (US)', 'US', now()), +(2969, 'Cannon', 'US', now()), +(31511, 'Country Town Rescue', 'AU', now()), +(2971, 'Captain Butler', 'UK', now()), +(2972, 'Captain Caveman & the Teen Angels', 'US', now()), +(2973, 'Captain Kangaroo', 'US', now()), +(2974, 'Captain Midnight', 'US', now()), +(2975, 'Captain N & the Adventures of Super Mario Bros. 3', 'US', now()), +(2976, 'Captain N: The Game Master', 'US', now()), +(2977, 'Captain N and the New Super Mario World', 'US', now()), +(2978, 'Captain Nice', 'US', now()), +(2979, 'Captain Planet and the Planeteers', 'US', now()), +(2980, 'Captain Power and the Soldiers of the Future', 'US', now()), +(2981, 'Captain Scarlet', 'UK', now()), +(2982, 'Captain Simian & The Space Monkeys', 'US', now()), +(2983, 'Captain Star', 'UK', now()), +(2984, 'Captain Video And His Video Rangers', 'US', now()), +(2985, 'Captain Z-RO', 'US', now()), +(2986, 'Captain Zep - Space Detective', 'UK', now()), +(2987, 'Car 54, Where are You?', 'US', now()), +(2988, 'Cardcaptors', 'AJ', now()), +(2989, 'Care Bears', 'US', now()), +(2990, 'Carnivale', 'US', now()), +(2991, 'Carol & Company', 'US', now()), +(2992, 'Carol Burnett & Company', 'US', now()), +(21582, 'Renovation Realities', 'US', now()), +(2994, 'Caroline in the City', 'US', now()), +(2995, 'Carson''s Law', 'AU', now()), +(2996, 'Carter Country', 'US', now()), +(2997, 'Cartoon Alley', 'US', now()), +(2998, 'Cartoon Planet', 'US', now()), +(2999, 'Casablanca (1955)', 'US', now()), +(3000, 'Casablanca (1983)', 'US', now()), +(3001, 'Casanova', 'UK', now()), +(3002, 'Case Closed', 'AJ', now()), +(3003, 'Cash and Company', 'AU', now()), +(3004, 'Casper', 'US', now()), +(3005, 'Casualty', 'UK', now()), +(3006, 'Cathouse: The Series', 'US', now()), +(3007, 'Catweazle', 'UK', now()), +(3008, 'CBS Playhouse', 'US', now()), +(3009, 'CBS Storybreak', 'US', now()), +(3010, 'Cedric the Entertainer Presents', 'US', now()), +(3011, 'Celebrities Uncensored', 'US', now()), +(3012, 'Celebrity Big Brother', 'UK', now()), +(3013, 'Celebrity Blackjack', 'US', now()), +(3014, 'Celebrity Bootcamp', 'US', now()), +(3015, 'Celebrity Charades', 'US', now()), +(3016, 'Celebrity Deathmatch', 'US', now()), +(3017, 'Celebrity Fit Club (US)', 'US', now()), +(3018, 'Celebrity Justice', 'US', now()), +(3019, 'Celebrity Love Island', 'UK', now()), +(3020, 'Celebrity Poker Showdown', 'US', now()), +(3021, 'Centennial', 'US', now()), +(3022, 'Center of the Universe', 'US', now()), +(3023, 'Central Park West', 'US', now()), +(3024, 'Century City', 'US', now()), +(3025, 'ChalkZone', 'US', now()), +(3026, 'Challenge of the GoBots', 'US', now()), +(3027, 'Challenge of the SuperFriends', 'US', now()), +(3028, 'Chambers', 'UK', now()), +(3029, 'Champs', 'US', now()), +(3030, 'Chandler & Co.', 'UK', now()), +(3031, 'Chappelle''s Show', 'US', now()), +(3032, 'Charles in Charge', 'US', now()), +(3033, 'Charlie & Lola', 'UK', now()), +(3034, 'Charlie''s Angels (1976)', 'US', now()), +(3035, 'Charlie Grace', 'US', now()), +(3036, 'Charlie Hoover', 'US', now()), +(3037, 'Charlie Jade', 'CA', now()), +(3038, 'Charlie Lawrence', 'US', now()), +(3039, 'Charmed', 'US', now()), +(3040, 'Chase (1973)', 'US', now()), +(3041, 'Chasing Farrah', 'US', now()), +(3042, 'Cheap Seats', 'US', now()), +(3043, 'Checkmate', 'US', now()), +(3044, 'Cheers', 'US', now()), +(3045, 'Chef!', 'UK', now()), +(3046, 'Chelmsford 123', 'UK', now()), +(3047, 'Cher', 'US', now()), +(3048, 'Chevy Top 20', 'CA', now()), +(3049, 'Cheyenne (1955)', 'US', now()), +(3050, 'Chicago Hope', 'US', now()), +(3051, 'Chicago Sons', 'US', now()), +(3052, 'Chicago Story', 'US', now()), +(3053, 'Chicken Soup for the Soul', 'US', now()), +(3054, 'Chico and the Man', 'US', now()), +(3055, 'China Beach', 'US', now()), +(3056, 'Chip ''N Dale Rescue Rangers', 'US', now()), +(3057, 'CHiPs', 'US', now()), +(3058, 'Chop Cut Rebuild', 'US', now()), +(3059, 'Chopper Squad', 'AU', now()), +(3060, 'Christy', 'US', now()), +(3061, 'Chrono Crusade', 'JP', now()), +(3062, 'ChuckleVision', 'UK', now()), +(3063, 'Chuck Woolery: Naturally Stoned', 'US', now()), +(3064, 'CI5: The New Professionals', 'UK', now()), +(3065, 'Cimarron City', 'US', now()), +(3066, 'Cimarron Strip', 'US', now()), +(12666, 'Pani Poni Dash!', 'JP', now()), +(3068, 'Citizen Baines', 'US', now()), +(3069, 'Citizen Reno', 'US', now()), +(3070, 'Citizen Smith', 'UK', now()), +(3071, 'City Guys', 'US', now()), +(3072, 'CityKids', 'US', now()), +(3073, 'City Life', 'NZ', now()), +(3074, 'City of Angels (2000)', 'US', now()), +(3075, 'City of Angels (1976)', 'US', now()), +(3076, 'Civil Wars', 'US', now()), +(3077, 'Clarence', 'UK', now()), +(3078, 'Clarissa Explains It All', 'US', now()), +(3079, 'Class Act', 'UK', now()), +(3080, 'Class of ''96', 'US', now()), +(3081, 'Claude''s Crib', 'US', now()), +(3082, 'Clean House', 'US', now()), +(3083, 'Clean Sweep', 'US', now()), +(3084, 'Cleghorne!', 'US', now()), +(3085, 'Cleopatra 2525', 'US', now()), +(3086, 'Clerks', 'US', now()), +(3087, 'Clifford''s Puppy Days', 'US', now()), +(3088, 'Clifford the Big Red Dog', 'US', now()), +(3089, 'Clone High, USA', 'CA', now()), +(3090, 'Closing Arguments', 'US', now()), +(3091, 'Clubhouse', 'US', now()), +(3092, 'Clue Club', 'US', now()), +(3093, 'Clueless', 'US', now()), +(3094, 'CMT Top 20 Countdown', 'US', now()), +(3095, 'Coach', 'US', now()), +(3096, 'Coconut Fred''s Fruit Salad Island', 'US', now()), +(3097, 'Code Lyoko', 'FR', now()), +(3098, 'Codename', 'UK', now()), +(3099, 'Code Name: Eternity', 'US', now()), +(3100, 'Codename: Kids Next Door', 'US', now()), +(3101, 'Code Red', 'US', now()), +(3102, 'Cold Case', 'US', now()), +(3103, 'Cold Case Files', 'US', now()), +(3104, 'Cold Feet (US)', 'US', now()), +(3105, 'Colditz', 'UK', now()), +(3106, 'Cold Pizza', 'US', now()), +(3107, 'Cold Squad', 'CA', now()), +(3108, 'Cold Turkey', 'US', now()), +(3109, 'Colin''s Sandwich', 'UK', now()), +(3110, 'Colonel Humphrey Flack', 'US', now()), +(3111, 'Colonel March of Scotland Yard', 'UK', now()), +(3112, 'Colonial House', 'US', now()), +(3113, 'Colt .45', 'US', now()), +(3114, 'Columbo', 'US', now()), +(3115, 'Combat!', 'US', now()), +(3116, 'Come Back Mrs. Noah', 'UK', now()), +(3117, 'Comedy Central Presents', 'US', now()), +(3118, 'Comedy Lab', 'UK', now()), +(3119, 'Come to Papa', 'US', now()), +(3120, 'Comic Relief', 'UK', now()), +(3121, 'Comic Relief Does Fame Academy', 'UK', now()), +(3122, 'Coming Soon', 'UK', now()), +(3123, 'Commander In Chief', 'US', now()), +(3124, 'Commando Cody', 'US', now()), +(3125, 'Committed (US)', 'US', now()), +(3126, 'Committed (CA)', 'CA', now()), +(3127, 'Common As Muck', 'UK', now()), +(3128, 'Common Law (1996)', 'US', now()), +(3129, 'Complete Savages', 'US', now()), +(3130, 'Con', 'US', now()), +(3131, 'Conan (1997)', 'US', now()), +(3132, 'Conquest', 'US', now()), +(3133, 'Conrad Bloom', 'US', now()), +(3134, 'Conspiracies', 'UK', now()), +(3135, 'The Conspiracy Zone', 'US', now()), +(3136, 'Convoy', 'US', now()), +(3137, 'Cop Rock', 'US', now()), +(3138, 'Cops', 'US', now()), +(3139, 'Corner Gas', 'CA', now()), +(3140, 'Coronation Street', 'UK', now()), +(3141, 'Coronet Blue', 'US', now()), +(3142, 'Corrector Yui', 'JP', now()), +(3143, 'Cosby', 'US', now()), +(3144, 'Costas Now', 'US', now()), +(3145, 'Costello', 'US', now()), +(3146, 'Count Duckula', 'UK', now()), +(3147, 'Counterstrike (CA)', 'CA', now()), +(3148, 'Counterstrike (UK)', 'UK', now()), +(3149, 'Coupling (UK)', 'UK', now()), +(3150, 'Coupling (US)', 'US', now()), +(3151, 'Courage the Cowardly Dog', 'US', now()), +(3152, 'Courthouse', 'US', now()), +(3153, 'Cousin Skeeter', 'US', now()), +(3154, 'Cover Me: Based on the True Life of an FBI Family', 'US', now()), +(3155, 'Covington Cross', 'US', now()), +(3156, 'Cow and Chicken', 'US', now()), +(3157, 'Cowboy Bebop', 'JP', now()), +(3158, 'Cracker (UK)', 'UK', now()), +(3159, 'Cracker (US)', 'US', now()), +(3160, 'Cracking Up', 'US', now()), +(3161, 'Crash (US)', 'US', now()), +(3162, 'Crash Nebula', 'US', now()), +(3163, 'Crash Zone', 'AU', now()), +(3164, 'Crazy Like A Fox', 'US', now()), +(3165, 'Creature Comforts (UK)', 'UK', now()), +(3166, 'Crime & Punishment (US)', 'US', now()), +(3167, 'Crime Stories', 'CA', now()), +(3168, 'Crime Story', 'US', now()), +(3169, 'Crime Traveller', 'UK', now()), +(3170, 'Criminal Instinct', 'CA', now()), +(3171, 'Criminal Minds', 'US', now()), +(3172, 'Crisis Center', 'US', now()), +(3174, 'Crossbow', 'US', now()), +(3175, 'Crossing Jordan', 'US', now()), +(3176, 'Crossing Over with John Edward', 'US', now()), +(3177, 'Crossroads (1992)', 'US', now()), +(3178, 'Crossroads (1955)', 'US', now()), +(3179, 'Crown Court', 'UK', now()), +(3180, 'Crufts', 'UK', now()), +(3181, 'Crumbs', 'US', now()), +(3182, 'Crusade', 'US', now()), +(3183, 'CSI: Crime Scene Investigation', 'US', now()), +(3184, 'CSI: Miami', 'US', now()), +(3185, 'CSI: NY', 'US', now()), +(3186, 'Cubix', 'US', now()), +(3187, 'Cupid (2003)', 'US', now()), +(3188, 'Curb Your Enthusiasm', 'US', now()), +(3189, 'Curious George (CA)', 'CA', now()), +(17110, 'Secrets of the Cryptkeeper''s Haunted House', 'US', now()), +(3191, 'Curse of Dracula', 'US', now()), +(3192, 'Custer', 'US', now()), +(3193, 'Cuts', 'US', now()), +(3194, 'Cyberchase', 'US', now()), +(3195, 'Cybersix', 'CA', now()), +(3196, 'Cybill', 'US', now()), +(3197, 'Cyborg 009', 'JP', now()), +(3198, 'D.C.', 'US', now()), +(3199, 'D.I.C.E.', 'AJ', now()), +(3200, 'Da Ali G Show', 'UK', now()), +(3202, 'Dad (1997)', 'UK', now()), +(3203, 'Dad''s Army', 'UK', now()), +(3204, 'Daddio', 'US', now()), +(3205, 'Daddy''s Girls (1994)', 'US', now()), +(3206, 'Daddy Dearest', 'US', now()), +(3207, 'DAG (US)', 'US', now()), +(3208, 'Dai-Guard', 'JP', now()), +(3209, 'Daigunder', 'AJ', now()), +(3210, 'Dalgliesh', 'UK', now()), +(3211, 'Dallas (1978)', 'US', now()), +(3212, 'Dalton''s Code of Vengeance', 'US', now()), +(3213, 'Dalziel and Pascoe', 'UK', now()), +(3214, 'Damage Control', 'US', now()), +(3215, 'Da Mob', 'US', now()), +(3216, 'Damon', 'US', now()), +(3217, 'Dance 360', 'US', now()), +(3218, 'Dance Party USA', 'US', now()), +(3219, 'Dancing With the Stars (AU)', 'AU', now()), +(3220, 'Dancing With the Stars (US)', 'US', now()), +(3221, 'Danger', 'US', now()), +(3222, 'Danger Bay', 'CA', now()), +(3223, 'Dangerfield', 'UK', now()), +(3224, 'Danger Island', 'US', now()), +(3225, 'Danger Man', 'UK', now()), +(3226, 'Danger Mouse', 'UK', now()), +(3227, 'Dangerous Curves', 'US', now()), +(3228, 'Dangerous Minds', 'US', now()), +(3229, 'Danger UXB', 'UK', now()), +(3230, 'Daniel Boone (1964)', 'US', now()), +(3232, 'Danny', 'US', now()), +(3233, 'Danny Phantom', 'US', now()), +(3234, 'Darcy''s Wild Life', 'US', now()), +(3235, 'Daria', 'US', now()), +(3236, 'Daring & Grace', 'CA', now()), +(3237, 'Dark Angel', 'US', now()), +(3238, 'Dark Justice', 'US', now()), +(3239, 'Dark Knight', 'NZ', now()), +(3240, 'Dark Oracle', 'CA', now()), +(3241, 'Darkroom', 'US', now()), +(3242, 'Dark Shadows (1966)', 'US', now()), +(3243, 'Dark Skies', 'US', now()), +(3244, 'Dark Stalkers', 'US', now()), +(3245, 'Darkwing Duck', 'US', now()), +(3246, 'Dastardly and Muttley in Their Flying Machines', 'US', now()), +(3247, 'Date My Mom', 'US', now()), +(3248, 'Dave''s World', 'US', now()), +(3249, 'Dave the Barbarian', 'US', now()), +(3250, 'Davey and Goliath', 'US', now()), +(3251, 'David Cassidy - Man Undercover', 'US', now()), +(3252, 'David Copperfield (1999)', 'UK', now()), +(3253, 'Da Vinci''s Inquest', 'CA', now()), +(3254, 'Davis Rules', 'US', now()), +(3255, 'Dawson''s Creek', 'US', now()), +(3256, 'Days of our Lives', 'US', now()), +(3257, 'DEA', 'US', now()), +(3258, 'Dead at 21', 'US', now()), +(3259, 'Dead Last', 'US', now()), +(3260, 'Deadliest Catch', 'US', now()), +(3261, 'Dead Like Me', 'US', now()), +(3262, 'Deadline', 'US', now()), +(3263, 'Deadly Games', 'US', now()), +(3264, 'Dead Man''s Gun', 'US', now()), +(3265, 'Dead of Night', 'UK', now()), +(3266, 'Dead Ringers', 'UK', now()), +(3267, 'Deadwood', 'US', now()), +(3268, 'Dean Martin Celebrity Roast', 'US', now()), +(3269, 'Dear John (US)', 'US', now()), +(3270, 'Dear John (UK)', 'UK', now()), +(3271, 'DearS', 'JP', now()), +(3272, 'Deep Sea Detectives', 'US', now()), +(3273, 'Deepwater Black', 'CA', now()), +(3274, 'Def Comedy Jam', 'US', now()), +(3275, 'Degrassi', 'CA', now()), +(3276, 'Degrassi High', 'CA', now()), +(3277, 'Degrassi Junior High', 'CA', now()), +(3278, 'Degrassi Talks', 'CA', now()), +(3279, 'Degrassi Unscripted', 'US', now()), +(3280, 'Dellaventura', 'US', now()), +(3281, 'Delta (US)', 'US', now()), +(3282, 'Delta House', 'US', now()), +(3283, 'Dempsey and Makepeace', 'UK', now()), +(3284, 'Dennis Miller', 'US', now()), +(3285, 'Dennis Miller Live', 'US', now()), +(3286, 'Dennis the Menace (1959)', 'US', now()), +(3287, 'Dennis the Menace (1986)', 'US', now()), +(3288, 'Denver, The Last Dinosaur', 'US', now()), +(3289, 'Department S', 'UK', now()), +(3290, 'Designing For The Sexes', 'US', now()), +(3291, 'Designing Women', 'US', now()), +(3292, 'Design on a Dime', 'US', now()), +(3293, 'Desmond''s', 'UK', now()), +(3294, 'Desperate Housewives', 'US', now()), +(3295, 'Detective Beat', 'US', now()), +(3296, 'Detective Conan', 'JP', now()), +(3297, 'Detention', 'US', now()), +(3298, 'Dexter''s Laboratory', 'US', now()), +(3299, 'Dharma & Greg', 'US', now()), +(3300, 'Diagnosis: Unknown', 'US', now()), +(3301, 'Diagnosis Murder', 'US', now()), +(3302, 'Diamonds', 'CA', now()), +(3303, 'Diary', 'US', now()), +(3304, 'Dick and Dom''s Ask the Family', 'UK', now()), +(3305, 'Dick and Dom in da Bungalow', 'UK', now()), +(3306, 'Dick and the Duchess', 'UK', now()), +(3307, 'The Dick Powell Show', 'US', now()), +(3308, 'Dick Turpin', 'UK', now()), +(3309, 'Diff''rent Strokes', 'US', now()), +(3310, 'Digging for the Truth', 'US', now()), +(3311, 'Digimon: Digital Monsters', 'AJ', now()), +(3312, 'Dilbert', 'US', now()), +(3313, 'Dinner for Five', 'US', now()), +(3314, 'dinnerladies', 'UK', now()), +(3315, 'Dino-Riders', 'US', now()), +(3316, 'Dinosaurs', 'US', now()), +(3317, 'Dinotopia', 'US', now()), +(3318, 'Dinozaurs', 'US', now()), +(3319, 'DiResta', 'US', now()), +(3320, 'Dirty Dancing', 'US', now()), +(3321, 'Dirty Sally', 'US', now()), +(3322, 'Disney''s Hercules', 'US', now()), +(3323, 'House of Mouse', 'US', now()), +(3324, 'Disneyland', 'US', now()), +(3325, 'Dixon of Dock Green', 'UK', now()), +(3326, 'Doc (2001)', 'US', now()), +(3327, 'Doc Martin', 'UK', now()), +(3328, 'Doctor, Doctor', 'US', now()), +(3329, 'Doctor Finlay', 'UK', now()), +(3330, 'Doctor in the House', 'UK', now()), +(3331, 'Doctor Who', 'UK', now()), +(3332, 'Doctor Who (2005)', 'UK', now()), +(3333, 'Doctor Who Confidential', 'UK', now()), +(3334, 'Dog City', 'US', now()), +(3335, 'Dog Eat Dog (US)', 'US', now()), +(3336, 'Dog House', 'CA', now()), +(3337, 'Dog the Bounty Hunter', 'US', now()), +(3338, 'Dolphin Cove', 'US', now()), +(3339, 'Domestic Life', 'US', now()), +(3340, 'Don''t Ask', 'US', now()), +(3341, 'Don Coyote & Sancho Panda', 'UK', now()), +(3342, 'Donkey Kong Country', 'US', now()), +(3343, 'Donny and Marie', 'US', now()), +(3344, 'Doogie Howser, M.D.', 'US', now()), +(3345, 'Dooley Gardens', 'CA', now()), +(3346, 'Doomwatch', 'UK', now()), +(3347, 'Do Over', 'US', now()), +(3348, 'Dora the Explorer', 'US', now()), +(3349, 'Double Dragon', 'US', now()), +(3350, 'Double Rush', 'US', now()), +(3351, 'Double Trouble (US)', 'US', now()), +(3352, 'Doug', 'US', now()), +(3353, 'Down and Out in Beverly Hills', 'US', now()), +(3354, 'Down to Earth (US)', 'US', now()), +(3355, 'Downtown (1999)', 'US', now()), +(3356, 'Downtown (1986)', 'US', now()), +(3357, 'Downwardly Mobile', 'UK', now()), +(3358, 'Dr. 90210', 'US', now()), +(3359, 'Dr. G: Medical Examiner', 'US', now()), +(3360, 'Dr. Katz, Professional Therapist', 'US', now()), +(3361, 'Dr. Laura', 'US', now()), +(3362, 'Dr. Quinn, Medicine Woman', 'US', now()), +(3363, 'Ask Dr. Ruth', 'US', now()), +(3364, 'Dr. Shrinker', 'US', now()), +(3365, 'Dr. Vegas', 'US', now()), +(3366, 'Dracula: The Series', 'US', now()), +(3367, 'Dragnet (1967)', 'US', now()), +(3368, 'Dragnet (1951)', 'US', now()), +(3369, 'Dragnet (1989)', 'US', now()), +(3370, 'Dragon''s Lair', 'US', now()), +(3371, 'Dragon Ball', 'JP', now()), +(3372, 'Dragon Ball GT', 'JP', now()), +(3373, 'Dragon Ball Z (US)', 'AJ', now()), +(3374, 'Dragon Ball Z (Uncut)', 'AJ', now()), +(3375, 'Dragon Booster', 'CA', now()), +(3376, 'Dragon Drive', 'AJ', now()), +(3377, 'Dragon Tales', 'US', now()), +(3378, 'Drake and Josh', 'US', now()), +(3379, 'Drak Pack', 'US', now()), +(3380, 'Drawn Together', 'US', now()), +(3381, 'Dream Job', 'US', now()), +(3382, 'Dream On', 'US', now()), +(3383, 'Dressing for Breakfast', 'UK', now()), +(3384, 'Drew Carey''s Green Screen Show', 'US', now()), +(3385, 'Drexell''s Class', 'US', now()), +(3386, 'Driven', 'US', now()), +(3387, 'Driving Me Crazy', 'US', now()), +(3388, 'Droids', 'US', now()), +(3389, 'Drop the Dead Donkey', 'UK', now()), +(3390, 'Dr Willoughby', 'UK', now()), +(3391, 'Duck Dodgers', 'US', now()), +(3392, 'Duckman', 'US', now()), +(3393, 'Duck Patrol', 'UK', now()), +(3394, 'DuckTales', 'US', now()), +(3395, 'Dudley', 'US', now()), +(3396, 'Duel Masters', 'AJ', now()), +(3397, 'due South', 'CA', now()), +(3399, 'Duet', 'US', now()), +(3400, 'Dumb and Dumber', 'US', now()), +(3401, 'Dumb Bunnies', 'CA', now()), +(3402, 'Dumbo''s Circus', 'US', now()), +(3403, 'Dundee and the Culhane', 'US', now()), +(3404, 'Dungeons & Dragons', 'US', now()), +(3405, 'Dusty''s Trail', 'US', now()), +(3406, 'Dweebs', 'US', now()), +(3407, 'Dynasty (US)', 'US', now()), +(3408, 'E!''s 101', 'US', now()), +(3409, 'E! True Hollywood Story', 'US', now()), +(3410, 'E-Ring', 'US', now()), +(3411, 'E.N.G.', 'CA', now()), +(3412, 'E/R (1984)', 'US', now()), +(3413, 'E''s Otherwise (JP)', 'JP', now()), +(3414, 'Early Edition', 'US', now()), +(3415, 'Earth 2', 'US', now()), +(3416, 'Earth: Final Conflict', 'US', now()), +(3417, 'Earthworm Jim', 'US', now()), +(3418, 'EastEnders', 'UK', now()), +(3419, 'East Side/West Side', 'US', now()), +(3420, 'Ed', 'US', now()), +(3421, 'Ed, Edd n'' Eddy', 'CA', now()), +(3422, 'Edgemont', 'CA', now()), +(3423, 'Edge of Darkness', 'UK', now()), +(3424, 'Eerie, Indiana', 'US', now()), +(3425, 'Eerie, Indiana: The Other Dimension', 'CA', now()), +(3426, 'Eight is Enough', 'US', now()), +(3427, 'Eldorado', 'UK', now()), +(3428, 'Electra Woman and Dyna Girl', 'US', now()), +(3430, 'Elfen Lied', 'JP', now()), +(3431, 'elimiDATE', 'US', now()), +(3432, 'Elimidate Deluxe', 'US', now()), +(3433, 'Ellery Queen', 'US', now()), +(3434, 'Elly & Jools', 'AU', now()), +(3435, 'Emergency!', 'US', now()), +(3436, 'Emeril', 'US', now()), +(3437, 'Emeril Live', 'US', now()), +(3438, 'Emily''s Reasons Why Not', 'US', now()), +(3439, 'Emily of New Moon', 'CA', now()), +(3440, 'Emmerdale', 'UK', now()), +(3441, 'Empire (2005)', 'US', now()), +(3442, 'Empty Nest', 'US', now()), +(3443, 'Encore! Encore!', 'US', now()), +(3444, 'Encounters with the Unexplained', 'US', now()), +(3445, 'Endurance', 'US', now()), +(3446, 'Enemy at the Door', 'UK', now()), +(3447, 'Enos', 'US', now()), +(3448, 'Entertainment Tonight', 'US', now()), +(3449, 'Entourage', 'US', now()), +(3450, 'Equal Justice', 'US', now()), +(3451, 'ER', 'US', now()), +(3452, 'Erasmus Microman', 'UK', now()), +(3453, 'Vision of Escaflowne', 'JP', now()), +(3454, 'Escape from Jupiter', 'AU', now()), +(3455, 'Escape of the Artful Dodger', 'AU', now()), +(3456, 'Espionage', 'UK', now()), +(3457, 'Essence of Emeril', 'US', now()), +(3458, 'Eureeka''s Castle', 'US', now()), +(3459, 'Eureka!', 'CA', now()), +(3460, 'Eve', 'US', now()), +(3461, 'Evening Shade', 'US', now()), +(3462, 'Even Stevens', 'US', now()), +(3463, 'Ever Decreasing Circles', 'UK', now()), +(3464, 'Everwood', 'US', now()), +(3465, 'Everybody Hates Chris', 'US', now()), +(3466, 'Everybody Loves Raymond', 'US', now()), +(3467, 'Everything''s Relative (1999)', 'US', now()), +(7969, 'This Is Your Life (UK)', 'UK', now()), +(3469, 'Ewoks', 'US', now()), +(3470, 'Exosquad', 'US', now()), +(3471, 'Extras', 'UK', now()), +(3472, 'Extreme', 'US', now()), +(3473, 'Extreme Ghostbusters', 'US', now()), +(3474, 'Extreme History with Roger Daltrey', 'US', now()), +(3475, 'Extreme Makeover', 'US', now()), +(3476, 'Extreme Makeover: Home Edition', 'US', now()), +(3477, 'Extreme Makeover: Home Edition: How''d They Do That?', 'US', now()), +(3478, 'Eyes', 'US', now()), +(3479, 'EyeShield 21', 'JP', now()), +(3480, 'EZ Streets', 'US', now()), +(3481, 'F-Zero Falcon Densetsu', 'JP', now()), +(3482, 'F/X: The Series', 'CA', now()), +(3483, 'Fabian of the Yard', 'UK', now()), +(3484, 'Fabulous Life of', 'US', now()), +(3485, 'Faerie Tale Theatre', 'US', now()), +(3486, 'Fafner', 'JP', now()), +(3487, 'Fair City', 'IE', now()), +(3488, 'Fairly Secret Army', 'UK', now()), +(3489, 'Faith in the Future', 'UK', now()), +(3490, 'Faking It', 'UK', now()), +(3491, 'Faking the Video', 'US', now()), +(3492, 'Falcon Beach', 'CA', now()), +(3493, 'Falcon Crest', 'US', now()), +(3494, 'Falcone', 'US', now()), +(3495, 'Fame (1982)', 'US', now()), +(3496, 'Fame Academy', 'UK', now()), +(3497, 'Fame L.A.', 'US', now()), +(3499, 'Family Affair (1966)', 'US', now()), +(3500, 'Family Affair (2002)', 'US', now()), +(3501, 'Family Affairs (1997)', 'UK', now()), +(3502, 'Family Album', 'US', now()), +(3503, 'Family Business (UK)', 'UK', now()), +(3504, 'Family Business (2003)', 'US', now()), +(3505, 'Family Dog', 'US', now()), +(3506, 'Family Guy', 'US', now()), +(3507, 'Family Law', 'US', now()), +(3508, 'Family Man', 'US', now()), +(3509, 'Family Matters', 'US', now()), +(3510, 'Family Plots', 'US', now()), +(3511, 'Family Rules', 'US', now()), +(3512, 'Family Ties', 'US', now()), +(3513, 'The Fantastic Journey', 'US', now()), +(21070, 'MoCap LLC', 'US', now()), +(3515, 'Fantastic Voyage', 'US', now()), +(3516, 'Fantasy Island (1977)', 'US', now()), +(3517, 'Fantasy Island (1998)', 'US', now()), +(3518, 'Far Out Space Nuts', 'US', now()), +(3519, 'Farscape', 'US', now()), +(3520, 'Fastlane', 'US', now()), +(3521, 'Fast Track', 'US', now()), +(3522, 'Fat Actress', 'US', now()), +(3523, 'Fat Albert and the Cosby Kids', 'US', now()), +(3524, 'Father Brown', 'UK', now()), +(3525, 'Father Dowling Mysteries', 'US', now()), +(3526, 'Fatherhood', 'US', now()), +(3527, 'Father Knows Best', 'US', now()), +(3528, 'Father Murphy', 'US', now()), +(3529, 'Father of the Bride', 'US', now()), +(3530, 'Father of the Pride', 'US', now()), +(3531, 'Father Ted', 'UK', now()), +(3532, 'Fawlty Towers', 'UK', now()), +(3533, 'Fear Factor (US)', 'US', now()), +(3534, 'Fear Factor (UK)', 'UK', now()), +(3535, 'Feds', 'US', now()), +(3536, 'Felicity', 'US', now()), +(3537, 'Felix The Cat', 'US', now()), +(3538, 'Ferris Bueller', 'US', now()), +(3539, 'Fibber McGee & Molly', 'US', now()), +(3540, 'Fievel''s American Tails', 'US', now()), +(3541, 'Fighting Foodons', 'AJ', now()), +(3542, 'Fillmore!', 'US', now()), +(3543, 'Film School', 'US', now()), +(3544, 'Filthy, Rich and Catflap', 'UK', now()), +(15219, 'Ancient Discoveries', 'US', now()), +(3546, 'Finder of Lost Loves', 'US', now()), +(3547, 'Fired Up', 'US', now()), +(3548, 'Firefly', 'US', now()), +(3549, 'Fire Me, Please', 'US', now()), +(3550, 'First Monday', 'US', now()), +(3551, 'First Time Out', 'US', now()), +(3552, 'First Wave', 'US', now()), +(3553, 'First Years', 'US', now()), +(3554, 'Five Mile Creek', 'AU', now()), +(3555, 'Flamingo Road', 'US', now()), +(3556, 'Flash Forward (1997)', 'CA', now()), +(3557, 'Flash Gordon (1954)', 'US', now()), +(3558, 'Flat!', 'CA', now()), +(3559, 'Flesh ''n'' Blood', 'US', now()), +(3560, 'Flint The Time Detective', 'AJ', now()), +(3561, 'Flipper (1995)', 'US', now()), +(3562, 'Flipper (1964)', 'US', now()), +(3563, 'Flo', 'US', now()), +(3564, 'Fly by Night', 'US', now()), +(3565, 'Flying Blind', 'US', now()), +(3566, 'Flying High', 'US', now()), +(3567, 'Flying Rhino Junior High', 'CA', now()), +(3568, 'Foley Square', 'US', now()), +(3569, 'Fonz and the Happy Days Gang', 'US', now()), +(3570, 'Food 911', 'US', now()), +(3571, 'Foolish Heart', 'CA', now()), +(3572, 'Fooly Cooly', 'JP', now()), +(3573, 'Footballers'' Wives', 'UK', now()), +(3574, 'Footballers'' Wives - Extra Time', 'UK', now()), +(3575, 'For Better or for Worse', 'CA', now()), +(3576, 'Ford Star Jubilee', 'US', now()), +(3577, 'Ford Startime', 'US', now()), +(3578, 'Ford Theatre', 'US', now()), +(3579, 'The Ford Television Theatre', 'US', now()), +(3580, 'Foreign Exchange', 'AU', now()), +(3581, 'Forever Eden', 'US', now()), +(3582, 'Forever Knight', 'CA', now()), +(3583, 'For Love or Money', 'US', now()), +(3584, 'For the People (2002)', 'US', now()), +(3585, 'Fortune Hunter', 'US', now()), +(3586, 'For Your Love', 'US', now()), +(3587, 'Foster''s Home for Imaginary Friends', 'US', now()), +(3588, 'Four Corners (US)', 'US', now()), +(3589, 'Foxy Lady', 'UK', now()), +(3590, 'Foyle''s War', 'UK', now()), +(3591, 'Fraggle Rock', 'US', now()), +(3592, 'Frank''s Place', 'US', now()), +(3593, 'Frankenstein Jr. and the Impossibles', 'US', now()), +(3594, 'Franklin', 'CA', now()), +(3595, 'Frank Stubbs Promotes', 'UK', now()), +(3596, 'Frannie''s Turn', 'US', now()), +(3597, 'Frasier', 'US', now()), +(3598, 'Fraternity Life', 'US', now()), +(3599, 'Fraud Squad', 'UK', now()), +(3600, 'Freakazoid!', 'US', now()), +(3601, 'Freaks and Geeks', 'US', now()), +(3602, 'Freakylinks', 'US', now()), +(3604, 'Freddie', 'US', now()), +(3605, 'Freddy''s Nightmares', 'US', now()), +(3606, 'Fred Flintstone & Friends', 'US', now()), +(3607, 'Freedom', 'US', now()), +(3608, 'Free for All (US)', 'US', now()), +(3609, 'Free Spirit', 'US', now()), +(3610, 'French & Saunders', 'UK', now()), +(3611, 'Freshman Diaries', 'US', now()), +(3612, 'Freshman Dorm', 'US', now()), +(3613, 'Friday Night with Jonathan Ross', 'UK', now()), +(3614, 'Fridays', 'US', now()), +(3615, 'Friday the 13th: The Series', 'US', now()), +(3616, 'Friends', 'US', now()), +(3617, 'Fries With That?', 'CA', now()), +(3618, 'Frontier House', 'US', now()), +(3619, 'Frontline (AU)', 'AU', now()), +(3620, 'F Troop', 'US', now()), +(3621, 'Fudge', 'US', now()), +(3622, 'Full House (US)', 'US', now()), +(3623, 'Full House (1985)', 'UK', now()), +(3624, 'FullMetal Alchemist (US)', 'AJ', now()), +(3625, 'Full Metal Challenge', 'US', now()), +(3626, 'Full Metal Panic!', 'JP', now()), +(3627, 'Funky Cops', 'US', now()), +(3628, 'Futurama', 'US', now()), +(3629, 'Future Cop', 'US', now()), +(3630, 'G-Spot', 'CA', now()), +(3631, 'GBH', 'UK', now()), +(3632, 'G.I. Joe', 'US', now()), +(3633, 'G.I. Joe Extreme', 'US', now()), +(3634, 'G.I. Joe Sigma Six', 'US', now()), +(3635, 'G4TV.COM', 'US', now()), +(3636, 'Gabriel''s Fire', 'US', now()), +(3637, 'Galactica 1980', 'US', now()), +(3638, 'Galaxy Angel', 'JP', now()), +(3639, 'Galidor: Defenders of the Outer Dimension', 'US', now()), +(3641, 'Game On!', 'UK', now()), +(3642, 'Game Over', 'US', now()), +(3643, 'Garage Takeover', 'US', now()), +(3644, 'Garfield & Friends', 'US', now()), +(3645, 'Garfield Goose & Friends', 'US', now()), +(3646, 'Gargoyles', 'US', now()), +(7002, 'Wild Kingdom', 'US', now()), +(3648, 'Garrison''s Gorillas', 'US', now()), +(3649, 'Gary and Mike', 'US', now()), +(3650, 'Gary the Rat', 'US', now()), +(3651, 'Gastineau Girls', 'US', now()), +(3652, 'General Electric Theater', 'US', now()), +(3653, 'General Hospital (US)', 'US', now()), +(3654, 'General Hospital (UK)', 'UK', now()), +(3655, 'Generation O!', 'US', now()), +(3656, 'George', 'US', now()), +(3657, 'George & Leo', 'US', now()), +(3658, 'George and Mildred', 'UK', now()), +(3659, 'George and Martha', 'US', now()), +(3660, 'George Lopez', 'US', now()), +(3661, 'Get a Life', 'US', now()), +(3662, 'Get Along Gang', 'US', now()), +(3663, 'Getbackers', 'JP', now()), +(3664, 'Get Real (UK)', 'UK', now()), +(3665, 'Get Real (US)', 'US', now()), +(3666, 'Get Smart (1965)', 'US', now()), +(3667, 'Get Smart (1995)', 'US', now()), +(3668, 'Get Some In!', 'UK', now()), +(3669, 'Getting By', 'US', now()), +(3670, 'Getting Personal', 'US', now()), +(3671, 'Get Well Soon', 'UK', now()), +(3672, 'Ghostbusters', 'US', now()), +(3673, 'Ghost Hunters', 'US', now()), +(3674, 'Ghost in the Shell: Stand Alone Complex', 'AJ', now()), +(3675, 'Ghosts of Motley Hall', 'UK', now()), +(3676, 'Ghost Stories (US)', 'US', now()), +(3677, 'Ghost Whisperer', 'US', now()), +(3678, 'Ghostwriter', 'US', now()), +(3679, 'Gideon''s Crossing', 'US', now()), +(15224, 'Pinks', 'US', now()), +(3681, 'Gidget', 'US', now()), +(3682, 'Gilligan''s Island', 'US', now()), +(3683, 'Gilmore Girls', 'US', now()), +(3684, 'Gimme a Break!', 'US', now()), +(3685, 'Gimme, Gimme, Gimme', 'UK', now()), +(3686, 'Girlfriends', 'US', now()), +(3687, 'Girls Behaving Badly', 'US', now()), +(3688, 'Girls Bravo', 'JP', now()), +(3689, 'girls club', 'US', now()), +(3690, 'Girls v. Boys', 'US', now()), +(3691, 'Glam Metal Detectives', 'UK', now()), +(3692, 'Glasgow Kiss', 'UK', now()), +(3693, 'Glencannon', 'UK', now()), +(3694, 'Gloria', 'US', now()), +(3695, 'Glory Days (2002)', 'US', now()), +(3696, 'Glory Days (1990)', 'US', now()), +(3697, 'GLOW: Gorgeous Ladies of Wrestling', 'US', now()), +(3699, 'Go, Diego, Go!', 'US', now()), +(3700, 'God, the Devil and Bob', 'US', now()), +(3701, 'Godiva''s', 'CA', now()), +(3702, 'Godzilla: The Series', 'US', now()), +(3703, 'Go Fish', 'US', now()), +(3704, 'Going to California', 'US', now()), +(3705, 'Going to Extremes', 'US', now()), +(3706, 'Gokudo', 'JP', now()), +(3707, 'Gomer Pyle, U.S.M.C.', 'US', now()), +(3708, 'Good & Evil', 'US', now()), +(3709, 'Good Advice', 'US', now()), +(3710, 'Good Company', 'US', now()), +(3711, 'Good Deal with Dave Lieberman', 'US', now()), +(3712, 'Goode Behavior', 'US', now()), +(3713, 'Good Girls Don''t', 'US', now()), +(3714, 'Good Grief', 'US', now()), +(3715, 'Good Guys Bad Guys', 'AU', now()), +(3716, 'Good Heavens', 'US', now()), +(3717, 'Good Morning, Miami', 'US', now()), +(3718, 'Good Morning, Miss Bliss', 'US', now()), +(3719, 'Good Morning America', 'US', now()), +(3720, 'Good News (US)', 'US', now()), +(3721, 'Goodnight, Beantown', 'US', now()), +(3722, 'Goodnight Sweetheart', 'UK', now()), +(3723, 'Good Times', 'US', now()), +(3724, 'Good vs Evil', 'US', now()), +(3725, 'Goof Troop', 'US', now()), +(3726, 'Goosebumps', 'CA', now()), +(3727, 'Grace Under Fire', 'US', now()), +(3728, 'Grand', 'US', now()), +(3729, 'Grandmaster Freak & the Furious 15', 'US', now()), +(3730, 'The Great Grape Ape Show', 'US', now()), +(3731, 'Grapevine (2000)', 'US', now()), +(3732, 'Grapevine (1992)', 'US', now()), +(3733, 'Gravedale High', 'US', now()), +(3734, 'Great Ghost Tales', 'US', now()), +(3735, 'Great Scott!', 'US', now()), +(3736, 'Green Acres', 'US', now()), +(3737, 'The Green Green Grass', 'UK', now()), +(3738, 'Green Wing', 'UK', now()), +(3739, 'Greetings from Tucson', 'US', now()), +(3740, 'Greg the Bunny', 'US', now()), +(3741, 'Grey''s Anatomy', 'US', now()), +(3742, 'Grim & Evil', 'US', now()), +(3743, 'Grim Tales', 'UK', now()), +(3744, 'Grizzly Tales for Gruesome Kids', 'UK', now()), +(3745, 'Grosse Pointe', 'US', now()), +(3746, 'Grounded for Life', 'US', now()), +(3747, 'Growing Pains (US)', 'US', now()), +(3748, 'Growing Up Gotti', 'US', now()), +(3749, 'Grown Ups (US)', 'US', now()), +(3750, 'Great Teacher Onizuka', 'JP', now()), +(3751, 'Guess Who''s Coming to Dinner? (UK)', 'UK', now()), +(3752, 'Guiding Light', 'US', now()), +(3753, 'Guinevere Jones', 'CA', now()), +(3754, 'Guinness World Records: Primetime', 'US', now()), +(3755, 'Gulliver''s Travels', 'CA', now()), +(3756, 'Gumby Adventures', 'US', now()), +(3757, 'Gummi Bears', 'US', now()), +(3758, 'Gun', 'US', now()), +(21897, 'Verbouwers XXL, De', 'NL', now()), +(3760, 'Gundam SEED', 'AJ', now()), +(3761, 'Gundam Wing', 'AJ', now()), +(3762, 'Gundam X', 'JP', now()), +(3763, 'Gundam ZZ', 'JP', now()), +(3764, 'Gunslinger', 'US', now()), +(3765, 'Gunslinger Girl', 'AJ', now()), +(3766, 'Gunsmoke', 'US', now()), +(3767, 'Paradise', 'US', now()), +(3768, 'Guts & Bolts', 'US', now()), +(3769, 'Guys Like Us', 'US', now()), +(3770, 'H.G. Wells'' Invisible Man', 'UK', now()), +(3771, 'H.R. Pufnstuf', 'US', now()), +(3772, 'Hack', 'US', now()), +(3773, 'Hadleigh', 'UK', now()), +(3774, 'Hagane no Renkinjutsushi (2003)', 'JP', now()), +(3775, 'Half & Half', 'US', now()), +(3776, 'Halifax f.p.', 'AU', now()), +(3777, 'Hallmark Hall Of Fame', 'US', now()), +(3778, 'Hamish Macbeth', 'UK', now()), +(3779, 'Hammer House of Horror', 'UK', now()), +(3780, 'Hammer House of Mystery & Suspense', 'UK', now()), +(3781, 'Hamtaro (US)', 'AJ', now()), +(3782, 'Hangin'' with Mr. Cooper', 'US', now()), +(3783, 'Hang Time', 'US', now()), +(3784, 'Hannay', 'UK', now()), +(3785, 'Happy Days', 'US', now()), +(3786, 'Happy Family', 'US', now()), +(3787, 'Harbour Lights', 'UK', now()), +(3788, 'Hardball (1994)', 'US', now()), +(3789, 'Hardball (1989)', 'US', now()), +(3790, 'Hardcastle & McCormick', 'US', now()), +(3791, 'Hard Time on Planet Earth', 'US', now()), +(3792, 'Harry (US)', 'US', now()), +(3793, 'Harry''s Game', 'UK', now()), +(3794, 'Harry and His Bucket Full of Dinosaurs', 'UK', now()), +(3795, 'Harry and the Hendersons', 'US', now()), +(3796, 'Harry O', 'US', now()), +(3797, 'Harsh Realm', 'US', now()), +(3798, 'Harts of the West', 'US', now()), +(3799, 'Hart to Hart', 'US', now()), +(3800, 'Harvey Birdman, Attorney at Law', 'US', now()), +(3801, 'Haunted (US)', 'US', now()), +(3802, 'Haunted (UK)', 'UK', now()), +(3803, 'Have Gun, Will Travel', 'US', now()), +(3804, 'Have I Got News for You', 'UK', now()), +(3805, 'Hawaii', 'US', now()), +(3806, 'Hawaiian Eye', 'US', now()), +(3807, 'Hawaii Five-O (1968)', 'US', now()), +(3808, 'Hawkeye', 'US', now()), +(3809, 'Hawkeye and the Last of the Mohicans', 'CA', now()), +(3810, 'Hawkins', 'US', now()), +(3811, 'He-Man and the Masters of the Universe (1983)', 'US', now()), +(3812, 'He-Man and the Masters of the Universe (2002)', 'US', now()), +(3813, 'He''s A Lady', 'US', now()), +(3814, 'Head Cases', 'US', now()), +(3815, 'Headland', 'AU', now()), +(3816, 'Head of the Class', 'US', now()), +(3817, 'Head Over Heels (US)', 'US', now()), +(3818, 'Health and Efficiency', 'UK', now()), +(3819, 'Heartbeat', 'UK', now()), +(3820, 'Heart of the City', 'US', now()), +(3821, 'Hearts Afire', 'US', now()), +(3822, 'Heat Guy J (US)', 'AJ', now()), +(3823, 'Heathcliff (1984)', 'US', now()), +(3824, 'Heat of the Sun', 'UK', now()), +(3825, 'Heaven Help Us', 'US', now()), +(3826, 'Heavy Gear', 'US', now()), +(3827, 'Helen West', 'UK', now()), +(3828, 'Hell''s Kitchen (US)', 'US', now()), +(3829, 'Hello Kitty''s Paradise', 'AJ', now()), +(3830, 'Hello Kitty''s Furry Tale Theater', 'US', now()), +(3831, 'Hennesey', 'US', now()), +(3832, 'Henry''s Film Corner', 'US', now()), +(3833, 'Henry''s World', 'CA', now()), +(3834, 'Herbie, the Love Bug', 'US', now()), +(3835, 'Hercules: The Legendary Journeys', 'US', now()), +(3836, 'Here''s Lucy', 'US', now()), +(3837, 'Here and Now', 'US', now()), +(3838, 'Here Comes the Grump', 'US', now()), +(3839, 'Herman''s Head', 'US', now()), +(3840, 'Hetty Wainthropp Investigates', 'UK', now()), +(3841, 'Hex', 'UK', now()), +(3842, 'Hey Arnold!', 'US', now()), +(3843, 'Hey Dude', 'US', now()), +(3844, 'Hey Vern, It''s Ernest!', 'US', now()), +(3845, 'Hidden Hills', 'US', now()), +(3846, 'Hidden Howie: The Private Life of a Public Nuisance', 'US', now()), +(3847, 'Higglytown Heroes', 'US', now()), +(3848, 'Higher Ground', 'US', now()), +(3849, 'High Incident', 'US', now()), +(3850, 'Highlander', 'US', now()), +(3851, 'Highlander: The Animated Series', 'US', now()), +(3852, 'Highlander: The Raven', 'US', now()), +(3853, 'High Mountain Rangers', 'US', now()), +(3854, 'High School Reunion', 'US', now()), +(3855, 'High Sierra Search and Rescue', 'US', now()), +(3856, 'High Society (1995)', 'US', now()), +(3857, 'High Spirits with Shirley Ghostman', 'UK', now()), +(3858, 'High Stakes', 'UK', now()), +(3859, 'High Tide', 'US', now()), +(3860, 'Highway to Heaven', 'US', now()), +(3861, 'Hi Hi Puffy AmiYumi', 'US', now()), +(3862, 'Hi Honey, I''m Home!', 'US', now()), +(3863, 'Hikaru no Go', 'JP', now()), +(3864, 'Hiller and Diller', 'US', now()), +(3865, 'Hill Street Blues', 'US', now()), +(3866, 'Himitsu Sentai Goranger', 'JP', now()), +(3867, 'Hippies', 'UK', now()), +(3868, 'History''s Mysteries', 'US', now()), +(3869, 'History Detectives', 'US', now()), +(3870, 'Hit Me Baby One More Time (US)', 'US', now()), +(3871, 'Hit Me Baby One More Time (UK)', 'UK', now()), +(3872, 'Hitz', 'US', now()), +(3873, 'Hobby Lobby', 'US', now()), +(3874, 'Hogan''s Heroes', 'US', now()), +(3875, 'Hogan Knows Best', 'US', now()), +(3876, 'Holby City', 'UK', now()), +(3877, 'Holding the Baby (US)', 'US', now()), +(3878, 'Hollyoaks: Movin'' On', 'UK', now()), +(3879, 'Hollywood Off Ramp', 'US', now()), +(3880, 'Hollywood Safari', 'US', now()), +(3881, 'Holmes and Yoyo', 'US', now()), +(3882, 'Home and Away (AU)', 'AU', now()), +(3883, 'Homeboys in Outer Space', 'US', now()), +(3884, 'Home Delivery', 'US', now()), +(3885, 'Home Fires', 'US', now()), +(3886, 'Homefront', 'US', now()), +(3887, 'Home Improvement', 'US', now()), +(3888, 'Home Movies', 'US', now()), +(3889, 'Homicide: Life on the Street', 'US', now()), +(3890, 'Hondo', 'US', now()), +(3891, 'Honey, I Shrunk the Kids: The TV Show', 'US', now()), +(3892, 'Honey West', 'US', now()), +(3893, 'Hong Kong', 'US', now()), +(3894, 'Hong Kong Phooey', 'US', now()), +(3895, 'Hooperman', 'US', now()), +(3896, 'Hopalong Cassidy', 'US', now()), +(3897, 'Hope & Faith', 'US', now()), +(3898, 'Hope and Gloria', 'US', now()), +(3899, 'Hope Island', 'US', now()), +(3900, 'Horatio Hornblower', 'UK', now()), +(3901, 'Hotel', 'US', now()), +(3902, 'Hotel Erotica', 'US', now()), +(3903, 'Hotel Malibu', 'US', now()), +(3904, 'Hot Line', 'US', now()), +(3905, 'Hot Properties', 'US', now()), +(3906, 'Hot Shots', 'CA', now()), +(3907, 'Hot Wheels Highway 35', 'US', now()), +(3908, 'House', 'US', now()), +(3909, 'House Doctor', 'UK', now()), +(3910, 'House Hunters', 'US', now()), +(3911, 'House of Dreams', 'US', now()), +(3912, 'House Rules (2003)', 'US', now()), +(3913, 'Houston Knights', 'US', now()), +(3914, 'Howard Stern: The Teenage Years', 'US', now()), +(3915, 'How Do I Look?', 'US', now()), +(3916, 'How Do You Want Me?', 'UK', now()), +(3917, 'Howdy Doody', 'US', now()), +(3918, 'How I Met Your Mother', 'US', now()), +(3919, 'How the West Was Won', 'US', now()), +(3920, 'How to be a Little Sod', 'UK', now()), +(3921, 'How to Boil Water', 'US', now()), +(3922, 'How To Marry A Millionaire', 'US', now()), +(3923, 'Huckleberry Finn and His Friends', 'CA', now()), +(3924, 'Hudson Street', 'US', now()), +(3925, 'Huff', 'US', now()), +(31512, 'Kyo no Gononi', 'JP', now()), +(3927, 'Hulk Hogan''s Rock ''N'' Wrestling', 'US', now()), +(3928, 'Hull High', 'US', now()), +(3929, 'Human Target (1992)', 'US', now()), +(3930, 'Hunter (1984)', 'US', now()), +(3931, 'Hunter X Hunter (1999)', 'JP', now()), +(3932, 'Hype', 'US', now()), +(3933, 'Hyperion Bay', 'US', now()), +(3934, 'Hypernauts', 'US', now()), +(3935, 'I''ll Fly Away', 'US', now()), +(3936, 'I, Lovett', 'UK', now()), +(3937, 'I''m Alan Partridge', 'UK', now()), +(3938, 'I''m With Busey', 'US', now()), +(3939, 'I''m With Her', 'US', now()), +(3940, 'I am Weasel', 'US', now()), +(3941, 'I Dream of Jeannie', 'US', now()), +(3942, 'I Love 1980''s', 'UK', now()), +(3943, 'I Love 1990''s', 'UK', now()), +(3944, 'I Love Lucy', 'US', now()), +(3945, 'I Love the ''80s', 'US', now()), +(3946, 'I Love the ''80s Strikes Back', 'US', now()), +(3947, 'I Love the ''90s', 'US', now()), +(3948, 'I Love the ''90s: Part Deux', 'US', now()), +(3949, 'Imagine That', 'US', now()), +(3950, 'Immortal Grand Prix', 'AJ', now()), +(3951, 'Impact: Stories of Survival', 'US', now()), +(3952, 'In-Laws', 'US', now()), +(3953, 'In a Heartbeat', 'US', now()), +(3954, 'Inconceivable', 'US', now()), +(3955, 'Incredible Crash Dummies', 'US', now()), +(3956, 'Incredible Story Studio', 'CA', now()), +(3957, 'In Deep', 'UK', now()), +(3958, 'Infamous', 'US', now()), +(3959, 'In Justice', 'US', now()), +(3960, 'Ink', 'US', now()), +(3961, 'In Living Color', 'US', now()), +(3962, 'In Search of.....', 'US', now()), +(3963, 'In Search of Happiness', 'UK', now()), +(3964, 'In Search Of The Partridge Family', 'US', now()), +(3965, 'Inside Dish with Rachael Ray', 'US', now()), +(3966, 'Inside Fame', 'US', now()), +(3967, 'Inside Schwartz', 'US', now()), +(3968, 'Inside the Actors Studio', 'US', now()), +(3969, 'Inside Victor Lewis-Smith', 'UK', now()), +(3970, 'Insomniac with Dave Attell', 'US', now()), +(3971, 'Inspector Gadget', 'US', now()), +(3972, 'The Inspector Lynley Mysteries', 'UK', now()), +(3973, 'Inspector Morse', 'UK', now()), +(3974, 'Instant Star', 'CA', now()), +(3975, 'Internet Slutts', 'CA', now()), +(3976, 'Intervention', 'US', now()), +(3977, 'In the Beginning', 'US', now()), +(3978, 'In the Heat of the Night', 'US', now()), +(3979, 'In the House', 'US', now()), +(3980, 'Intimate Sessions', 'US', now()), +(3981, 'Into Character', 'US', now()), +(3982, 'Into the Labyrinth', 'UK', now()), +(3983, 'Into the West', 'US', now()), +(3984, 'Inuyasha (JP)', 'JP', now()), +(3985, 'Invader ZIM', 'US', now()), +(3986, 'Invasion', 'US', now()), +(3987, 'Invasion: Earth', 'UK', now()), +(3988, 'Invasion America', 'US', now()), +(3989, 'Invasion Iowa', 'US', now()), +(3990, 'Invent This!', 'US', now()), +(3991, 'Investigating History', 'US', now()), +(31515, 'Take Me Out (US)', 'US', now()), +(3993, 'Iron Chef', 'JP', now()), +(3994, 'Iron Chef America', 'US', now()), +(3995, 'Ironside', 'US', now()), +(3996, 'Isidingo', 'ZA', now()), +(3997, 'Isis', 'US', now()), +(3998, 'Is It Bill Bailey?', 'UK', now()), +(3999, 'Is It Legal?', 'UK', now()), +(4000, 'I Spy (US)', 'US', now()), +(4001, 'It''s About Time', 'US', now()), +(4002, 'It''s All Relative', 'US', now()), +(4003, 'It''s Always Jan', 'US', now()), +(4004, 'It''s Always Sunny in Philadelphia', 'US', now()), +(4005, 'It''s a Man''s World', 'US', now()), +(4006, 'It''s Christopher Lowell', 'US', now()), +(4007, 'It''s Garry Shandling''s Show', 'US', now()), +(4008, 'It''s Good to be ...', 'US', now()), +(4009, 'It''s Like, You Know...', 'US', now()), +(4010, 'It''s Your Move', 'US', now()), +(4011, 'It Had to Be You', 'US', now()), +(4012, 'It Takes a Thief (1968)', 'US', now()), +(4013, 'It Takes a Thief (2005)', 'US', now()), +(10306, 'On the Lot', 'US', now()), +(4015, 'Ivanhoe (1958)', 'UK', now()), +(4016, 'I Wanna Be a Soap Star', 'US', now()), +(4017, 'I Want a Famous Face', 'US', now()), +(4018, 'I Want To Be a Hilton', 'US', now()), +(4019, 'I Was a Sixth Grade Alien!', 'CA', now()), +(4020, 'Jabberjaw', 'US', now()), +(4021, 'Jack & Bobby', 'US', now()), +(4022, 'Jack and Jeremy''s Real Lives', 'UK', now()), +(4023, 'Jack & Jill', 'US', now()), +(4024, 'Jack''s Place', 'US', now()), +(4025, 'Jack and Mike', 'US', now()), +(4026, 'Jackass', 'US', now()), +(4027, 'Jack Dee Live at the Apollo', 'UK', now()), +(4028, 'Jackie Chan Adventures', 'US', now()), +(4029, 'Jack of All Trades', 'US', now()), +(4030, 'Jackson 5ive', 'US', now()), +(4031, 'Jacob Two-Two', 'CA', now()), +(4032, 'JAG', 'US', now()), +(4033, 'Jake 2.0', 'US', now()), +(4034, 'Jake and the Fatman', 'US', now()), +(4035, 'Jake and The Kid', 'US', now()), +(4036, 'Jake in Progress', 'US', now()), +(4037, 'Jakers! The Adventures of Piggley Winks', 'US', now()), +(4038, 'Jamie''s Kitchen', 'US', now()), +(4039, 'Jamie''s School Dinners', 'UK', now()), +(4041, 'Jayce and the Wheeled Warriors', 'US', now()), +(4042, 'Jeeves and Wooster', 'UK', now()), +(4043, 'Jeff Corwin Unleashed', 'US', now()), +(4044, 'Jefferson Drum', 'US', now()), +(4045, 'Jem', 'US', now()), +(4046, 'Jenny', 'US', now()), +(4047, 'Jenny Jones', 'US', now()), +(4048, 'Jeopardy', 'UK', now()), +(4049, 'Jeremiah', 'US', now()), +(4050, 'Jeremy Clarkson''s Motorworld', 'UK', now()), +(4051, 'Jericho (1966)', 'US', now()), +(4052, 'Jesse', 'US', now()), +(4053, 'Jim Henson''s The Storyteller', 'US', now()), +(4054, 'Jim Henson''s The Storyteller: Greek Myths', 'UK', now()), +(4055, 'Jimmy Kimmel Live', 'US', now()), +(4056, 'Joanie Loves Chachi', 'US', now()), +(4057, 'Joan of Arcadia', 'US', now()), +(4058, 'Jo Brand Through the Cakehole', 'UK', now()), +(4059, 'Joe''s Life', 'US', now()), +(4060, 'Joe Millionaire', 'US', now()), +(4061, 'Joey', 'US', now()), +(4062, 'John Doe', 'US', now()), +(4063, 'The Client', 'US', now()), +(4064, 'John Mayer Has a TV Show', 'US', now()), +(4065, 'Johnny Bago', 'US', now()), +(4066, 'Johnny Bravo', 'US', now()), +(4067, 'Johnny Ringo', 'US', now()), +(4068, 'Johnny Staccato', 'US', now()), +(4069, 'Johnny Test', 'US', now()), +(4070, 'Made In America (2004)', 'US', now()), +(4071, 'Joint Account', 'UK', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(4072, 'JoJo''s Circus', 'US', now()), +(4073, 'Jonathan Creek', 'UK', now()), +(4074, 'Jonny Quest (1964)', 'US', now()), +(4075, 'Jonny Quest (1986)', 'US', now()), +(4076, 'Jonny Zero', 'US', now()), +(4077, 'Josie and the Pussycats', 'US', now()), +(4078, 'Josie and the Pussycats in Outer Space', 'US', now()), +(4079, 'Judge Joe Brown', 'US', now()), +(4080, 'Judgement Day', 'US', now()), +(4081, 'Judge Roy Bean', 'US', now()), +(4082, 'Judging Amy', 'US', now()), +(4083, 'Jumanji', 'US', now()), +(4084, 'Jumpers for Goalposts', 'UK', now()), +(4085, 'Jungle Cubs', 'US', now()), +(4086, 'Jungle Jim', 'US', now()), +(4087, 'Jungle Run', 'UK', now()), +(4088, 'Junkyard Wars', 'US', now()), +(4089, 'Just Cause', 'US', now()), +(4090, 'Just Deal', 'US', now()), +(4091, 'Just For Fun!', 'US', now()), +(4092, 'Just For Laughs (2003)', 'UK', now()), +(4093, 'Justice League Unlimited', 'US', now()), +(4094, 'Just Legal', 'US', now()), +(4095, 'Just Shoot Me', 'US', now()), +(4096, 'Just the Ten of Us', 'US', now()), +(4097, 'K-9 and Company', 'UK', now()), +(4098, 'Kablam!', 'US', now()), +(4099, 'Kama Sutra', 'US', now()), +(4100, 'Kamen Rider', 'JP', now()), +(4101, 'Kamen Rider V3', 'JP', now()), +(4102, 'Kangaroo Palace', 'AU', now()), +(4103, 'Karen Sisco', 'US', now()), +(4104, 'Kate & Allie', 'US', now()), +(4105, 'Kate Brasher', 'US', now()), +(4106, 'Kathy Griffin: My Life on the D-List', 'US', now()), +(4107, 'Katie Joplin', 'US', now()), +(4108, 'Kavanagh Q.C.', 'UK', now()), +(4109, 'Keen Eddie', 'US', now()), +(4110, 'Kelly Kelly', 'US', now()), +(4111, 'Kelsey Grammer Presents The Sketch Show', 'US', now()), +(4112, 'Kenan & Kel', 'US', now()), +(4113, 'Kenny the Shark', 'US', now()), +(4114, 'Kept', 'US', now()), +(4115, 'Kerching', 'UK', now()), +(4116, 'Keroro Gunso', 'JP', now()), +(4117, 'Kevin Hill', 'US', now()), +(4118, 'Kevin Spencer', 'CA', now()), +(4119, 'Key West', 'US', now()), +(4120, 'Kidd Video', 'US', now()), +(4121, 'Kid Notorious', 'US', now()), +(4122, 'Kid Paddle', 'CA', now()), +(4123, 'Kids From C.A.P.E.R.', 'US', now()), +(4124, 'Kids Incorporated', 'US', now()), +(4125, 'Kids Say the Darndest Things', 'US', now()), +(4126, 'Kikaider (US)', 'AJ', now()), +(4127, 'Killer Instinct', 'US', now()), +(4128, 'Kim Possible', 'US', now()), +(4129, 'Kindred: The Embraced', 'US', now()), +(4130, 'King (2003)', 'CA', now()), +(4131, 'King Arthur & the Knights of Justice', 'US', now()), +(4132, 'King of Bandit Jing', 'JP', now()), +(4133, 'King of Kensington', 'CA', now()), +(4134, 'King of the Hill', 'US', now()), +(4135, 'King of the Jungle', 'US', now()), +(4136, 'Kingpin', 'US', now()), +(4137, 'Kinvig', 'UK', now()), +(4138, 'Kipper', 'UK', now()), +(4139, 'Kirby: Right Back at Ya! (US)', 'AJ', now()), +(4140, 'Kirk', 'US', now()), +(4141, 'Kirsty''s TV Meltdown', 'UK', now()), +(4142, 'Kiss Me Kate', 'UK', now()), +(4143, 'Kitchen Accomplished', 'US', now()), +(4144, 'Kitchen Confidential', 'US', now()), +(4145, 'Knight & Daye', 'US', now()), +(4146, 'Knight Rider (1982)', 'US', now()), +(4147, 'Knights of the Zodiac', 'US', now()), +(4148, 'Knightwatch', 'US', now()), +(4149, 'Knock First', 'US', now()), +(4150, 'Knots Landing', 'US', now()), +(4151, 'Knowing Me, Knowing You with Alan Partridge', 'UK', now()), +(4152, 'Kojak (1973)', 'US', now()), +(4153, 'Kojak (2005)', 'US', now()), +(4154, 'Kokoro Library', 'JP', now()), +(4155, 'Kolchak: The Night Stalker', 'US', now()), +(14559, 'Against The Blade Of Honour', 'HK', now()), +(4157, 'Kong: The Animated Series', 'CA', now()), +(4158, 'Kraft Music Hall', 'US', now()), +(4159, 'Kristin', 'US', now()), +(4160, 'Krypto the Superdog', 'US', now()), +(4161, 'K Street', 'US', now()), +(4162, 'Kung Fu', 'US', now()), +(4163, 'Kung Fu: The Legend Continues', 'US', now()), +(4164, 'Kurt Vonnegut''s Monkey House', 'US', now()), +(4165, 'KYTV', 'UK', now()), +(4166, 'L. A. Doctors', 'US', now()), +(4167, 'L.A. Dragnet', 'US', now()), +(4168, 'L.A. Firefighters', 'US', now()), +(4169, 'L.A. Heat', 'US', now()), +(4170, 'L.A. Law', 'US', now()), +(4171, 'Ladies Man', 'US', now()), +(4172, 'Lady Blue', 'US', now()), +(4173, 'La Femme Nikita', 'US', now()), +(4174, 'Laguna Beach', 'US', now()), +(4175, 'Lamb Chop''s Play-Along', 'US', now()), +(4176, 'Lancer', 'US', now()), +(4177, 'Land''s End', 'US', now()), +(4178, 'Land of the Giants', 'US', now()), +(4179, 'Land of the Lost (1974)', 'US', now()), +(4180, 'Land of the Lost (1991)', 'US', now()), +(4181, 'Laramie', 'US', now()), +(4182, 'Laredo', 'US', now()), +(4183, 'Largo Winch', 'US', now()), +(4184, 'Larry King Live', 'US', now()), +(4185, 'Lassie (US)', 'US', now()), +(4186, 'Lassie (CA)', 'CA', now()), +(4187, 'Lassie''s Rescue Rangers', 'US', now()), +(4188, 'Last Call with Carson Daly', 'US', now()), +(4189, 'Last Comic Standing', 'US', now()), +(4191, 'Last Man Standing (AU)', 'AU', now()), +(4192, 'Las Vegas', 'US', now()), +(4193, 'LateLine', 'US', now()), +(4194, 'Late Night with Conan O''Brien', 'US', now()), +(4195, 'Late Night With David Letterman', 'US', now()), +(4196, 'Later... with Jools Holland', 'UK', now()), +(4197, 'Later with Bob Costas', 'US', now()), +(4198, 'Late Show with David Letterman', 'US', now()), +(4199, 'Laurie Hill', 'US', now()), +(4200, 'Laverne & Shirley', 'US', now()), +(4201, 'Laverne & Shirley in the Army', 'US', now()), +(4202, 'Law & Order', 'US', now()), +(4203, 'Law & Order: Criminal Intent', 'US', now()), +(4204, 'Law & Order: Special Victims Unit', 'US', now()), +(4205, 'Law & Order: Trial by Jury', 'US', now()), +(4206, 'Law and Disorder', 'UK', now()), +(4207, 'Lawman', 'US', now()), +(4208, 'Law of the Plainsman', 'US', now()), +(4209, 'LAX', 'US', now()), +(4210, 'Lazarus and Dingwall', 'UK', now()), +(4211, 'LazyTown', 'IS', now()), +(4212, 'Leap of Faith', 'US', now()), +(4213, 'Leave It to Beaver', 'US', now()), +(4214, 'Leaving L.A.', 'US', now()), +(4215, 'Legacy', 'US', now()), +(4216, 'Legend', 'US', now()), +(4217, 'Legend of Prince Valiant', 'US', now()), +(4218, 'Leg Work', 'US', now()), +(4219, 'Lenny Goes to Town', 'UK', now()), +(4220, 'Lenny Henry Tonite', 'UK', now()), +(4221, 'Less Than Perfect', 'US', now()), +(4222, 'Let Them Eat Cake', 'UK', now()), +(4223, 'Level 9', 'US', now()), +(4224, 'Lewis & Clark', 'US', now()), +(4225, 'Lexx', 'CA', now()), +(4226, 'Liberty''s Kids', 'US', now()), +(4227, 'Lie Detector (US)', 'US', now()), +(4228, 'Life & Style', 'US', now()), +(4229, 'Life. . .and Stuff', 'US', now()), +(4230, 'Life''s Work', 'US', now()), +(4231, 'life as we know it (US)', 'US', now()), +(4232, 'Life as We Know It (UK)', 'UK', now()), +(4233, 'Life Begins', 'UK', now()), +(4234, 'Life Goes On', 'US', now()), +(4235, 'Life Is Great With Brooke Burke', 'US', now()), +(4236, 'The Life of Mammals', 'UK', now()), +(4237, 'Life on a Stick', 'US', now()), +(4238, 'Lifestories: Families in Crisis', 'US', now()), +(4239, 'Life with Bonnie', 'US', now()), +(4240, 'Life with Derek', 'CA', now()), +(4241, 'Life With Elizabeth', 'US', now()), +(4242, 'Life with Roger', 'US', now()), +(4243, 'Lightning Force', 'US', now()), +(4244, 'Lights Out', 'US', now()), +(4245, 'Like Family', 'US', now()), +(4246, 'Likely Suspects', 'US', now()), +(4247, 'Lilo & Stitch: The Series', 'US', now()), +(4248, 'Lime Street', 'US', now()), +(4249, 'Linc''s', 'US', now()), +(4250, 'Linda Green', 'UK', now()), +(4251, 'Line of Fire', 'US', now()), +(14565, 'Looking Back In Anger', 'HK', now()), +(4253, 'Listen Up', 'US', now()), +(4254, 'Little Bill', 'US', now()), +(4255, 'Little Britain', 'UK', now()), +(4256, 'Little Dracula', 'US', now()), +(4257, 'Little House on the Prairie (1974)', 'US', now()), +(4258, 'Little Men', 'US', now()), +(4259, 'Little Rascals', 'US', now()), +(4260, 'Little Women (US)', 'US', now()), +(4261, 'Live Shot', 'US', now()), +(4262, 'Live Through This', 'US', now()), +(4263, 'Live with Kelly and Michael', 'US', now()), +(4264, 'Living Dolls', 'US', now()), +(4265, 'Living in Captivity', 'US', now()), +(4266, 'Living Single', 'US', now()), +(4267, 'Living with Fran', 'US', now()), +(17704, 'Ross Kemp In Afghanistan', 'UK', now()), +(4269, 'Lizzie McGuire', 'US', now()), +(4270, 'Lloyd in Space', 'US', now()), +(4271, 'Local Heroes', 'US', now()), +(4272, 'Lock, Stock...', 'UK', now()), +(4273, 'Logan''s Run', 'US', now()), +(4274, 'Lois & Clark: The New Adventures of Superman', 'US', now()), +(4275, 'Lonesome Dove: The Outlaw Years', 'CA', now()), +(4276, 'Lonesome Dove: The Series', 'CA', now()), +(4277, 'Longstreet', 'US', now()), +(4278, 'Long Way Round', 'UK', now()), +(4279, 'Loonatics: Unleashed', 'US', now()), +(4280, 'Lord Peter Wimsey', 'UK', now()), +(4281, 'The Loretta Young Show', 'US', now()), +(4282, 'Los Dos Bros', 'UK', now()), +(4283, 'Los Luchadores', 'US', now()), +(4284, 'Lost', 'US', now()), +(4285, 'Lost at Home', 'US', now()), +(4286, 'Lost in Space', 'US', now()), +(4287, 'Lottery!', 'US', now()), +(4288, 'Lou Grant', 'US', now()), +(4289, 'Love & Money', 'US', now()), +(4290, 'Love & War', 'US', now()), +(4291, 'Love, American Style', 'US', now()), +(4292, 'Love, Inc.', 'US', now()), +(22303, 'Alcatraz: The Whole Shocking Story', 'US', now()), +(4294, 'Love and Marriage (1996)', 'US', now()), +(4295, 'Loved by You', 'UK', now()), +(4296, 'Love Hina', 'JP', now()), +(26747, 'Jean-Michel Jarre: Destination Docklands - The London Concert', 'UK', now()), +(4298, 'Love Hurts', 'UK', now()), +(4299, 'Love Is in the Heir', 'US', now()), +(4300, 'Love Is The Drug', 'IE', now()), +(4301, 'Lovejoy', 'UK', now()), +(4302, 'Love My Way', 'AU', now()), +(4303, 'Love Soup', 'UK', now()), +(16840, 'Diagnosis X', 'US', now()), +(4305, 'Loving', 'US', now()), +(4306, 'LT', 'US', now()), +(4307, 'Lucan', 'US', now()), +(4308, 'Lucky', 'US', now()), +(4309, 'Lucy Sullivan is Getting Married', 'UK', now()), +(4310, 'Luis', 'US', now()), +(4311, 'Luke''s Kingdom', 'AU', now()), +(8060, 'Mary Kay and Johnny', 'US', now()), +(4313, 'Lupin The 3rd', 'JP', now()), +(4314, 'Lush Life', 'US', now()), +(4315, 'M*A*S*H', 'US', now()), +(4316, 'M.A.N.T.I.S.', 'US', now()), +(4317, 'M.A.S.K.', 'US', now()), +(4318, 'M.Y.O.B.', 'US', now()), +(4319, 'MacGruder and Loud', 'US', now()), +(4320, 'MacGyver', 'US', now()), +(4321, 'Mad About You', 'US', now()), +(4322, 'Made', 'US', now()), +(4323, 'Made in Canada', 'CA', now()), +(4324, 'Madigan', 'US', now()), +(4325, 'Madigan Men', 'US', now()), +(4326, 'Madison', 'CA', now()), +(4327, 'Mad Mad House', 'US', now()), +(4328, 'Madman of the People', 'US', now()), +(4329, 'Mad Mike and Mark', 'US', now()), +(4330, 'MADtv', 'US', now()), +(4331, 'Maggie (1998)', 'US', now()), +(4332, 'Maggie (1981)', 'US', now()), +(4333, 'Maggie and the Ferocious Beast', 'CA', now()), +(4334, 'Maggie Winters', 'US', now()), +(4335, 'Magical Shopping Arcade Abenobashi (US)', 'AJ', now()), +(14573, 'Man vs. Wild', 'US', now()), +(4337, 'The Magilla Gorilla Show', 'US', now()), +(4338, 'Magnum, P.I.', 'US', now()), +(4339, 'Mahoromatic: Automatic Maiden', 'JP', now()), +(4340, 'Maid Marian and Her Merry Men', 'UK', now()), +(4341, 'Mail Call', 'US', now()), +(4342, 'Maison Ikkoku', 'JP', now()), +(4343, 'Major', 'JP', now()), +(4344, 'Major Dad', 'US', now()), +(4345, 'Makeover Mamas', 'US', now()), +(4346, 'Make Room for Daddy', 'US', now()), +(4347, 'Making News', 'UK', now()), +(4348, 'Making the Band', 'US', now()), +(4349, 'Making the Band 2', 'US', now()), +(4350, 'Making the Grade', 'US', now()), +(4351, 'Making the Most of the Micro', 'UK', now()), +(4352, 'Making the Video', 'US', now()), +(4353, 'CMT Making the Video', 'US', now()), +(4354, 'Malcolm & Eddie', 'US', now()), +(4355, 'Malcolm in the Middle', 'US', now()), +(4356, 'Malibu, CA', 'US', now()), +(4357, 'Malibu Shores', 'US', now()), +(4358, 'Mama''s Family', 'US', now()), +(4359, 'Man About the House', 'UK', now()), +(4360, 'Manchild (UK)', 'UK', now()), +(4361, 'Mancuso, FBI', 'US', now()), +(4362, 'Manhattan, AZ', 'US', now()), +(4363, 'Manhunt: The Search for America''s Most Gorgeous Male Model', 'US', now()), +(4364, 'Maniac Mansion', 'CA', now()), +(4365, 'Manimal', 'US', now()), +(4366, 'Man in a Suitcase', 'UK', now()), +(4367, 'Mann & Machine', 'US', now()), +(4368, 'Mannix', 'US', now()), +(4369, 'Manor House', 'US', now()), +(4370, 'Mapp and Lucia', 'UK', now()), +(4371, 'Marblehead Manor', 'US', now()), +(4372, 'Marine Boy', 'AJ', now()), +(4373, 'Marker', 'US', now()), +(4374, 'Marmalade Boy', 'JP', now()), +(4375, 'Married ... with Children', 'US', now()), +(4376, 'Married by America', 'US', now()), +(4377, 'Married for Life', 'UK', now()), +(4378, 'Married to the Kellys', 'US', now()), +(4379, 'Marshall Law', 'AU', now()), +(4380, 'Martha Stewart Living', 'US', now()), +(4381, 'Martial Law', 'US', now()), +(4382, 'Martian Successor Nadesico', 'JP', now()), +(4383, 'Martin', 'US', now()), +(4384, 'Martin Mystery', 'FR', now()), +(4385, 'Mary', 'US', now()), +(4386, 'Mary-Kate and Ashley in Action', 'US', now()), +(4387, 'Masked Rider', 'US', now()), +(4388, 'Masterpiece', 'US', now()), +(4389, 'Match Game', 'US', now()), +(4390, 'Match Game (1990)', 'US', now()), +(4391, 'Matlock', 'US', now()), +(4392, 'Matlock Police', 'AU', now()), +(4393, 'Matrix', 'US', now()), +(4394, 'Matt Helm', 'US', now()), +(4395, 'Matt Houston', 'US', now()), +(4396, 'Matt Waters', 'US', now()), +(4397, 'Maude', 'US', now()), +(4398, 'Maury', 'US', now()), +(4399, 'Maverick', 'US', now()), +(4400, 'Max Headroom', 'US', now()), +(4401, 'Maximum Bob', 'US', now()), +(4402, 'Maximum Exposure', 'US', now()), +(4403, 'Max Liebman Presents', 'US', now()), +(4404, 'Max Monroe: Loose Cannon', 'US', now()), +(4405, 'Max Steel', 'US', now()), +(4406, 'Maya & Miguel', 'US', now()), +(4407, 'Maybe It''s Me', 'US', now()), +(4408, 'Mayberry R.F.D.', 'US', now()), +(4409, 'Maybe This Time', 'US', now()), +(4410, 'May to December', 'UK', now()), +(4411, 'McBride', 'US', now()), +(4412, 'McCallum', 'UK', now()), +(4413, 'McClain''s Law', 'US', now()), +(4414, 'McCloud', 'US', now()), +(4415, 'McHale''s Navy', 'US', now()), +(4416, 'McKenna', 'US', now()), +(4417, 'McLeod''s Daughters', 'AU', now()), +(12146, 'The Con Test', 'AU', now()), +(4419, 'McMillan and Wife', 'US', now()), +(4420, 'MDA', 'AU', now()), +(4421, 'MDs', 'US', now()), +(4422, 'Me, My House, and I', 'CA', now()), +(4423, 'Me, You and Him', 'UK', now()), +(4424, 'Me and the Boys', 'US', now()), +(4425, 'Medabots', 'AJ', now()), +(4426, 'Medic', 'US', now()), +(4427, 'Medical Center (US)', 'US', now()), +(4428, 'Medical Emergency', 'AU', now()), +(4429, 'Medical Investigation', 'US', now()), +(4430, 'Medicine Ball', 'US', now()), +(4431, 'Medics', 'UK', now()), +(4432, 'Medium', 'US', now()), +(4433, 'Meego', 'US', now()), +(4434, 'Meet My Folks (US)', 'US', now()), +(4435, 'Meet My Folks (UK)', 'UK', now()), +(4436, 'Meet the Press (US)', 'US', now()), +(4437, 'Meet the Royals', 'US', now()), +(4438, 'Mega Babies', 'CA', now()), +(4439, 'Mega Man', 'US', now()), +(4440, 'MegaMan NT Warrior (US)', 'AJ', now()), +(4441, 'Megas XLR', 'US', now()), +(4442, 'Meitantei Holmes', 'JP', now()), +(4443, 'Melrose Place (1992)', 'US', now()), +(4444, 'Men, Women & Dogs', 'US', now()), +(4445, 'Men Behaving Badly (UK)', 'UK', now()), +(4446, 'Men Behaving Badly (US)', 'US', now()), +(4447, 'Men in Black: The Series', 'US', now()), +(4448, 'Men into Space', 'US', now()), +(4449, 'Men of the World', 'UK', now()), +(4450, 'Mentors', 'CA', now()), +(4451, 'Mercy Point', 'US', now()), +(4452, 'Merge', 'US', now()), +(4453, 'Mermaid Melody: Pichi Pichi Pitch', 'JP', now()), +(4454, 'Merrie Melodies', 'US', now()), +(4455, 'Merseybeat', 'UK', now()), +(4456, 'Method & Red', 'US', now()), +(4457, 'Mew Mew Power', 'AJ', now()), +(4458, 'Spooks', 'UK', now()), +(4459, 'Miami Animal Police', 'US', now()), +(4460, 'Miami Slice', 'US', now()), +(4461, 'Miami Vice', 'US', now()), +(4462, 'Michael Hayes', 'US', now()), +(4463, 'Mickey Mouse Works', 'US', now()), +(4464, 'Middle Ages', 'US', now()), +(4465, 'Middlemarch', 'UK', now()), +(4466, 'Midsomer Murders', 'UK', now()), +(4467, 'Mighty Ducks', 'US', now()), +(4468, 'Mighty Max', 'US', now()), +(4469, 'Mighty Mouse Playhouse', 'US', now()), +(4470, 'Mighty Orbots', 'US', now()), +(4471, 'Mike Hammer (1958)', 'US', now()), +(4473, 'Mike Hammer, Private Eye', 'US', now()), +(4474, 'Mile High', 'UK', now()), +(4475, 'Millennium', 'US', now()), +(4476, 'Minding The Store', 'US', now()), +(4477, 'Minor Adjustments', 'US', now()), +(4478, 'Miracles', 'US', now()), +(4479, 'Misconceptions', 'US', now()), +(4480, 'Misery Loves Company', 'US', now()), +(4481, 'Misfits of Science', 'US', now()), +(4482, 'Missing', 'US', now()), +(4483, 'Missing Persons', 'US', now()), +(4484, 'Mission: Impossible (1966)', 'US', now()), +(4485, 'Mission: Impossible (1988)', 'US', now()), +(4486, 'Mission: Magic', 'US', now()), +(4487, 'Mission Hill', 'US', now()), +(4488, 'Mission Top Secret', 'AU', now()), +(4489, 'Miss Mallard Mysteries', 'CA', now()), +(4490, 'Miss Match', 'US', now()), +(4491, 'Miss Spider''s Sunny Patch Friends', 'US', now()), +(4492, 'Mister Ed', 'US', now()), +(4493, 'Mister Rogers'' Neighborhood', 'US', now()), +(4494, 'Mister Sterling', 'US', now()), +(4495, 'Mister T', 'US', now()), +(4496, 'MMC', 'US', now()), +(4497, 'Mobile One', 'US', now()), +(4498, 'Mobile Suit Gundam', 'AJ', now()), +(4499, '08th MS Team', 'AJ', now()), +(7873, 'Los Garcia', 'ES', now()), +(4501, 'Mobile Suit Gundam SEED Destiny', 'JP', now()), +(4502, 'Moby Dick and the Mighty Mightor', 'US', now()), +(4503, 'Model Citizens', 'US', now()), +(4504, 'Models Inc.', 'US', now()), +(4505, 'Modern Marvels', 'US', now()), +(4506, 'Moesha', 'US', now()), +(4507, 'Moloney', 'US', now()), +(4508, 'Monarch of the Glen', 'UK', now()), +(4509, 'Mona the Vampire', 'CA', now()), +(4510, 'Monchhichis', 'US', now()), +(4511, 'Mon Colle Knights', 'AJ', now()), +(4512, 'Mondo Magic', 'US', now()), +(4513, 'Monica''s Gang', 'BR', now()), +(4514, 'Monk', 'US', now()), +(4515, 'Monkey Magic', 'AJ', now()), +(4516, 'Monster by Mistake', 'CA', now()), +(4517, 'Monster Garage', 'US', now()), +(4518, 'Monster House', 'US', now()), +(4519, 'Monster Rancher', 'JP', now()), +(4520, 'Monsters', 'US', now()), +(4521, 'Monty', 'US', now()), +(4522, 'Monty Python''s Flying Circus', 'UK', now()), +(4523, 'Moonacre', 'UK', now()), +(4524, 'Moonbase 3', 'UK', now()), +(4525, 'Moonlighting', 'US', now()), +(4526, 'Moon Over Miami', 'US', now()), +(4527, 'More Tears', 'CA', now()), +(4528, 'Mork & Mindy', 'US', now()), +(4529, 'Mortal Kombat: Conquest', 'US', now()), +(4530, 'Mortal Kombat: Defenders of The Realm', 'US', now()), +(4531, 'Most Extreme Elimination Challenge', 'US', now()), +(4532, 'Most Haunted', 'UK', now()), +(4533, 'Movie Stars', 'US', now()), +(4534, 'Mowgli: The New Adventures of the Jungle Book', 'US', now()), +(4535, 'Mr. & Mrs. Smith (1996)', 'US', now()), +(4536, 'Mr. Bean', 'UK', now()), +(4537, 'Mr. Bean: The Animated Series', 'UK', now()), +(4538, 'Mr. Belvedere', 'US', now()), +(4539, 'Mr. Lucky', 'US', now()), +(4540, 'Mr. Men and Little Miss', 'US', now()), +(4541, 'Mr. Merlin', 'US', now()), +(4542, 'Mr. Rhodes', 'US', now()), +(4543, 'Mr. Show with Bob and David', 'US', now()), +(4544, 'Mr. T and Tina', 'US', now()), +(4545, 'Mr. Terrific', 'US', now()), +(4546, 'Mrs. Columbo', 'US', now()), +(4547, 'M Squad', 'US', now()), +(4548, 'MTV Cribs', 'US', now()), +(4549, 'Muddling Through', 'US', now()), +(4550, 'Mulberry', 'UK', now()), +(4551, 'Mummies Alive!', 'US', now()), +(4552, 'Muppet Babies', 'US', now()), +(4553, 'Muppets Tonight', 'US', now()), +(4554, 'Murder, She Wrote', 'US', now()), +(4555, 'Murder Call', 'AU', now()), +(4556, 'Murder in Mind', 'UK', now()), +(4557, 'Murder in Small Town X', 'US', now()), +(4558, 'Murder in Suburbia', 'UK', now()), +(4559, 'Murder Investigation Team', 'UK', now()), +(4560, 'Murder Most Horrid', 'UK', now()), +(4561, 'Murder One', 'US', now()), +(4562, 'Murder Rooms', 'UK', now()), +(4563, 'Murphy''s Law (UK)', 'UK', now()), +(4564, 'Murphy''s Law (US)', 'US', now()), +(4565, 'Murphy Brown', 'US', now()), +(4566, 'Muscle', 'US', now()), +(4567, 'Musical Comedy Time', 'US', now()), +(4568, 'Mutant X', 'US', now()), +(4569, 'My Big Fat Greek Life', 'US', now()), +(4570, 'My Big Fat Obnoxious Boss', 'US', now()), +(4571, 'My Big Fat Obnoxious Fiancé', 'US', now()), +(4572, 'My Brand New Life', 'CA', now()), +(4573, 'My Dad the Rock Star', 'CA', now()), +(4574, 'My Family', 'UK', now()), +(4575, 'My Favorite Martian', 'US', now()), +(4576, 'My Favorite Martians', 'US', now()), +(4577, 'My Friend Flicka', 'US', now()), +(4578, 'My Guide to Becoming a Rock Star', 'US', now()), +(4579, 'My Guys', 'US', now()), +(4580, 'My Gym Partner''s a Monkey', 'US', now()), +(4581, 'My Hero', 'UK', now()), +(4582, 'My Life and Times', 'US', now()), +(4583, 'My Life as a Dog', 'CA', now()), +(4584, 'My Life as a Teenage Robot', 'US', now()), +(4585, 'My Life is a Sitcom', 'US', now()), +(15193, 'Now You See Her', 'UK', now()), +(4587, 'My Little Pony and Friends', 'US', now()), +(4588, 'My Little Pony Tales', 'US', now()), +(4589, 'My Mother the Car', 'US', now()), +(4590, 'My Name Is Earl', 'US', now()), +(4591, 'My Parents Are Aliens', 'UK', now()), +(12748, 'Sanada 10', 'JP', now()), +(4593, 'My Pet Monster', 'US', now()), +(4594, 'My Secret Identity', 'CA', now()), +(4595, 'My Sister Sam', 'US', now()), +(4596, 'My So-Called Life', 'US', now()), +(4597, 'E! Mysteries and Scandals', 'US', now()), +(4598, 'Mysterious Island', 'CA', now()), +(4599, 'Mysterious Ways', 'US', now()), +(4600, 'Mystery Hunters', 'CA', now()), +(4601, 'Mystery Science Theater 3000', 'US', now()), +(4602, 'Mystery Woman', 'US', now()), +(4603, 'Mystic Knights of Tir Na Nog', 'US', now()), +(4604, 'My Super Sweet 16', 'US', now()), +(4605, 'MythBusters', 'US', now()), +(4606, 'Mythic Warriors', 'CA', now()), +(4607, 'MythQuest', 'CA', now()), +(4608, 'My Three Sons', 'US', now()), +(4609, 'My Two Dads', 'US', now()), +(4610, 'My Wife and Kids', 'US', now()), +(4611, 'My Wildest Dreams', 'US', now()), +(31607, 'Sandwich King', 'US', now()), +(4613, 'Naked City', 'US', now()), +(4614, 'Naked Josh', 'CA', now()), +(4615, 'Name Your Adventure', 'US', now()), +(4616, 'Nancy Drew', 'US', now()), +(4617, 'Nancy Grace', 'US', now()), +(4618, 'Nanny 911', 'US', now()), +(4619, 'Nanny and the Professor', 'US', now()), +(4620, 'Naruto (JP)', 'JP', now()), +(4621, 'NASCAR Drivers Non-Stop', 'US', now()), +(4622, 'NASCAR Racers', 'US', now()), +(4623, 'Nash Bridges', 'US', now()), +(4624, 'Nashville Star', 'US', now()), +(4625, 'Nathan Barley', 'UK', now()), +(4626, 'The Dog Whisperer', 'US', now()), +(4627, 'Naturally, Sadie', 'CA', now()), +(4628, 'NCIS', 'US', now()), +(4629, 'NCS Manhunt', 'UK', now()), +(4630, 'Nearly Departed', 'US', now()), +(4631, 'Ned''s Declassified School Survival Guide', 'US', now()), +(4632, 'Ned and Stacey', 'US', now()), +(4633, 'Ned Blessing: The Story of My Life and Times', 'US', now()), +(4634, 'Neighbours', 'AU', now()), +(4635, 'Nelson''s Column', 'UK', now()), +(4636, 'Neon Genesis Evangelion', 'AJ', now()), +(4637, 'Neon Rider', 'CA', now()), +(4638, 'Nerd Nation', 'US', now()), +(4639, 'Nero Wolfe (1981)', 'US', now()), +(4640, 'Nero Wolfe (2001)', 'US', now()), +(4641, 'Never Mind the Buzzcocks (UK)', 'UK', now()), +(4642, 'Never Mind the Quality, Feel the Width', 'UK', now()), +(4643, 'Neverwhere', 'UK', now()), +(4644, 'The New Adventures of Beans Baxter', 'US', now()), +(4645, 'Newhart', 'US', now()), +(4646, 'New Kids On The Block', 'US', now()), +(4647, 'Newlyweds', 'AU', now()), +(4648, 'Newlyweds: Nick and Jessica', 'US', now()), +(4649, 'Newman and Baddiel in Pieces', 'UK', now()), +(4650, 'New Scotland Yard', 'UK', now()), +(4651, 'NewsRadio', 'US', now()), +(4652, 'New Tricks', 'UK', now()), +(4653, 'Too Something', 'US', now()), +(4654, 'New York News', 'US', now()), +(4655, 'New York Undercover', 'US', now()), +(4656, 'Next Action Star', 'US', now()), +(4657, 'Next of Kin', 'UK', now()), +(4658, 'Nichols', 'US', now()), +(4659, 'Nick Cannon Presents Wild ''N Out', 'US', now()), +(4660, 'Nickelodeon Robot Wars', 'US', now()), +(4661, 'Nick Freno: Licensed Teacher', 'US', now()), +(4662, 'Nightcap', 'US', now()), +(4663, 'Night Court', 'US', now()), +(4664, 'Night Gallery', 'US', now()), +(4665, 'Night Heat', 'CA', now()), +(4667, 'Nightingales (US)', 'US', now()), +(4668, 'NightMan', 'US', now()), +(4669, 'Nightmare Cafe', 'US', now()), +(4670, 'Night Stalker', 'US', now()), +(4671, 'Night Stand with Dick Dietrick', 'US', now()), +(4672, 'Night Visions', 'US', now()), +(4673, 'Nighty Night', 'UK', now()), +(4674, 'Nikki', 'US', now()), +(4675, 'Jubei Wind Ninja Chronicles: Dragon Stone Chapter', 'JP', now()), +(4676, 'Ninja Turtles: The Next Mutation', 'US', now()), +(4677, 'Nip/Tuck', 'US', now()), +(4678, 'No - Honestly', 'UK', now()), +(4679, 'Noah Knows Best', 'US', now()), +(4680, 'Noble and Silver', 'UK', now()), +(4681, 'No Boundaries', 'CA', now()), +(4682, 'No Job for a Lady', 'UK', now()), +(4683, 'No Opportunity Wasted', 'US', now()), +(4684, 'Norm', 'US', now()), +(4685, 'Normal, Ohio', 'US', now()), +(4686, 'Northern Exposure', 'US', now()), +(4687, 'North of 60', 'CA', now()), +(4688, 'North Shore', 'US', now()), +(4689, 'Nothing Sacred', 'US', now()), +(4690, 'Nothing Too Good for a Cowboy', 'CA', now()), +(4691, 'Not in Front of the Children', 'UK', now()), +(4692, 'Now and Again', 'US', now()), +(4693, 'Nowhere Man', 'US', now()), +(15575, 'Pirate Master', 'US', now()), +(4695, 'Now Who''s Boss?', 'US', now()), +(4696, 'Numb3rs', 'US', now()), +(4697, 'Nurses (US)', 'US', now()), +(4698, 'NYPD Blue', 'US', now()), +(4699, 'O2Be', 'US', now()), +(4700, 'O''Grady', 'US', now()), +(4701, 'Ocean Girl', 'AU', now()), +(4702, 'Ocean Star', 'AU', now()), +(4703, 'Odd Job Jack', 'CA', now()), +(4704, 'Odd Man Out', 'US', now()), +(4705, 'Odyssey 5', 'US', now()), +(4706, 'Off Centre', 'US', now()), +(4707, 'Oh Baby', 'US', now()), +(4708, 'Oh Grow Up', 'US', now()), +(4709, 'Oh My Goddess', 'JP', now()), +(4710, 'Old Bear Stories', 'UK', now()), +(4711, 'Oliver Beene', 'US', now()), +(4712, 'On Air With Ryan Seacrest', 'US', now()), +(4713, 'Once and Again', 'US', now()), +(4714, 'Once a Thief', 'CA', now()), +(4715, 'One Big Family', 'US', now()), +(4716, 'One by One', 'UK', now()), +(4717, 'One Day at a Time', 'US', now()), +(4718, 'One Foot in the Grave', 'UK', now()), +(4719, 'One Life to Live', 'US', now()), +(4720, 'One Night Stand', 'US', now()), +(4721, 'One On One', 'US', now()), +(4722, 'One Piece (US)', 'AJ', now()), +(4723, 'One Step Beyond', 'US', now()), +(4724, 'One Tree Hill', 'US', now()), +(4725, 'One West Waikiki', 'US', now()), +(4726, 'One World', 'US', now()), +(4727, 'Only Fools and Horses', 'UK', now()), +(4728, 'On Our Own (1994)', 'US', now()), +(4729, 'On the Air (US)', 'US', now()), +(4730, 'On The Buses', 'UK', now()), +(4731, 'On the Spot', 'US', now()), +(4732, 'Oobi', 'US', now()), +(4733, 'Operation Petticoat', 'US', now()), +(4734, 'Opposite Sex', 'US', now()), +(6888, 'The Story of God', 'UK', now()), +(4736, 'Orleans', 'US', now()), +(4737, 'Oswald', 'US', now()), +(4738, 'Otherworld', 'US', now()), +(4739, 'Our Hero', 'CA', now()), +(4740, 'Our House (US)', 'US', now()), +(4741, 'Our Miss Brooks', 'US', now()), +(4742, 'Our Place', 'US', now()), +(4743, 'Out All Night', 'US', now()), +(4744, 'Outback Jack', 'US', now()), +(4745, 'Outlaws (1960)', 'US', now()), +(4746, 'Outlaws (1986)', 'US', now()), +(4747, 'Outlaw Star', 'JP', now()), +(4748, 'Out of Order', 'US', now()), +(4749, 'Out of Practice', 'US', now()), +(4750, 'Out of the Unknown', 'UK', now()), +(4751, 'Out of This World (UK)', 'UK', now()), +(4752, 'Out of This World (US)', 'US', now()), +(4753, 'Outside the Rules', 'UK', now()), +(4754, 'Out There (US)', 'US', now()), +(4755, 'Overhaulin''', 'US', now()), +(4756, 'Over My Dead Body', 'US', now()), +(4757, 'Over There (US)', 'US', now()), +(4758, 'Over the Top', 'US', now()), +(4759, 'Owen Marshall, Counselor At Law', 'US', now()), +(4760, 'Oz', 'US', now()), +(4761, 'Ozzy & Drix', 'US', now()), +(4762, 'P.S.I. Luv U', 'US', now()), +(4763, 'Pac-Man', 'US', now()), +(4764, 'Pacific Blue', 'US', now()), +(4765, 'Pacific Palisades', 'US', now()), +(4766, 'Pacific Station', 'US', now()), +(4767, 'Page to Screen', 'US', now()), +(4768, 'Palace Guard', 'US', now()), +(4769, 'Pandamonium', 'US', now()), +(4770, 'Paradise Falls', 'CA', now()), +(4771, 'Paradise Postponed', 'UK', now()), +(4772, 'Parallax', 'AU', now()), +(4773, 'Paranoia Agent (US)', 'AJ', now()), +(4774, 'Pardon the Interruption', 'US', now()), +(13075, 'Barlow at Large', 'UK', now()), +(4776, 'Parker Lewis Can''t Lose', 'US', now()), +(4777, 'Parkinson (2004)', 'UK', now()), +(4778, 'Partners (1996)', 'US', now()), +(4779, 'Party Girl', 'US', now()), +(4780, 'Party of Five', 'US', now()), +(4781, 'Pasadena', 'US', now()), +(4782, 'Passion Cove', 'US', now()), +(4783, 'Passions', 'US', now()), +(4784, 'Pat Croce: Moving In', 'US', now()), +(4785, 'Paths to Freedom', 'IE', now()), +(4786, 'Paul Sand in Friends and Lovers', 'US', now()), +(4787, 'Pauly', 'US', now()), +(4788, 'Payne', 'US', now()), +(4789, 'Peacemakers', 'US', now()), +(4790, 'Pearl', 'US', now()), +(4791, 'Peck''s Bad Girl', 'US', now()), +(4792, 'Pecola', 'AJ', now()), +(4793, 'Pee-Wee''s Playhouse', 'US', now()), +(4794, 'Pelswick', 'CA', now()), +(4795, 'Penn & Teller: Bullshit!', 'US', now()), +(4796, 'Pennies from Heaven', 'UK', now()), +(4797, 'Pensacola: Wings of Gold', 'US', now()), +(4798, 'People Like Us (1999)', 'UK', now()), +(4799, 'Pepper Ann', 'US', now()), +(4800, 'Pepper Dennis', 'US', now()), +(4801, 'Pepsi Smash', 'US', now()), +(4802, 'Perfect Strangers', 'US', now()), +(4803, 'Perfect World', 'UK', now()), +(4804, 'Perry Mason', 'US', now()), +(4805, 'Perversions of Science', 'US', now()), +(4806, 'Pet Alien', 'US', now()), +(4807, 'Peter Benchley''s Amazon', 'US', now()), +(4808, 'Peter Gunn', 'US', now()), +(4809, 'Peter Pan and the Pirates', 'US', now()), +(4810, 'Pet Psychic', 'US', now()), +(4811, 'Petrocelli', 'US', now()), +(4812, 'Pet Star', 'US', now()), +(4813, 'Petticoat Junction', 'US', now()), +(4814, 'Peyton Place', 'US', now()), +(4815, 'Phantom 2040', 'US', now()), +(4816, 'Phantom Investigators', 'US', now()), +(4817, 'Phenom', 'US', now()), +(4818, 'Philip Marlowe', 'US', now()), +(4819, 'Philip Marlowe, Private Eye', 'US', now()), +(4820, 'Philly', 'US', now()), +(4821, 'Phil of the Future', 'US', now()), +(4822, 'Piccadilly Palace', 'US', now()), +(4823, 'Picket Fences', 'US', now()), +(4824, 'Pie in the Sky', 'UK', now()), +(4825, 'Pigs Breakfast', 'AU', now()), +(4826, 'Pig Sty', 'US', now()), +(4827, 'Pilot Candidate (US)', 'AJ', now()), +(4828, 'Pilot Season', 'US', now()), +(4829, 'Pimp My Ride', 'US', now()), +(4830, 'Pinky, Elmyra & the Brain', 'US', now()), +(4831, 'Pinky and the Brain', 'US', now()), +(4832, 'Pippi Longstocking', 'CA', now()), +(4833, 'Pirate Islands', 'AU', now()), +(4834, 'Pixie & Dixie', 'US', now()), +(4835, 'Planet of the Apes', 'US', now()), +(4836, 'Platinum', 'US', now()), +(4837, 'Platypus Man', 'US', now()), +(4838, 'Playboy After Dark', 'US', now()), +(4839, 'Players', 'US', now()), +(4840, 'Playhouse 90', 'US', now()), +(4841, 'Playing It Straight (US)', 'US', now()), +(4842, 'Playmakers', 'US', now()), +(4843, 'Please Don''t Eat the Daisies', 'US', now()), +(4844, 'Point Blank', 'CA', now()), +(4845, 'Pointman', 'US', now()), +(4846, 'Point Pleasant', 'US', now()), +(4847, 'Agatha Christie''s Poirot', 'UK', now()), +(4848, 'Pokémon Housou', 'JP', now()), +(4849, 'Poker Royale', 'US', now()), +(4850, 'Pole Position', 'US', now()), +(4851, 'Police Academy: The Animated Series', 'US', now()), +(4852, 'Police Academy: The Series', 'US', now()), +(4853, 'Police Squad!', 'US', now()), +(4854, 'Police Story (1973)', 'US', now()), +(4855, 'Police Woman', 'US', now()), +(4856, 'Politically Incorrect', 'US', now()), +(4857, 'Poltergeist: The Legacy', 'US', now()), +(4858, 'Ponderosa', 'US', now()), +(4859, 'Pond Life', 'UK', now()), +(4860, 'Poochini', 'US', now()), +(4861, 'Popcultured', 'CA', now()), +(4862, 'Popetown', 'UK', now()), +(4863, 'Popeye', 'US', now()), +(4864, 'Pop Idol', 'UK', now()), +(4865, 'Popples', 'US', now()), +(4866, 'Popstars (US)', 'US', now()), +(4867, 'Popular', 'US', now()), +(4868, 'Popular Mechanics for Kids', 'CA', now()), +(4869, 'Porkpie', 'UK', now()), +(4870, 'Port Charles', 'US', now()), +(4871, 'Postcards from Buster', 'US', now()), +(4872, 'Postman Pat', 'UK', now()), +(4873, 'Potatoes And Dragons', 'CA', now()), +(4874, 'Pound Puppies', 'US', now()), +(4875, 'PoweR Girls', 'US', now()), +(4876, 'Power Play', 'CA', now()), +(4877, 'Power Rangers', 'US', now()), +(4878, 'Powers', 'UK', now()), +(4879, 'Praise the Lord', 'US', now()), +(4880, 'Premium Blend', 'US', now()), +(4881, 'Presidio Med', 'US', now()), +(4882, 'Press Gang', 'UK', now()), +(4883, 'Pretty Guardian Sailor Moon: Live Action', 'JP', now()), +(4884, 'Pretty Sammy', 'JP', now()), +(4885, 'Bishoujo Senshi Sailor Moon', 'JP', now()), +(4886, 'Prey', 'US', now()), +(4887, 'Pride & Joy', 'US', now()), +(4888, 'Pride and Prejudice', 'UK', now()), +(4889, 'Prime Suspect (1991)', 'UK', now()), +(4890, 'Primetime Glick', 'US', now()), +(4891, 'Primus', 'US', now()), +(4892, 'The Princes of Malibu', 'US', now()), +(4893, 'Princesses', 'US', now()), +(4894, 'Prince Street', 'US', now()), +(4895, 'Prison Break', 'US', now()), +(4896, 'Prisoner: Cell Block H', 'AU', now()), +(4897, 'Prisoners of Gravity', 'CA', now()), +(4898, 'Probe', 'US', now()), +(4899, 'Problem Child', 'US', now()), +(4900, 'Profiler', 'US', now()), +(4901, 'Profit', 'US', now()), +(4902, 'Project Greenlight', 'US', now()), +(4903, 'Project Runway', 'US', now()), +(4904, 'Project UFO', 'US', now()), +(4905, 'Promised Land', 'US', now()), +(4906, 'Proof Positive', 'US', now()), +(4907, 'Providence', 'US', now()), +(4908, 'Prudential Family Playhouse', 'US', now()), +(4909, 'Psi Factor: Chronicles of the Paranormal', 'US', now()), +(13825, 'Kaseifu ha mita', 'JP', now()), +(4911, 'Psychic Detectives', 'US', now()), +(4912, 'Public Morals', 'US', now()), +(4913, 'Pulaski', 'UK', now()), +(4914, 'Punk''d', 'US', now()), +(4915, 'Punky Brewster', 'US', now()), +(4916, 'Puppets Who Kill', 'CA', now()), +(4917, 'Push', 'US', now()), +(4918, 'Push, Nevada', 'US', now()), +(4919, 'Q.E.D.', 'US', now()), +(4920, 'QI', 'UK', now()), +(4921, 'Quantum Leap', 'US', now()), +(4922, 'Quark', 'US', now()), +(4923, 'Queen of Swords', 'US', now()), +(4924, 'Queens Supreme', 'US', now()), +(4925, 'Queer as Folk (US)', 'US', now()), +(4926, 'Queer as Folk (UK)', 'UK', now()), +(4927, 'Queer Eye for the Straight Girl', 'US', now()), +(4928, 'Queer Eye', 'US', now()), +(4929, 'Queer Eye for the Straight Guy (UK)', 'UK', now()), +(4930, 'Que Pasa, USA?', 'US', now()), +(4931, 'Quincy, M.E.', 'US', now()), +(4932, 'Quintuplets', 'US', now()), +(21576, 'Just In with Laura Ingraham', 'US', now()), +(4934, 'Rachel Gunn, R.N.', 'US', now()), +(4935, 'Radio Active', 'CA', now()), +(4936, 'Radio Free Roscoe', 'CA', now()), +(4937, 'Raffles', 'UK', now()), +(4938, 'Rags to Riches', 'US', now()), +(4939, 'Rainbow Brite', 'US', now()), +(4940, 'Raising Dad', 'US', now()), +(4941, 'Rambo', 'US', now()), +(4942, 'Ramona', 'CA', now()), +(4943, 'Ramsay''s Kitchen Nightmares', 'UK', now()), +(4944, 'Randall & Hopkirk (Deceased) (2000)', 'UK', now()), +(4945, 'Randall and Hopkirk (Deceased) (1969)', 'UK', now()), +(4946, 'Rave Master (US)', 'AJ', now()), +(4947, 'Raven (US)', 'US', now()), +(4948, 'Rawhide', 'US', now()), +(4949, 'Real Kids, Real Adventures', 'US', now()), +(4950, 'Real Time With Bill Maher', 'US', now()), +(4951, 'Reasonable Doubts', 'US', now()), +(4952, 'Reba', 'US', now()), +(4953, 'Rebel Heart', 'UK', now()), +(4954, 'ReBoot', 'CA', now()), +(4955, 'Rebus', 'UK', now()), +(4956, 'Recess', 'US', now()), +(4957, 'Recipe for Success', 'US', now()), +(4958, 'Red Cap', 'UK', now()), +(4959, 'Red Dwarf', 'UK', now()), +(4960, 'Redigo', 'US', now()), +(4961, 'Red Shoe Diaries', 'US', now()), +(4962, 'Brian Jacques'' Redwall', 'US', now()), +(4963, 'Regency House Party', 'US', now()), +(4964, 'ReGenesis', 'CA', now()), +(4965, 'Regular Joe', 'US', now()), +(4966, 'Reign: The Conqueror (JP)', 'JP', now()), +(4967, 'Reilly: Ace of Spies', 'UK', now()), +(4968, 'Related', 'US', now()), +(4969, 'Relativity', 'US', now()), +(4970, 'Relic Hunter', 'US', now()), +(4971, 'Remember WENN', 'US', now()), +(4972, 'Remington Steele', 'US', now()), +(4973, 'Remote Control', 'US', now()), +(4974, 'Ren and Stimpy Adult Party Cartoon', 'US', now()), +(4975, 'Renegade', 'US', now()), +(4976, 'Renegade Press.Com', 'CA', now()), +(4977, 'Renegades', 'US', now()), +(4978, 'Renford Rejects', 'UK', now()), +(4979, 'Reno 911!', 'US', now()), +(4980, 'Renovate My Family', 'US', now()), +(4981, 'Rescue 77', 'US', now()), +(4982, 'Rescue 911', 'US', now()), +(4983, 'Rescue Heroes', 'CA', now()), +(4984, 'Rescue Me (UK)', 'UK', now()), +(4985, 'Rescue Me', 'US', now()), +(4986, 'Resurrection Blvd.', 'US', now()), +(4987, 'Retrosexual: The ''80s', 'US', now()), +(4988, 'Return to Eden', 'AU', now()), +(4989, 'Return To Jupiter', 'AU', now()), +(4990, 'Return to the Planet of the Apes', 'US', now()), +(4991, 'Return to Treasure Island', 'US', now()), +(4992, 'Reunion', 'US', now()), +(4993, 'Reunited', 'US', now()), +(4994, 'Revealed with Jules Asner', 'US', now()), +(4995, 'Revelations (US)', 'US', now()), +(4996, 'Rex the Runt', 'UK', now()), +(4997, 'Rhoda', 'US', now()), +(4998, 'Rhona', 'UK', now()), +(4999, 'Rhythm & Blues', 'US', now()), +(5000, 'Richard & Judy', 'UK', now()), +(5001, 'Richard Diamond, Private Detective', 'US', now()), +(5002, 'Richard the Lionheart', 'UK', now()), +(5003, 'Rich Girls', 'US', now()), +(5004, 'Richie Brockelman, Private Eye', 'US', now()), +(5005, 'Richie Rich', 'US', now()), +(5006, 'Richmond Hill', 'AU', now()), +(5007, 'Ricki Lake', 'US', now()), +(5008, 'Rides (UK)', 'UK', now()), +(5009, 'Rik Mayall Presents', 'UK', now()), +(5010, 'Ripley''s Believe It or Not! (2000)', 'US', now()), +(5011, 'Ripping Yarns', 'UK', now()), +(5012, 'Riptide (US)', 'US', now()), +(5013, 'Riptide (AU)', 'AU', now()), +(5014, 'Rising Damp', 'UK', now()), +(5015, 'Riverboat', 'US', now()), +(5016, 'Road Rovers', 'US', now()), +(5017, 'Road Rules', 'US', now()), +(20842, 'S.O.S. Sonja', 'NL', now()), +(5019, 'Roar', 'US', now()), +(5020, 'Robbery Homicide Division', 'US', now()), +(5021, 'Robert Montgomery Presents Your Lucky Strike Theatre', 'US', now()), +(5022, 'Robin''s Nest', 'UK', now()), +(5023, 'Robin of Sherwood', 'UK', now()), +(5024, 'Robocop', 'CA', now()), +(5025, 'RoboCop: Alpha Commando', 'US', now()), +(5026, 'RoboCop: Prime Directives', 'CA', now()), +(5027, 'Robot Chicken', 'US', now()), +(5028, 'Robotech', 'AJ', now()), +(5030, 'Robot Wars', 'UK', now()), +(5031, 'Robot Wars: Extreme Warriors', 'US', now()), +(5032, 'Robot Wars: Grand Champions', 'US', now()), +(5033, 'Robson Arms', 'CA', now()), +(5034, 'Roc', 'US', now()), +(5035, 'Rocket Power', 'US', now()), +(5036, 'Rock Follies', 'UK', now()), +(5037, 'Rock Me Baby', 'US', now()), +(5038, 'Rocko''s Modern Life', 'US', now()), +(5039, 'Rock Profile', 'UK', now()), +(5040, 'Rock Star', 'US', now()), +(5041, 'Rocky and His Friends', 'US', now()), +(5042, 'Rocky Jones, Space Ranger', 'US', now()), +(5043, 'Rocky Road', 'US', now()), +(5044, 'Rodney', 'US', now()), +(5045, 'Roger & The Rottentrolls', 'UK', now()), +(5046, 'At the Movies', 'US', now()), +(5047, 'Rome', 'US', now()), +(5048, 'Romeo!', 'US', now()), +(21777, 'Deep Wreck Mysteries', 'US', now()), +(5050, 'Room 101', 'UK', now()), +(5051, 'Room 222', 'US', now()), +(5052, 'Room for Two', 'US', now()), +(5053, 'Room Raiders', 'US', now()), +(5054, 'Rose and Maloney', 'UK', now()), +(5055, 'Roseanne', 'US', now()), +(5056, 'Roswell', 'US', now()), +(5057, 'The Roswell Conspiracies', 'US', now()), +(5058, 'Roughnecks: Starship Troopers Chronicles', 'US', now()), +(5059, 'Rough Science', 'UK', now()), +(5060, 'Round The Twist', 'AU', now()), +(5061, 'Route 66 (1960)', 'US', now()), +(5062, 'Route 66 (1993)', 'US', now()), +(5063, 'Rove Live', 'AU', now()), +(5064, 'Rowan & Martin''s Laugh-In', 'US', now()), +(5065, 'Royal Canadian Air Farce', 'CA', now()), +(5066, 'Rubik, the Amazing Cube', 'US', now()), +(5067, 'Rude Awakening', 'US', now()), +(5068, 'Rugrats', 'US', now()), +(5069, 'Runaround', 'US', now()), +(5070, 'Running The Halls', 'US', now()), +(5071, 'Run of the House', 'US', now()), +(5072, 'Rupert', 'CA', now()), +(5073, 'Rurouni Kenshin (JP)', 'JP', now()), +(5074, 'R U The Girl With T-Boz & Chilli', 'US', now()), +(5075, 'Ryan''s Hope', 'US', now()), +(5076, 'Ryan Caulfield: Year One', 'US', now()), +(5077, 'S-CRY-Ed', 'JP', now()), +(5078, 'S.W.A.T.', 'US', now()), +(5079, 'Saban''s Diabolik', 'IT', now()), +(5080, 'Saber Rider and the Star Sheriffs', 'AJ', now()), +(5081, 'Sable', 'US', now()), +(5082, 'Sabrina''s Secret Life', 'US', now()), +(5083, 'Sabrina, the Animated Series', 'US', now()), +(5084, 'Sabrina, the Teenage Witch (1996)', 'US', now()), +(5085, 'Safe Harbor', 'US', now()), +(5086, 'Sagwa, the Chinese Siamese Cat', 'US', now()), +(5087, 'Sailor Moon', 'AJ', now()), +(5088, 'Saiyuki (2000)', 'JP', now()), +(5089, 'Salvage 1', 'US', now()), +(5090, 'Sam''s Game', 'UK', now()), +(5091, 'Sammy', 'US', now()), +(5092, 'Samurai 7', 'JP', now()), +(5093, 'Samurai Champloo', 'JP', now()), +(5094, 'Samurai Jack', 'US', now()), +(5095, 'Samurai Pizza Cats', 'JP', now()), +(5096, 'Sanford', 'US', now()), +(5097, 'Sanford and Son', 'US', now()), +(5098, 'Saturday Night Live', 'US', now()), +(5099, 'Saturday Night Special', 'US', now()), +(5100, 'Saved by the Bell', 'US', now()), +(21575, 'Tavis Smiley', 'US', now()), +(5102, 'Saved by the Bell: The New Class', 'US', now()), +(5103, 'Scarborough Country', 'US', now()), +(5104, 'Scarecrow and Mrs. King', 'US', now()), +(5105, 'Scare Tactics', 'US', now()), +(5106, 'Scene of the Crime', 'US', now()), +(5107, 'Schnookums and Meat Funny Cartoon Show', 'US', now()), +(5108, 'Schoolhouse Rock!', 'US', now()), +(5109, 'Science Fiction Theatre', 'US', now()), +(5110, 'S Club 7', 'UK', now()), +(5111, 'Scooby-Doo, Where Are You!', 'US', now()), +(5112, 'Scooby''s All Star Laff-A-Lympics', 'US', now()), +(5113, 'Scooby and Scrappy-Doo', 'US', now()), +(5114, 'Scooter: Secret Agent', 'AU', now()), +(5115, 'Scout''s Safari', 'US', now()), +(5116, 'Scrapped Princess', 'JP', now()), +(5117, 'Screech Owls', 'CA', now()), +(5118, 'Scrubs', 'US', now()), +(5119, 'SCTV Channel', 'CA', now()), +(5120, 'SD Gundam Force', 'JP', now()), +(5121, 'Seachange', 'AU', now()), +(5122, 'Sea Hunt (1987)', 'US', now()), +(5123, 'Sea Hunt (1958)', 'US', now()), +(5124, 'Sealab 2020', 'US', now()), +(5125, 'Sealab 2021', 'US', now()), +(5126, 'Sean''s Show', 'UK', now()), +(8061, 'Faraway Hill', 'US', now()), +(5128, 'seaQuest DSV', 'US', now()), +(5129, 'Search', 'US', now()), +(5130, 'Search For Treasure Island', 'AU', now()), +(5131, 'Search Out Science', 'UK', now()), +(5132, 'Second Chances', 'US', now()), +(5133, 'Second Noah', 'US', now()), +(5134, 'Second Sight', 'UK', now()), +(5135, 'Second Thoughts', 'UK', now()), +(5136, 'Second Time Around (US)', 'US', now()), +(5137, 'Second Verdict', 'US', now()), +(5138, 'Secret, Strange & True', 'US', now()), +(5139, 'Secret Agent Man', 'US', now()), +(5140, 'Secret Army', 'UK', now()), +(5141, 'Secret Squirrel Show', 'US', now()), +(5142, 'The Secret World of Alex Mack', 'US', now()), +(5143, 'See How They Run', 'UK', now()), +(5144, 'Seeing Things', 'CA', now()), +(5145, 'Seinfeld', 'US', now()), +(5146, 'Sell This House', 'US', now()), +(5147, 'Sergeant Preston of the Yukon', 'US', now()), +(5149, 'Seriously Weird', 'UK', now()), +(5150, 'Serpico', 'US', now()), +(5151, 'Servants', 'UK', now()), +(5152, 'Sesame Street', 'US', now()), +(5153, 'Sesame Street Unpaved', 'US', now()), +(5154, 'Sex, Love & Secrets', 'US', now()), +(5155, 'Sex and the City', 'US', now()), +(5156, 'Sex Games: Vegas', 'US', now()), +(5157, 'Shades of L.A.', 'US', now()), +(5158, 'Shadow Chasers', 'US', now()), +(5159, 'Shaft', 'US', now()), +(5160, 'Shaky Ground', 'US', now()), +(5161, 'Shaman King (US)', 'AJ', now()), +(5162, 'Shameless', 'UK', now()), +(5163, 'Shane (US)', 'US', now()), +(5164, 'Shanna''s Show', 'US', now()), +(5165, 'Shannon''s Deal', 'US', now()), +(5166, 'Sharon, Lois & Bram''s Elephant Show', 'CA', now()), +(5167, 'Shasta McNasty', 'US', now()), +(5168, 'Shazam!', 'US', now()), +(5169, 'She-Ra: Princess of Power', 'US', now()), +(5170, 'She''s the Sheriff', 'US', now()), +(5171, 'Sheena', 'US', now()), +(5172, 'Sheep in the Big City', 'US', now()), +(5173, 'Sheer Dallas', 'US', now()), +(5174, 'Sherlock Holmes', 'FR', now()), +(5175, 'Sherlock Holmes (1984)', 'UK', now()), +(5176, 'Sherlock Holmes (CA)', 'CA', now()), +(5177, 'Sherlock Holmes in the 22nd Century', 'US', now()), +(5178, 'Sherman Oaks', 'US', now()), +(5179, 'She Spies', 'US', now()), +(5180, 'Shin Chan', 'JP', now()), +(5181, 'Mushrambo (US)', 'AJ', now()), +(5182, 'Ship to Shore', 'AU', now()), +(5183, 'Shirley', 'US', now()), +(5184, 'Shirley Temple''s Storybook', 'US', now()), +(5185, 'Shock Treatment', 'UK', now()), +(5186, 'Shoestring', 'UK', now()), +(5187, 'Shortland Street', 'NZ', now()), +(5188, 'Showbiz Moms & Dads', 'US', now()), +(5189, 'Show Me Yours', 'CA', now()), +(5190, 'Showtime at the Apollo', 'US', now()), +(5191, 'Sibs', 'US', now()), +(5192, 'Sidekicks', 'US', now()), +(5193, 'Sidewalks: Video Nite', 'US', now()), +(5194, 'Sidewalks Entertainment', 'US', now()), +(5195, 'The Sifl & Olly Show', 'US', now()), +(5196, 'Sightings', 'US', now()), +(5197, 'Significant Others (1998)', 'US', now()), +(5198, 'Significant Others (2004)', 'US', now()), +(5199, 'Silent Witness', 'UK', now()), +(5200, 'Silk Stalkings', 'US', now()), +(5201, 'Silver Spoons', 'US', now()), +(5202, 'Simon', 'US', now()), +(5203, 'Simon & Simon', 'US', now()), +(5204, 'Sing Me a Story with Belle', 'CA', now()), +(5205, 'Sins of the City', 'US', now()), +(5206, 'Sir Arthur Conan Doyle''s Sherlock Holmes', 'UK', now()), +(5207, 'Sirens (US)', 'US', now()), +(5208, 'Sir Francis Drake', 'UK', now()), +(5209, 'Sister, Sister', 'US', now()), +(5210, 'Sister Kate', 'US', now()), +(5211, 'Sisters', 'US', now()), +(5212, 'Sitting Ducks', 'US', now()), +(5213, 'Situation: Comedy', 'US', now()), +(5214, 'Six Feet Under', 'US', now()), +(5215, 'Skin', 'US', now()), +(5217, 'Sky', 'UK', now()), +(5218, 'Skysurfer Strike Force', 'US', now()), +(5219, 'Slattery''s People', 'US', now()), +(5220, 'Sledge Hammer!', 'US', now()), +(5221, 'Sleepwalkers', 'US', now()), +(5222, 'Sliders', 'US', now()), +(5223, 'Slimer! And the Real Ghostbusters', 'US', now()), +(5224, 'Slime Time', 'US', now()), +(5225, 'Slinger''s Day', 'UK', now()), +(5226, 'Small Shots', 'US', now()), +(5227, 'Smallville', 'US', now()), +(5228, 'Small Wonder', 'US', now()), +(5229, 'SMart', 'UK', now()), +(5230, 'Smart Guy', 'US', now()), +(5231, 'Snagglepuss', 'US', now()), +(5232, 'Snakes and Ladders (CA)', 'CA', now()), +(5233, 'Snapped', 'US', now()), +(5234, 'Snobs', 'AU', now()), +(5235, 'Snoops (1999)', 'US', now()), +(5236, 'Snoops (1989)', 'US', now()), +(5237, 'Snowy River: The McGregor Saga', 'AU', now()), +(5238, 'Soap', 'US', now()), +(5239, 'Sob Sisters', 'UK', now()), +(5240, 'Special Ops Force', 'US', now()), +(5241, 'So Graham Norton', 'UK', now()), +(5242, 'So Haunt Me', 'UK', now()), +(5243, 'So Little Time', 'US', now()), +(5244, 'Some of My Best Friends', 'US', now()), +(5245, 'Someone Like Me', 'US', now()), +(5246, 'Somerset', 'US', now()), +(5247, 'Something is Out There', 'US', now()), +(5248, 'Something So Right', 'US', now()), +(5249, 'Something Wilder', 'US', now()), +(5250, 'Sonic the Hedgehog', 'US', now()), +(5251, 'Sonic Underground', 'US', now()), +(5252, 'Sonic X', 'AJ', now()), +(5253, 'Son of the Beach', 'US', now()), +(5254, 'Sons and Daughters (AU)', 'AU', now()), +(5255, 'Sons of Thunder', 'US', now()), +(5256, 'Sooty & Co', 'UK', now()), +(5257, 'Sorcerer Hunters', 'JP', now()), +(5258, 'Sorority Life', 'US', now()), +(5259, 'Sorry!', 'UK', now()), +(5260, 'Soul Food', 'US', now()), +(5261, 'Soul Man', 'US', now()), +(5262, 'South Beach (1993)', 'US', now()), +(5263, 'South Central', 'US', now()), +(5264, 'South of Nowhere', 'US', now()), +(5265, 'South of Sunset', 'US', now()), +(5266, 'South Park', 'US', now()), +(5267, 'So Weird', 'US', now()), +(5268, 'So What Now?', 'UK', now()), +(5269, 'So You Think You''ve Got Troubles', 'UK', now()), +(5270, 'So You Think You Can Dance', 'US', now()), +(5271, 'Space: 1999', 'UK', now()), +(5272, 'Space: Above and Beyond', 'US', now()), +(5273, 'Space Cases', 'US', now()), +(5274, 'Spaced', 'UK', now()), +(5275, 'Space Ghost and Dino Boy', 'US', now()), +(5276, 'Space Ghost Coast to Coast', 'US', now()), +(5277, 'Space Goofs', 'US', now()), +(5278, 'Space Island One', 'UK', now()), +(5279, 'Space Patrol (US)', 'US', now()), +(5280, 'Space Precinct', 'US', now()), +(5281, 'Sparkhouse', 'UK', now()), +(5282, 'Sparks', 'US', now()), +(5283, 'Spawn', 'US', now()), +(5284, 'Special Branch', 'UK', now()), +(5285, 'Special Squad', 'AU', now()), +(5286, 'Special Unit 2', 'US', now()), +(5287, 'Speed Buggy', 'US', now()), +(5288, 'Speed Racer (US)', 'AJ', now()), +(5289, 'Spencer''s Pilots', 'US', now()), +(5290, 'Spender', 'UK', now()), +(5291, 'Spenser: For Hire', 'US', now()), +(5292, 'Spicks & Specks', 'AU', now()), +(5293, 'Spicy City', 'US', now()), +(5294, 'Spider-Man (1994)', 'US', now()), +(5295, 'Spider-Man (1967)', 'US', now()), +(5296, 'Spider-Man (1981)', 'US', now()), +(5297, 'Spider-Man (2003)', 'US', now()), +(5298, 'Spider-Man and His Amazing Friends', 'US', now()), +(5299, 'Spider-Man Unlimited', 'US', now()), +(5300, 'Spider-Woman', 'US', now()), +(5301, 'Spin City', 'US', now()), +(5302, 'Spiral (US)', 'AJ', now()), +(5303, 'Spiral Zone', 'US', now()), +(5304, 'SpongeBob SquarePants', 'US', now()), +(5305, 'Sport Billy', 'US', now()), +(5306, 'SportsCenter', 'US', now()), +(5307, 'Sports Illustrated: Swimsuit Model Search', 'US', now()), +(5308, 'Sports Kids Moms & Dads', 'US', now()), +(5309, 'Sports Night', 'US', now()), +(5310, 'Spy Academy', 'CA', now()), +(5311, 'Spy Game', 'US', now()), +(5312, 'Spy Groove', 'US', now()), +(5313, 'Spy TV', 'US', now()), +(5314, 'Square Pegs (US)', 'US', now()), +(5315, 'St. Elsewhere', 'US', now()), +(5316, 'Stacked', 'US', now()), +(5317, 'Stagecoach West', 'US', now()), +(5318, 'Stand by Your Man', 'US', now()), +(5319, 'Stanley', 'US', now()), +(5320, 'Starcom: The U.S. Space Force', 'US', now()), +(5321, 'Star Cops', 'UK', now()), +(5322, 'Star Fleet', 'JP', now()), +(5323, 'Stargate: Infinity', 'US', now()), +(5324, 'Stargate Atlantis', 'US', now()), +(5325, 'Stargate SG-1', 'US', now()), +(5326, 'Starhunter', 'CA', now()), +(5327, 'Stark Raving Mad', 'US', now()), +(5328, 'Starman', 'US', now()), +(5329, 'Star Search', 'US', now()), +(5330, 'Starsky & Hutch', 'US', now()), +(5331, 'Stars with Hearts', now(), now()), +(5332, 'Starting Over', 'US', now()), +(5333, 'Star Trek', 'US', now()), +(5334, 'Star Trek: Deep Space Nine', 'US', now()), +(5335, 'Star Trek: Enterprise', 'US', now()), +(5336, 'Star Trek: The Animated Series', 'US', now()), +(5337, 'Star Trek: The Next Generation', 'US', now()), +(5338, 'Star Trek: Voyager', 'US', now()), +(5339, 'Starved', 'US', now()), +(5340, 'Star Wars: Clone Wars (2003)', 'US', now()), +(5341, 'Stat', 'US', now()), +(5342, 'State of Grace', 'US', now()), +(5343, 'State of Play', 'UK', now()), +(5344, 'Static Shock', 'US', now()), +(5345, 'Stella', 'US', now()), +(5346, 'Step by Step', 'US', now()), +(5347, 'Stephen King''s Golden Years', 'US', now()), +(5348, 'Stephen King''s Kingdom Hospital', 'US', now()), +(5350, 'Steve Canyon', 'US', now()), +(5351, 'Steve Harvey''s Big Time Challenge', 'US', now()), +(5352, 'Still Game', 'UK', now()), +(5353, 'Still Standing', 'US', now()), +(5354, 'Stingers', 'AU', now()), +(5355, 'Stingray (1985)', 'US', now()), +(5356, 'Stingray (2005)', 'US', now()), +(5357, 'Stockard Channing: In Just Friends', 'US', now()), +(5358, 'Stop Susan Williams', 'US', now()), +(5359, 'Strange', 'UK', now()), +(5360, 'Strange Days at Blake Holsey High', 'US', now()), +(5361, 'Strange Frequency', 'US', now()), +(5362, 'Strange Love', 'US', now()), +(5363, 'Strange Luck', 'US', now()), +(5364, 'Strangers with Candy', 'US', now()), +(5365, 'Strange World', 'US', now()), +(5366, 'Strawberry Shortcake', 'US', now()), +(5367, 'Street Fighter', 'US', now()), +(5368, 'Street Fighter II: V', 'JP', now()), +(5369, 'Street Fury', 'US', now()), +(5370, 'Street Hawk', 'US', now()), +(5371, 'Street Justice', 'US', now()), +(5372, 'Street Legal (CA)', 'CA', now()), +(5373, 'Streetsmartz', 'AU', now()), +(5374, 'Street Time', 'US', now()), +(5375, 'Stressed Eric', 'UK', now()), +(5376, 'Strictly Dance Fever', 'UK', now()), +(5377, 'Strip Mall', 'US', now()), +(5378, 'Stripperella', 'US', now()), +(5379, 'Strong Medicine', 'US', now()), +(5380, 'Stuart Little', 'US', now()), +(5381, 'Student Bodies', 'CA', now()), +(5382, 'Studio 7', 'US', now()), +(5383, 'Studio One', 'US', now()), +(5384, 'Stupid', 'UK', now()), +(5385, 'Style and Substance', 'US', now()), +(5386, 'Suddenly Susan', 'US', now()), +(5387, 'Sue Thomas: F.B.Eye', 'US', now()), +(5388, 'Sugarfoot', 'US', now()), +(5389, 'Summerland', 'US', now()), +(5390, 'Sunday Dinner', 'US', now()), +(5391, 'Sunday Morning Shootout', 'US', now()), +(5392, 'Sunday Night Heat', 'US', now()), +(5393, 'Sunnyside Farm', 'UK', now()), +(5394, 'Sun on the Stubble', 'AU', now()), +(5395, 'Sunset Beach', 'US', now()), +(5396, 'Super Adventure Team', 'US', now()), +(5397, 'Super Agent', 'US', now()), +(5398, 'Supercar', 'UK', now()), +(5399, 'Supercarrier', 'US', now()), +(5400, 'Super Duper Sumos', 'US', now()), +(5401, 'Super Force', 'US', now()), +(5402, 'SuperFriends (1973)', 'US', now()), +(5403, 'SuperFriends (1978)', 'US', now()), +(5404, 'SuperFriends (1980)', 'US', now()), +(5405, 'SuperFriends: The Legendary Super Powers Show', 'US', now()), +(5406, 'Superhuman Samurai Syber-Squad', 'US', now()), +(5407, 'Superman (1996)', 'US', now()), +(5408, 'Superman (1988)', 'US', now()), +(5409, 'Supernanny', 'US', now()), +(5410, 'Supernatural', 'US', now()), +(5411, 'Super Robot Monkey Team Hyperforce Go!', 'US', now()), +(5412, 'Superstar USA', 'US', now()), +(5413, 'SuperTed', 'UK', now()), +(5414, 'Surface', 'US', now()), +(5415, 'SurfSide 6', 'US', now()), +(5416, 'Surprise! It''s Edible Incredible!', 'CA', now()), +(5417, 'Surviving Nugent', 'US', now()), +(5418, 'Survivor', 'US', now()), +(5419, 'Survivor (UK)', 'UK', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(5420, 'Survivors', 'UK', now()), +(5421, 'Suspense (US)', 'US', now()), +(5422, 'Suspense (UK)', 'UK', now()), +(5423, 'Swamp Thing', 'US', now()), +(5424, 'Swamp Thing: The Animated Series', 'US', now()), +(5425, 'Swat Kats: The Radical Squadron', 'US', now()), +(5426, 'Sweat (US)', 'US', now()), +(5427, 'Sweating Bullets', 'CA', now()), +(5428, 'Sweet Justice', 'US', now()), +(5429, 'Sweet Valley High', 'US', now()), +(5430, 'Swift Justice', 'US', now()), +(5431, 'The Adventures of Swiss Family Robinson', 'NZ', now()), +(5432, 'Swiss Family Robinson (CA)', 'CA', now()), +(5433, 'Swiss Toni', 'UK', now()), +(5434, 'Switch', 'US', now()), +(5435, 'Sword of Freedom', 'UK', now()), +(5436, 'Sword of Justice', 'US', now()), +(5437, 'Sydney', 'US', now()), +(5438, 'Sylvester & Tweety Mysteries', 'US', now()), +(5439, 'System Crash', 'CA', now()), +(5440, 'T.H.E. Cat', 'US', now()), +(5441, 'T.J. Hooker', 'US', now()), +(5442, 'Tabitha', 'US', now()), +(5443, 'Tactical to Practical', 'US', now()), +(5444, 'Taggart', 'UK', now()), +(5445, 'TailDaters', 'US', now()), +(5446, 'Taina', 'US', now()), +(5447, 'Taken', 'US', now()), +(5448, 'Tales from the Crypt', 'US', now()), +(5449, 'Tales From the Cryptkeeper', 'CA', now()), +(5450, 'Tales from the Darkside', 'US', now()), +(5451, 'Tales from the Neverending Story', 'CA', now()), +(5452, 'Tales of the Gold Monkey', 'US', now()), +(5453, 'Tales of the Vikings', 'UK', now()), +(5454, 'Tales of The Wizard of Oz', 'US', now()), +(5455, 'Tales of Tomorrow', 'US', now()), +(5456, 'Tales of Wells Fargo', 'US', now()), +(5457, 'TaleSpin', 'US', now()), +(5458, 'Talk Sex With Sue Johanson', 'US', now()), +(5459, 'Talk to Me', 'US', now()), +(5460, 'Tama and Friends', 'JP', now()), +(5461, 'Tanner ''88', 'US', now()), +(5462, 'Target (UK)', 'UK', now()), +(5463, 'Target: The Corruptors', 'US', now()), +(5464, 'Tarzan (2003)', 'US', now()), +(5465, 'Tarzan (1966)', 'US', now()), +(16637, 'On Our Own (1977)', 'US', now()), +(5467, 'Tarzan (1991)', 'US', now()), +(5468, 'Tarzan and the Super 7', 'US', now()), +(5469, 'Tarzan Lord of the Jungle', 'US', now()), +(5470, 'Tarzan The Epic Adventures', 'US', now()), +(5471, 'Tattinger''s', 'US', now()), +(5472, 'Tattletales', 'US', now()), +(5473, 'Tattooed Teenage Alien Fighters from Beverly Hills', 'US', now()), +(5474, 'Taxi', 'US', now()), +(5475, 'Teacher''s Pet', 'US', now()), +(5476, 'Team Knight Rider', 'US', now()), +(5477, 'Teamo Supremo', 'US', now()), +(7145, 'ESPN College GameDay', 'US', now()), +(5479, 'Tech Effect', 'US', now()), +(5480, 'Teech', 'US', now()), +(5481, 'Teenage Mutant Ninja Turtles (1987)', 'US', now()), +(5482, 'Teenage Mutant Ninja Turtles (2003)', 'US', now()), +(5483, 'Teen Angel', 'US', now()), +(5484, 'Teen Big Brother', 'UK', now()), +(5485, 'Teen Titans', 'US', now()), +(5486, 'Tek War', 'US', now()), +(5487, 'Teletubbies', 'UK', now()), +(5488, 'Temperatures Rising', 'US', now()), +(5489, 'Temporarily Yours', 'US', now()), +(5490, 'Temptation Island', 'US', now()), +(5491, 'Tenacious D', 'US', now()), +(5492, 'Tenchi Muyo! Ryo-Ohki', 'AJ', now()), +(5493, 'Tenspeed and Brown Shoe', 'US', now()), +(5494, 'Terry Jones'' Medieval Lives', 'UK', now()), +(5496, 'Thanks', 'US', now()), +(5497, 'That ''70s Show', 'US', now()), +(5498, 'That ''80s Show', 'US', now()), +(5499, 'That''s Incredible! (1980)', 'US', now()), +(5500, 'That''s Life (2000)', 'US', now()), +(5501, 'That''s Life (1968)', 'US', now()), +(5502, 'That''s Life (1998)', 'US', now()), +(5503, 'That''s My Bush!', 'US', now()), +(5504, 'That''s So Raven', 'US', now()), +(5505, 'That''s Warner Bros!', 'US', now()), +(5506, 'That Girl', 'US', now()), +(5507, 'That Was Then', 'US', now()), +(5508, 'The 100 Lives of Black Jack Savage', 'US', now()), +(5509, 'The 10%ers', 'UK', now()), +(5510, 'The 13 Ghosts of Scooby-Doo', 'US', now()), +(5511, 'The 1900 House', 'US', now()), +(5512, 'The 1970s Office', 'UK', now()), +(5513, 'The 20th Century-Fox Hour', 'US', now()), +(5514, 'The 4400', 'US', now()), +(5515, 'Thea', 'US', now()), +(5516, 'The A-Team', 'US', now()), +(5517, 'The Abbott and Costello Show', 'US', now()), +(5518, 'The ABC Afterschool Special', 'US', now()), +(5519, 'Accidental Family', 'US', now()), +(5520, 'The Accuser', 'US', now()), +(5521, 'The Addams Family (1964)', 'US', now()), +(5522, 'The Addams Family (1973)', 'US', now()), +(5523, 'The Addams Family (1992)', 'US', now()), +(5524, 'The Adventures of Brisco County, Jr.', 'US', now()), +(5525, 'The Adventures of Champion', 'US', now()), +(5526, 'The Adventures of Fu Manchu', 'US', now()), +(5527, 'The Adventures of Gulliver', 'US', now()), +(5528, 'The Adventures of Hiram Holliday', 'US', now()), +(5529, 'The Adventures of Hyperman', 'US', now()), +(5530, 'The Adventures of Jim Bowie', 'US', now()), +(5531, 'The Adventures of Jimmy Neutron: Boy Genius', 'US', now()), +(5532, 'The Adventures of Kit Carson', 'US', now()), +(5533, 'The Adventures of Mark & Brian', 'US', now()), +(5534, 'The Adventures of McGee and Me', 'US', now()), +(5535, 'The Adventures of Ozzie & Harriet', 'US', now()), +(5536, 'The Adventures of Paddington Bear', 'US', now()), +(5537, 'The Adventures of Pete & Pete', 'US', now()), +(5538, 'The Adventures of Rin Tin Tin', 'US', now()), +(5539, 'The Adventures of Robin Hood', 'UK', now()), +(5540, 'The Adventures of Shirley Holmes', 'CA', now()), +(5541, 'The Adventures of Sinbad', 'US', now()), +(5542, 'The Adventures of Sir Lancelot', 'UK', now()), +(5543, 'Adventures of Sonic the Hedgehog', 'US', now()), +(5544, 'The Adventures of Spot', 'UK', now()), +(5545, 'The Adventures of Superboy (1988)', 'US', now()), +(5546, 'The Adventures of Superboy (1966)', 'US', now()), +(5547, 'Swiss Family Robinson (US)', 'US', now()), +(5548, 'The Adventures of Teddy Ruxpin', 'US', now()), +(5549, 'The Adventures of the Black Stallion', 'CA', now()), +(5550, 'The Adventures of Wild Bill Hickok', 'US', now()), +(5551, 'William Tell', 'UK', now()), +(5552, 'The Agatha Christie Hour', 'UK', now()), +(5553, 'The Agency', 'US', now()), +(5554, 'The Alan Young Show', 'US', now()), +(5555, 'The Alaskans', 'US', now()), +(5556, 'The Aldrich Family', 'US', now()), +(5557, 'The Alfred Hitchcock Hour', 'US', now()), +(5558, 'The All-New Popeye Hour', 'US', now()), +(5559, 'The New Scooby and Scrappy Doo Show', 'US', now()), +(5560, 'The All-New SuperFriends Hour', 'US', now()), +(5561, 'Alleyn Mysteries', 'UK', now()), +(5562, 'The Alvin Show', 'US', now()), +(5563, 'The Amanda Show', 'US', now()), +(5564, 'The Amazing Chan and the Chan Clan', 'US', now()), +(5565, 'The Amazing Dunninger', 'US', now()), +(5566, 'The Amazing Race', 'US', now()), +(5567, 'The Amazing Spider-Man', 'US', now()), +(5568, 'The Ambassador', 'UK', now()), +(5569, 'The American Embassy', 'US', now()), +(5570, 'The American Girls', 'US', now()), +(5571, 'The Americans (1961)', 'US', now()), +(5572, 'The Ananda Lewis Show', 'US', now()), +(5573, 'The Andy Dick Show', 'US', now()), +(5574, 'The Andy Griffith Show', 'US', now()), +(5575, 'The Andy Milonakis Show', 'US', now()), +(5576, 'The Angry Beavers', 'US', now()), +(5577, 'The Animals of Farthing Wood', 'UK', now()), +(5578, 'The Anna Nicole Show', 'US', now()), +(5579, 'The Antagonists', 'US', now()), +(5580, 'The Apprentice (US)', 'US', now()), +(5581, 'The Apprentice: Martha Stewart', 'US', now()), +(5582, 'The Apprentice (UK)', 'UK', now()), +(5583, 'The Arlene Francis Show', 'US', now()), +(5584, 'The Army Show', 'US', now()), +(21088, 'Dedicated', 'CA', now()), +(5586, 'The Ashlee Simpson Show', 'US', now()), +(5587, 'The Associates (US)', 'US', now()), +(5588, 'The Associates (CA)', 'CA', now()), +(5589, 'The Atom Ant/Secret Squirrel Show', 'US', now()), +(5590, 'The Atom Ant Show', 'US', now()), +(5591, 'The Avengers', 'UK', now()), +(5592, 'The Babysitters Club', 'US', now()), +(5593, 'The Bachelor', 'US', now()), +(5594, 'The Bachelorette', 'US', now()), +(5595, 'The Backyardigans', 'CA', now()), +(5596, 'The Bad Girl''s Guide', 'US', now()), +(5597, 'The Bad News Bears', 'US', now()), +(5598, 'The Baker Street Boys', 'UK', now()), +(5599, 'Barbary Coast', 'US', now()), +(5600, 'The Barkleys', 'US', now()), +(5601, 'The Baron', 'UK', now()), +(5602, 'The Batman', 'US', now()), +(5603, 'The Beast (2001)', 'US', now()), +(5604, 'The Beat', 'US', now()), +(5605, 'The Beatles', 'US', now()), +(5606, 'The Bedford Diaries', 'US', now()), +(5607, 'The Benefactor', 'US', now()), +(5608, 'The Ben Stiller Show', 'US', now()), +(5609, 'The Berenstain Bears Show', 'US', now()), +(5610, 'The Bernie Mac Show', 'US', now()), +(5611, 'The Best Damn Sports Show Period', 'US', now()), +(5612, 'The Best Of', 'US', now()), +(5613, 'The Best Sex Ever', 'US', now()), +(5614, 'The Betty Hutton Show', 'US', now()), +(5615, 'The Beverly Hillbillies', 'US', now()), +(5616, 'The Big Bow Wow', 'IE', now()), +(5617, 'The Big Easy', 'US', now()), +(5618, 'The Biggest Loser', 'US', now()), +(5619, 'The Big House', 'US', now()), +(8059, 'Naruto (US)', 'AJ', now()), +(5621, 'The Big One', 'UK', now()), +(5622, 'The Big Valley', 'US', now()), +(5623, 'The Bill', 'UK', now()), +(5624, 'The Bill Cosby Show', 'US', now()), +(5625, 'The Bionic Woman', 'US', now()), +(5626, 'Blackadder', 'UK', now()), +(5627, 'Black Sash', 'US', now()), +(5628, 'The Blue Knight', 'US', now()), +(5629, 'The Bob Cummings Show', 'US', now()), +(5630, 'The Bob Newhart Show (1972)', 'US', now()), +(5631, 'The Bold and the Beautiful', 'US', now()), +(5632, 'The Bold Ones: The Lawyers', 'US', now()), +(5633, 'The Bold Ones: The New Doctors', 'US', now()), +(5634, 'The Bold Ones: The Protectors', 'US', now()), +(5635, 'The Bold Ones: The Senator', 'US', now()), +(5636, 'The Bonnie Hunt Show', 'US', now()), +(5637, 'The Book of Pooh', 'US', now()), +(5638, 'The Boondocks', 'US', now()), +(5639, 'The Bounder', 'UK', now()), +(5640, 'The Boy', 'CA', now()), +(5641, 'The Boys are Back', 'US', now()), +(5642, 'The Brady Brides', 'US', now()), +(5643, 'The Brady Bunch', 'US', now()), +(5644, 'The Brady Bunch Hour', 'US', now()), +(5645, 'The Brady Kids', 'US', now()), +(5646, 'The Bradys', 'US', now()), +(5647, 'The Brak Show', 'US', now()), +(5648, 'The Brendan Leonard Show', 'US', now()), +(5649, 'The Brian Benben Show', 'US', now()), +(5650, 'The Brittas Empire', 'UK', now()), +(5651, 'The Broad Side', 'CA', now()), +(5652, 'The Broker''s Man', 'UK', now()), +(5653, 'The Bronx Zoo', 'US', now()), +(5654, 'The Brotherhood of Poland, N.H.', 'US', now()), +(5655, 'The Brothers Garcia', 'US', now()), +(5656, 'The Brothers Grunt', 'US', now()), +(5657, 'The Buccaneers (US)', 'UK', now()), +(5658, 'The Bugs ''n'' Daffy Show', 'US', now()), +(5659, 'The Bugs Bunny/Road Runner Hour', 'US', now()), +(5660, 'The Bugs Bunny and Tweety Show', 'US', now()), +(5661, 'The Bugs Bunny Show', 'US', now()), +(5662, 'The Building', 'US', now()), +(24529, 'Mars (TW)', 'TW', now()), +(5664, 'The Buzz on Maggie', 'US', now()), +(5665, 'Byrds of Paradise', 'US', now()), +(5666, 'The Cabbage Patch', 'UK', now()), +(5667, 'The California Raisin Show', 'US', now()), +(5668, 'The Cape (1996)', 'US', now()), +(5669, 'The Captain and Tennille', 'US', now()), +(5670, 'The Carol Burnett Show (1967)', 'US', now()), +(5671, 'The Caroline Rhea Show', 'US', now()), +(5672, 'The Casino', 'US', now()), +(5673, 'The Catherine Tate Show', 'UK', now()), +(5674, 'The Cavanaughs', 'US', now()), +(5675, 'Centurions', 'US', now()), +(5676, 'The Champions', 'UK', now()), +(5677, 'The Changes', 'UK', now()), +(5678, 'The Charlie Brown and Snoopy Show', 'US', now()), +(5679, 'The Charmings', 'US', now()), +(5680, 'The Chimp Channel', 'US', now()), +(5681, 'The Chris Isaak Show', 'US', now()), +(5682, 'The Chris Rock Show', 'US', now()), +(5683, 'The Chronicle', 'US', now()), +(5684, 'The Cisco Kid', 'US', now()), +(5685, 'The Closer', 'US', now()), +(5686, 'The Closer (1998)', 'US', now()), +(5687, 'The Colin Quinn Show', 'US', now()), +(5688, 'The Collector', 'CA', now()), +(5689, 'The Comeback', 'US', now()), +(5690, 'The Comic Strip Presents', 'UK', now()), +(5691, 'The Commander', 'UK', now()), +(5692, 'The Commish', 'US', now()), +(5693, 'The Complex: Malibu', 'US', now()), +(5694, 'The Contender (2005)', 'US', now()), +(5695, 'The Cooks', 'AU', now()), +(5696, 'The Corner', 'US', now()), +(5697, 'The Cosby Mysteries', 'US', now()), +(5698, 'The Cosby Show', 'US', now()), +(5699, 'The Count of Monte Cristo', 'UK', now()), +(5700, 'The Country Mouse & the City Mouse Adventures', 'US', now()), +(5701, 'The Court', 'US', now()), +(5702, 'The Crew', 'US', now()), +(5703, 'The Critic', 'US', now()), +(5704, 'The Crocodile Hunter Diaries', 'AU', now()), +(5705, 'The Crouches', 'UK', now()), +(5706, 'The Crow: Stairway to Heaven', 'CA', now()), +(5707, 'The Cuckoo Waltz', 'UK', now()), +(5708, 'The Cut (2005)', 'US', now()), +(5709, 'The Cut (1998)', 'US', now()), +(5710, 'The D.A. (1971)', 'US', now()), +(5711, 'The D.A. (2004)', 'US', now()), +(5712, 'The D.A.''s Man', 'US', now()), +(5713, 'The Daily Buzz', 'US', now()), +(5714, 'The Daily Show', 'US', now()), +(5715, 'The Dana Carvey Show', 'US', now()), +(5716, 'The Darling Buds of May', 'UK', now()), +(5717, 'The David Letterman Show', 'US', now()), +(5718, 'The Days', 'US', now()), +(5719, 'The Days and Nights of Molly Dodd', 'US', now()), +(5720, 'The Day Today', 'UK', now()), +(5721, 'The Dead Zone', 'US', now()), +(5722, 'The Dean Martin Show', 'US', now()), +(5723, 'The Dennis O''Keefe Show', 'US', now()), +(5724, 'The Deputy', 'US', now()), +(5725, 'The Dick Van Dyke Show', 'US', now()), +(5726, 'The Dirty Dozen', 'US', now()), +(5727, 'The District', 'US', now()), +(5728, 'The Division', 'US', now()), +(5729, 'The Don Knotts Show', 'US', now()), +(5730, 'The Donna Reed Show', 'US', now()), +(5731, 'The Don Rickles Show (1972)', 'US', now()), +(5732, 'The Doodlebops', 'CA', now()), +(5733, 'The Doris Day Show', 'US', now()), +(5734, 'The Downer Channel', 'US', now()), +(5735, 'The Dr. Phil Show', 'US', now()), +(5736, 'Dream Team', 'UK', now()), +(5737, 'The Drew Carey Show', 'US', now()), +(5738, 'The Duck Factory', 'US', now()), +(5739, 'The Duke', 'US', now()), +(5740, 'The Dukes', 'US', now()), +(5741, 'The Dukes of Hazzard', 'US', now()), +(5742, 'The Early Show', 'US', now()), +(5743, 'The Edge', 'US', now()), +(5744, 'The Edison Twins', 'CA', now()), +(5745, 'The Education of Max Bickford', 'US', now()), +(5746, 'The Electric Company', 'US', now()), +(5747, 'The Electric Playground', 'US', now()), +(5748, 'The Eleventh Hour (US)', 'US', now()), +(5749, 'The Ellen Burstyn Show', 'US', now()), +(5750, 'The Ellen DeGeneres Show', 'US', now()), +(5751, 'The Ellen Show', 'US', now()), +(5752, 'The Enid Blyton Adventure Series', 'UK', now()), +(5753, 'The Enid Blyton Secret Series', 'UK', now()), +(5754, 'The Entertainer', 'US', now()), +(5755, 'The Equalizer', 'US', now()), +(5756, 'The Evil Touch', 'AU', now()), +(5757, 'The Exile', 'US', now()), +(5758, 'The F.B.I.', 'US', now()), +(5759, 'The Facts of Life', 'US', now()), +(5760, 'The Faculty', 'US', now()), +(5761, 'The Fairly OddParents', 'US', now()), +(5762, 'The Fall and Rise of Reginald Perrin', 'UK', now()), +(5763, 'The Fall Guy', 'US', now()), +(5764, 'The Family Man (US)', 'US', now()), +(5765, 'The Famous Adventures of Mr. Magoo', 'US', now()), +(5766, 'The Famous Five (1978)', 'UK', now()), +(5767, 'The Famous Five (1996)', 'UK', now()), +(5768, 'The Famous Jett Jackson', 'US', now()), +(5769, 'The Famous Teddy Z', 'US', now()), +(5770, 'The Fanelli Boys', 'US', now()), +(5771, 'The Fantastic Four (1994)', 'US', now()), +(5772, 'The Fantastic Four (1967)', 'US', now()), +(5773, 'The Farm', 'UK', now()), +(5774, 'The Farmer''s Daughter', 'US', now()), +(5775, 'The Fast Show', 'UK', now()), +(5776, 'The Fearing Mind', 'US', now()), +(5777, 'The Feather And Father Gang', 'US', now()), +(5778, 'The Fifth Corner', 'US', now()), +(5779, 'The Fighting Fitzgeralds', 'US', now()), +(5780, 'The Five Mrs. Buchanans', 'US', now()), +(5781, 'The Flash', 'US', now()), +(5782, 'The Flashing Blade', 'FR', now()), +(5783, 'The Flintstone Comedy Show', 'US', now()), +(5784, 'The Flintstone Kids', 'US', now()), +(5785, 'The Flintstones', 'US', now()), +(5786, 'The Flip Wilson Show', 'US', now()), +(5787, 'The Flying Doctor', 'AU', now()), +(5788, 'The Flying Doctors', 'AU', now()), +(5789, 'The Flying Nun', 'US', now()), +(5790, 'The Footy Show (AFL)', 'AU', now()), +(5791, 'The Forsyte Saga (2002)', 'UK', now()), +(5792, 'The Four Just Men', 'UK', now()), +(5793, 'The Frank Sinatra Show', 'US', now()), +(5794, 'The Frank Skinner Show', 'UK', now()), +(5795, 'The Fresh Prince of Bel-Air', 'US', now()), +(5796, 'The Fugitive (2000)', 'US', now()), +(5797, 'The Fugitive (1963)', 'US', now()), +(5798, 'The Fugitives', 'UK', now()), +(5799, 'The Further Adventures of Spin and Marty', 'US', now()), +(5800, 'The Gale Storm Show', 'US', now()), +(5801, 'The Gallant Men', 'US', now()), +(5802, 'The Games (UK)', 'UK', now()), +(5803, 'The Gary Coleman Show', 'US', now()), +(5804, 'The Gay Cavalier', 'UK', now()), +(5805, 'The Geena Davis Show', 'US', now()), +(5806, 'Gemini Man', 'US', now()), +(5807, 'The Gene Autry Show', 'US', now()), +(5808, 'The Genie From Down Under', 'AU', now()), +(5809, 'The Gentle Touch', 'UK', now()), +(5810, 'The George Burns and Gracie Allen Show', 'US', now()), +(5811, 'The George Burns Show', 'US', now()), +(5812, 'The George Carlin Show', 'US', now()), +(5813, 'The George Wendt Show', 'US', now()), +(5814, 'The Ghost and Mrs. Muir', 'US', now()), +(5815, 'The Girl from U.N.C.L.E.', 'US', now()), +(5816, 'The Girl with Something Extra', 'US', now()), +(5817, 'The Glass House', 'AU', now()), +(5818, 'Godzilla', 'US', now()), +(5819, 'The Goldbergs', 'US', now()), +(5820, 'The Golden Girls', 'US', now()), +(5821, 'The Golden Palace', 'US', now()), +(5822, 'The Gong Show', 'US', now()), +(5823, 'The Good Life (UK)', 'UK', now()), +(5824, 'The Good Life (1994)', 'US', now()), +(5825, 'The Governor', 'UK', now()), +(5826, 'The Great Defender', 'US', now()), +(5827, 'The Greatest American Hero', 'US', now()), +(5828, 'The Greatest Show on Earth', 'US', now()), +(5829, 'The Green Hornet', 'US', now()), +(5830, 'The Gregory Hines Show', 'US', now()), +(5831, 'The Grid', 'US', now()), +(5832, 'The Grim Adventures of Billy and Mandy', 'US', now()), +(5833, 'The Grimleys', 'UK', now()), +(5834, 'The Groovy Fellers', 'UK', now()), +(5835, 'The Guardian', 'US', now()), +(5836, 'The Guardians', 'UK', now()), +(5837, 'The Gumby Show', 'US', now()), +(5838, 'The Guns of Will Sonnett', 'US', now()), +(5839, 'The Handler', 'US', now()), +(5840, 'The Hardy Boys (1995)', 'US', now()), +(5841, 'The Hardy Boys (1956)', 'US', now()), +(5842, 'The Hardy Boys/Nancy Drew Mysteries', 'US', now()), +(17066, 'Nurse', 'US', now()), +(5844, 'The Hat Squad', 'US', now()), +(5845, 'The Heckle and Jeckle Show', 'US', now()), +(5846, 'The Heights', 'US', now()), +(5847, 'The Help', 'US', now()), +(5848, 'The Herculoids', 'US', now()), +(5849, 'The Hidden Room', 'CA', now()), +(5850, 'The High Chaparral', 'US', now()), +(5851, 'The High Life (US)', 'US', now()), +(5852, 'The Highwayman', 'US', now()), +(5853, 'The Hitchhiker', 'US', now()), +(5854, 'The Hitch Hikers Guide to the Galaxy', 'UK', now()), +(5855, 'The Hogan Family', 'US', now()), +(5856, 'The Hollywood Palace', 'US', now()), +(5857, 'The Home Court', 'US', now()), +(5858, 'The Honeymooners', 'US', now()), +(5859, 'The Hoop Life', 'US', now()), +(5860, 'George Stroumboulopoulos Tonight', 'CA', now()), +(5861, 'The House of Eliott', 'UK', now()), +(5862, 'The House of Windsor', 'UK', now()), +(5863, 'The Hughleys', 'US', now()), +(5864, 'The Human Factor', 'US', now()), +(5865, 'The Hunger', 'US', now()), +(5866, 'The Huntress', 'US', now()), +(5867, 'The Imaginatively-Titled Punt & Dennis Show', 'UK', now()), +(5868, 'The Immortal (2000)', 'US', now()), +(5869, 'The Immortal (1970)', 'US', now()), +(5870, 'The Incredible Hulk (1977)', 'US', now()), +(5871, 'The Incredible Hulk (1982)', 'US', now()), +(5872, 'The Incredible Hulk (1996)', 'US', now()), +(5873, 'The Inside', 'US', now()), +(5874, 'The Insider', 'US', now()), +(5875, 'The Insiders', 'US', now()), +(5876, 'The Invaders', 'US', now()), +(5877, 'The Invisible Man (2000)', 'US', now()), +(5879, 'The Invisible Man (1975)', 'US', now()), +(5880, 'The It Factor', 'US', now()), +(5881, 'The Jack Benny Program', 'US', now()), +(5882, 'The Jackie Thomas Show', 'US', now()), +(5883, 'The Jamie Foxx Show', 'US', now()), +(5884, 'The Jamie Kennedy Experiment', 'US', now()), +(5885, 'The Jane Pauley Show', 'US', now()), +(5886, 'The Jeff Corwin Experience', 'US', now()), +(5887, 'The Jeffersons', 'US', now()), +(5888, 'The Jeff Foxworthy Show', 'US', now()), +(5889, 'The Jenny McCarthy Show', 'US', now()), +(5890, 'The Jerry Springer Show', 'US', now()), +(5891, 'The Jersey', 'US', now()), +(5892, 'The Jetsons', 'US', now()), +(5893, 'The Jim Bakker Show', 'US', now()), +(5894, 'The Jim Henson Hour', 'US', now()), +(5895, 'The Jimmy Stewart Show', 'US', now()), +(5896, 'The Joan Rivers Show', 'US', now()), +(5897, 'The Job', 'US', now()), +(5898, 'The Joe Schmo Show', 'US', now()), +(5899, 'The John Larroquette Show', 'US', now()), +(5900, 'The Jonathan Winters Show', 'US', now()), +(5901, 'The Journey of Allen Strange', 'US', now()), +(5902, 'The Jury (US)', 'US', now()), +(5903, 'The Karate Kid', 'US', now()), +(5904, 'The Kids In The Hall', 'CA', now()), +(5905, 'The Kids of Degrassi Street', 'CA', now()), +(5906, 'The Kid Super Power Hour with Shazam!', 'US', now()), +(5907, 'The King of Queens', 'US', now()), +(5908, 'The Krofft Supershow', 'US', now()), +(5909, 'The Larry Sanders Show', 'US', now()), +(5910, 'The Last Detective', 'UK', now()), +(5911, 'The Last Frontier', 'US', now()), +(5912, 'The Last Machine', 'UK', now()), +(5913, 'The Last Salute', 'UK', now()), +(5914, 'The Late Late Show with Craig Ferguson', 'US', now()), +(5915, 'The Late Late Show with Craig Kilborn', 'US', now()), +(5916, 'The Laurel and Hardy Show', 'US', now()), +(5917, 'The Law Firm', 'US', now()), +(5918, 'The League of Gentlemen', 'UK', now()), +(5919, 'The Legend of Black Heaven (US)', 'JP', now()), +(5920, 'The Legend of Calamity Jane', 'US', now()), +(5921, 'The Legend of Jesse James', 'US', now()), +(5922, 'The Legend of Robin Hood', 'UK', now()), +(5923, 'The Legend of Tarzan', 'US', now()), +(5924, 'The Legend of William Tell', 'NZ', now()), +(5925, 'The Legend of Zelda', 'US', now()), +(5926, 'The Legends of Treasure Island', 'UK', now()), +(5927, 'The Lenny Henry Show (1984)', 'UK', now()), +(5928, 'The Lenny Henry Show (1987)', 'UK', now()), +(5929, 'The Lenny Henry Show (1995)', 'UK', now()), +(5930, 'The Lenny Henry Show (2004)', 'UK', now()), +(5931, 'The Life and Legend of Wyatt Earp', 'US', now()), +(5932, 'The Life and Times of Grizzly Adams', 'US', now()), +(5933, 'The Life and Times of Juniper Lee', 'US', now()), +(5934, 'The Life of Riley (1949)', 'US', now()), +(5935, 'The Little Lulu Show', 'US', now()), +(5936, 'The Little Mermaid', 'US', now()), +(5937, 'The Littles', 'US', now()), +(5938, 'The Lively Ones', 'US', now()), +(5939, 'The Lone Gunmen', 'US', now()), +(5940, 'The Loner (US)', 'US', now()), +(5941, 'The Lone Ranger (1949)', 'US', now()), +(5942, 'The Lone Ranger (1966)', 'US', now()), +(5943, 'The Look for Less', 'US', now()), +(5944, 'The Looney Tunes Show', 'US', now()), +(5945, 'The Loop', 'US', now()), +(5946, 'The Losers', 'UK', now()), +(5947, 'The Lost Islands', 'AU', now()), +(5948, 'The Lost Saucer', 'US', now()), +(5949, 'Sir Arthur Conan Doyle''s The Lost World', 'AU', now()), +(5950, 'The Lot', 'US', now()), +(5951, 'The Louie Show', 'US', now()), +(5952, 'The Love Boat', 'US', now()), +(5953, 'The Love Boat: The Next Wave', 'US', now()), +(5954, 'The Lovers', 'UK', now()), +(5955, 'The Lucy-Desi Comedy Hour', 'US', now()), +(5956, 'The Lucy Show', 'US', now()), +(5957, 'The L Word', 'US', now()), +(5958, 'The Lyon''s Den', 'US', now()), +(5959, 'The Magician (1973)', 'US', now()), +(5960, 'The Magician''s House', 'UK', now()), +(5961, 'The Magic School Bus', 'US', now()), +(5962, 'The Magnificent Seven', 'US', now()), +(5963, 'The Man and the Challenge', 'US', now()), +(5964, 'The Man From Atlantis', 'US', now()), +(5965, 'The Man From Blackhawk', 'US', now()), +(5966, 'The Man From U.N.C.L.E.', 'US', now()), +(5967, 'The Man Show', 'US', now()), +(5968, 'The Man Who Never Was', 'US', now()), +(5969, 'The Many Loves of Dobie Gillis', 'US', now()), +(5970, 'The Marshal', 'US', now()), +(5971, 'The Martin Short Show (1994)', 'US', now()), +(5972, 'The Martin Short Show (1999)', 'US', now()), +(5973, 'The Mary Tyler Moore Show', 'US', now()), +(5974, 'The Mask', 'US', now()), +(5975, 'The Master (US)', 'US', now()), +(5977, 'The Memphis Trousers Half Hour', 'AU', now()), +(5978, 'The Michael Essany Show', 'US', now()), +(5979, 'The Michael Richards Show', 'US', now()), +(5980, 'The Mickey Mouse Club', 'US', now()), +(5981, 'The Mighty Boosh', 'UK', now()), +(5982, 'The Mighty Jungle', 'US', now()), +(5983, 'The Mike O''Malley Show', 'US', now()), +(5984, 'The Mind of the Married Man', 'US', now()), +(5985, 'The Misadventures of Sheriff Lobo', 'US', now()), +(5986, 'The Mod Squad', 'US', now()), +(5987, 'The Mole (US)', 'US', now()), +(5988, 'The Mole (AU)', 'AU', now()), +(5989, 'The Mommies', 'US', now()), +(5990, 'The Monkees', 'US', now()), +(5991, 'The Monroes (1966)', 'US', now()), +(5992, 'The Montel Williams Show', 'US', now()), +(5993, 'The Mountain', 'US', now()), +(5994, 'The Moxy Show', 'US', now()), +(5995, 'The Mr. Potato Head Show', 'US', now()), +(5996, 'The Mullets', 'US', now()), +(5997, 'The Mummy: The Animated Series', 'US', now()), +(5998, 'The Munsters', 'US', now()), +(5999, 'The Munsters Today', 'US', now()), +(6000, 'The Muppet Show', 'US', now()), +(6001, 'The Music Scene', 'US', now()), +(6002, 'The Mysterious Cities of Gold', 'JP', now()), +(6003, 'The Mystery Files of Shelby Woo', 'US', now()), +(6004, 'The Mystery Science Theater Hour', 'US', now()), +(6005, 'The Naked Truth', 'US', now()), +(6006, 'The Name of the Game', 'US', now()), +(6007, 'The Nanny (US)', 'US', now()), +(6008, 'The Nanny (UK)', 'UK', now()), +(6009, 'The Nat King Cole Show', 'US', now()), +(6010, 'Then Came Bronson', 'US', now()), +(6011, 'Then Came You', 'US', now()), +(6012, 'The Net', 'US', now()), +(6013, 'The Neverending Story', 'US', now()), +(6014, 'The New Addams Family', 'US', now()), +(6015, 'The New Adventures of Batman', 'US', now()), +(6017, 'The New Adventures of Gilligan', 'US', now()), +(6018, 'The New Adventures of He-Man', 'US', now()), +(6019, 'The New Adventures of Huck Finn', 'US', now()), +(6020, 'The New Adventures of Mighty Mouse', 'US', now()), +(6021, 'The New Adventures of Robin Hood', 'US', now()), +(6022, 'The New Adventures of Spin and Marty', 'US', now()), +(6023, 'The New Adventures of Superman', 'US', now()), +(6024, 'The New Adventures of Winnie the Pooh', 'US', now()), +(6025, 'The New Andy Griffith Show', 'US', now()), +(6026, 'The New Avengers', 'UK', now()), +(6027, 'The New Bill Cosby Show', 'US', now()), +(6028, 'The New Casper Cartoon Show', 'US', now()), +(6029, 'The New Dick Van Dyke Show', 'US', now()), +(6030, 'The New Fantastic Four', 'US', now()), +(6031, 'The New Ghostwriter Mysteries', 'US', now()), +(6032, 'The New Gidget', 'US', now()), +(6033, 'The New Lassie', 'US', now()), +(6034, 'Still the Beaver', 'US', now()), +(6035, 'The New Loretta Young Show', 'US', now()), +(6036, 'The New Mickey Mouse Club', 'US', now()), +(6037, 'The New Monkees', 'US', now()), +(6038, 'The New Odd Couple', 'US', now()), +(6039, 'The New Partridge Family', 'US', now()), +(6040, 'The New People', 'US', now()), +(6041, 'The New Scooby-Doo Movies', 'US', now()), +(6042, 'The New Scooby-Doo Mysteries', 'US', now()), +(6043, 'The Newsroom (2005)', 'CA', now()), +(6044, 'The New Statesman (1987)', 'UK', now()), +(6045, 'The New Three Stooges', 'US', now()), +(6046, 'The New Tom & Jerry Show', 'US', now()), +(6047, 'The New WKRP in Cincinnati', 'US', now()), +(6048, 'The New Zoo Revue', 'US', now()), +(6049, 'The Next Great Champ', 'US', now()), +(6050, 'The Nicholas Craig Masterclass', 'UK', now()), +(6051, 'The Nick Lachey Project', 'US', now()), +(6052, 'The Nightmare Room', 'US', now()), +(6053, 'The Nutt House', 'US', now()), +(6054, 'The O.C.', 'US', now()), +(6055, 'The O''Keefes', 'US', now()), +(6056, 'The Oblongs', 'US', now()), +(6057, 'The Odd Couple', 'US', now()), +(6058, 'The Odyssey', 'CA', now()), +(6059, 'The Office (1995)', 'US', now()), +(6060, 'The Office (UK)', 'UK', now()), +(6061, 'The Office (US)', 'US', now()), +(6062, 'The Old Curiosity Shop (US)', 'US', now()), +(6063, 'The Omega Factor', 'UK', now()), +(6064, 'Oprah', 'US', now()), +(6065, 'The Osbournes', 'US', now()), +(6066, 'The Osmonds', 'US', now()), +(6067, 'The Other Half (US)', 'US', now()), +(6068, 'The Others', 'US', now()), +(6069, 'The Outer Limits (1995)', 'US', now()), +(6070, 'The Outer Limits (1963)', 'US', now()), +(6071, 'The Outsider (US)', 'US', now()), +(6072, 'The Outsider (CA)', 'UK', now()), +(6073, 'The Outsiders (US)', 'US', now()), +(6074, 'The Parent ''Hood (1995)', 'US', now()), +(6075, 'The Parkers', 'US', now()), +(6076, 'The Partners (1971)', 'US', now()), +(6077, 'The Partridge Family', 'US', now()), +(6078, 'The Partridge Family, 2200 A.D.', 'US', now()), +(6079, 'The Pat Sajak Show', 'US', now()), +(6080, 'The Patty Duke Show', 'US', now()), +(6081, 'The Paula Poundstone Show', 'US', now()), +(6082, 'The Paul O''Grady Show', 'UK', now()), +(6083, 'The Pebbles & Bamm-Bamm Show', 'US', now()), +(6084, 'The People Next Door', 'US', now()), +(6085, 'The Pepsi-Cola Playhouse', 'US', now()), +(6086, 'The Persuaders!', 'UK', now()), +(6087, 'The Phil Silvers Show', 'US', now()), +(6088, 'The Phoenix', 'US', now()), +(6089, 'The Phoenix Team', 'CA', now()), +(6090, 'The Piglet Files', 'UK', now()), +(6091, 'The Pink Panther', 'US', now()), +(6092, 'The Pink Panther and Sons', 'US', now()), +(6093, 'The Pink Panther Show', 'US', now()), +(6094, 'The Pirates of Dark Water', 'US', now()), +(6095, 'The Pitts', 'US', now()), +(6096, 'The PJs', 'US', now()), +(6097, 'The Plastic Man Comedy Adventure Show', 'US', now()), +(6098, 'The Player', 'US', now()), +(6099, 'The Pleasure Zone', 'US', now()), +(6101, 'The Porky Pig Show', 'US', now()), +(6102, 'The Powerpuff Girls', 'US', now()), +(6103, 'The Powers of Matthew Star', 'US', now()), +(6104, 'The Powers That Be', 'US', now()), +(6105, 'The Practice', 'US', now()), +(6106, 'The Preston Episodes', 'US', now()), +(6107, 'The Pretender', 'US', now()), +(6108, 'The Prince Of Tennis (JP)', 'JP', now()), +(6109, 'The Prisoner', 'UK', now()), +(6110, 'The Professionals', 'UK', now()), +(6111, 'The Protectors', 'UK', now()), +(6112, 'The Proud Family', 'US', now()), +(6113, 'The Pursuit of Happiness (1995)', 'US', now()), +(6114, 'The Queen Latifah Show', 'US', now()), +(6115, 'The Quest (1976)', 'US', now()), +(6116, 'The Quest (1982)', 'US', now()), +(6117, 'The Random Years', 'US', now()), +(6118, 'The Rat Patrol', 'US', now()), +(6119, 'The Ray Bradbury Theater', 'US', now()), +(6120, 'The Real Adventures of Jonny Quest', 'US', now()), +(6121, 'The Real Ghostbusters', 'US', now()), +(6122, 'The Real Gilligan''s Island', 'US', now()), +(6123, 'The Real McCoys', 'US', now()), +(6124, 'The Real Roseanne Show', 'US', now()), +(6125, 'The Real World', 'US', now()), +(6126, 'The Challenge', 'US', now()), +(6127, 'The Rebel', 'US', now()), +(6128, 'The Rebel Billionaire: Branson''s Quest for the Best', 'US', now()), +(6129, 'The Redd Foxx Show', 'US', now()), +(6130, 'The Red Green Show', 'CA', now()), +(6131, 'The Red Skelton Show', 'US', now()), +(6132, 'The Ren and Stimpy Show', 'US', now()), +(6133, 'The Rerun Show', 'US', now()), +(6134, 'The Restaurant', 'US', now()), +(6135, 'The Restless Gun', 'US', now()), +(6136, 'Return of the Saint', 'UK', now()), +(6137, 'The Richard Pryor Show', 'US', now()), +(6138, 'The Rifleman', 'US', now()), +(6139, 'The Ripping Friends', 'US', now()), +(6140, 'The Road Home', 'US', now()), +(6141, 'The Road to Stardom with Missy Elliott', 'US', now()), +(6142, 'The Roaring 20''s', 'US', now()), +(6143, 'The Rob Nelson Show', 'US', now()), +(6144, 'The Rockford Files (1974)', 'US', now()), +(6145, 'The Rocky and Bullwinkle Show', 'US', now()), +(6146, 'The Rogues', 'US', now()), +(6147, 'The Rookies', 'US', now()), +(6148, 'The Ropers', 'US', now()), +(6149, 'The Rosie O''Donnell Show', 'US', now()), +(6150, 'The Rough Riders', 'US', now()), +(6151, 'The Rovers', 'AU', now()), +(6152, 'The Royal', 'UK', now()), +(6153, 'The Royal Family', 'US', now()), +(6154, 'The Royle Family', 'UK', now()), +(6155, 'The Roy Rogers-Dale Evans Show', 'US', now()), +(6156, 'The Roy Rogers Show', 'US', now()), +(6157, 'The Saddle Club', 'AU', now()), +(6158, 'The Saint', 'UK', now()), +(6159, 'The Sally Jessy Raphael Show', 'US', now()), +(6160, 'The Salon', 'UK', now()), +(6161, 'The Sandy Duncan Show', 'US', now()), +(6162, 'The San Pedro Beach Bums', 'US', now()), +(6163, 'The Save-Ums', 'CA', now()), +(6164, 'The Scarlet Pimpernel (1956)', 'UK', now()), +(6165, 'The Scarlet Pimpernel (1999)', 'UK', now()), +(6166, 'The Scholar', 'US', now()), +(6168, 'The Scooby-Doo Show', 'US', now()), +(6169, 'The Screen Savers', 'US', now()), +(6170, 'The Second Half', 'US', now()), +(6171, 'The Second Hundred Years', 'US', now()), +(6172, 'The Secret Adventures of Jules Verne', 'US', now()), +(6173, 'The Secret Diary of Adrian Mole Aged 13 3/4', 'UK', now()), +(6174, 'The Secret Diary of Desmond Pfeiffer', 'US', now()), +(6175, 'The Secret Empire', 'US', now()), +(6176, 'The Secret Files of the Spy Dogs', 'US', now()), +(6177, 'The Secret Life of Us', 'AU', now()), +(6178, 'The Secret Lives of Men', 'US', now()), +(6179, 'The Secret Lives of Waldo Kitty', 'US', now()), +(6180, 'Ellen', 'US', now()), +(6181, 'The Sentinel', 'US', now()), +(6182, 'The Shapies', 'AU', now()), +(6183, 'The Shari Lewis Show', 'US', now()), +(6184, 'The Sharon Osbourne Show (US)', 'US', now()), +(6185, 'The Shield', 'US', now()), +(6186, 'The Shiny Show', 'UK', now()), +(6187, 'The Show', 'US', now()), +(6188, 'The Simple Life (2003)', 'US', now()), +(6189, 'The Simple Life (1998)', 'US', now()), +(6190, 'The Simpsons', 'US', now()), +(6191, 'The Sinbad Show', 'US', now()), +(6192, 'The Single Guy', 'US', now()), +(6193, 'The Six Million Dollar Man', 'US', now()), +(6194, 'The Sixth Sense', 'US', now()), +(6195, 'The Six Wives of Henry VIII', 'UK', now()), +(6196, 'The Smoking Gun TV', 'CA', now()), +(6197, 'The Smoking Room', 'UK', now()), +(6198, 'The Smothers Brothers Comedy Hour (1967)', 'US', now()), +(6199, 'The Smothers Brothers Comedy Hour (1988)', 'US', now()), +(6200, 'The Smothers Brothers Show (1965)', 'US', now()), +(6201, 'The Smothers Brothers Show (1975)', 'US', now()), +(6202, 'The Smurfs', 'US', now()), +(6203, 'The Snorks', 'US', now()), +(6204, 'The Sonny & Cher Comedy Hour', 'US', now()), +(6205, 'The Sonny & Cher Show', 'US', now()), +(6206, 'The Sopranos', 'US', now()), +(6207, 'The Soup', 'US', now()), +(6208, 'The South Bank Show', 'UK', now()), +(6209, 'The Space Kidettes', 'US', now()), +(6210, 'The Starlet', 'US', now()), +(6211, 'The Starlost', 'CA', now()), +(6212, 'The State', 'US', now()), +(6213, 'The Steve Harvey Show', 'US', now()), +(6214, 'The Stockard Channing Show', 'US', now()), +(6215, 'The Stones', 'US', now()), +(6216, 'The Story of Tracy Beaker', 'UK', now()), +(6217, 'The $treet', 'US', now()), +(6218, 'The Streets of San Francisco', 'US', now()), +(6219, 'The Strip (US)', 'US', now()), +(31513, 'Love Addiction', 'US', now()), +(6221, 'The Suite Life of Zack and Cody', 'US', now()), +(6222, 'The Sullivans', 'AU', now()), +(6223, 'The Smothers Brothers Summer Show', 'US', now()), +(6224, 'The Super Globetrotters', 'US', now()), +(6225, 'The Superman/Aquaman Hour of Adventure', 'US', now()), +(6226, 'The Super Mario Bros. Super Show!', 'US', now()), +(6227, 'The Super Powers Team: Galactic Guardians', 'US', now()), +(6228, 'The Surreal Life', 'US', now()), +(6229, 'The Survivors', 'US', now()), +(6231, 'The Swan', 'US', now()), +(6232, 'The Texan', 'US', now()), +(6233, 'The Thin Blue Line', 'UK', now()), +(6234, 'The Third Man', 'UK', now()), +(6235, 'The Three Musketeers', 'US', now()), +(6236, 'The Three Stooges', 'US', now()), +(6237, 'The Tick (2001)', 'US', now()), +(6238, 'The Tick (1994)', 'US', now()), +(6239, 'The Time Tunnel', 'US', now()), +(6240, 'The Tim McCarver Show', 'US', now()), +(6241, 'The Today Show', 'US', now()), +(6242, 'The Tom Green Show (1997)', 'CA', now()), +(6243, 'The Tomorrow People (1973)', 'UK', now()), +(6244, 'The Tom Show', 'US', now()), +(6245, 'The Tonight Show', 'US', now()), +(6246, 'The Tonight Show Starring Johnny Carson', 'US', now()), +(6247, 'The Tonight Show with Jay Leno', 'US', now()), +(6248, 'The Tony Danza Show (2004)', 'US', now()), +(6249, 'Top Secret Life of Edgar Briggs', 'UK', now()), +(6250, 'The Torkelsons', 'US', now()), +(6251, 'The Tortellis', 'US', now()), +(6252, 'The Tracey Ullman Show', 'US', now()), +(6253, 'The Tracy Morgan Show', 'US', now()), +(6254, 'The Tribe', 'UK', now()), +(6255, 'The Troubleshooters (US)', 'US', now()), +(6256, 'The Troubleshooters (UK)', 'UK', now()), +(6257, 'The Trouble with Normal', 'US', now()), +(6258, 'The Twilight Zone', 'US', now()), +(6259, 'The Twilight Zone (1985)', 'US', now()), +(6260, 'The Twilight Zone (2002)', 'US', now()), +(6261, 'The Twisted Adventures of Felix the Cat', 'US', now()), +(6262, 'The Tyra Banks Show', 'US', now()), +(6263, 'The Ultimate Fighter', 'US', now()), +(6264, 'The Untouchables (1959)', 'US', now()), +(6265, 'The Untouchables (1993)', 'US', now()), +(6266, 'The Upper Hand', 'UK', now()), +(6267, 'The US of Archie', 'US', now()), +(6268, 'The Van Dyke Show', 'US', now()), +(8105, 'Eddie Dodd', 'US', now()), +(6270, 'The Venture Bros.', 'US', now()), +(6271, 'The Vicar of Dibley', 'UK', now()), +(6272, 'The Vice', 'UK', now()), +(6273, 'The View', 'US', now()), +(6274, 'The Virginian', 'US', now()), +(6275, 'The Visitor', 'US', now()), +(6276, 'The Voice of Firestone', 'US', now()), +(6277, 'The Waltons', 'US', now()), +(6278, 'The Wanderer', 'UK', now()), +(6279, 'The War at Home', 'US', now()), +(6280, 'The War Next Door', 'US', now()), +(6281, 'The Watcher', 'US', now()), +(6282, 'The Wayans Bros.', 'US', now()), +(6283, 'The Wayne Brady Show (2001)', 'US', now()), +(6284, 'The Wayne Brady Show (2002)', 'US', now()), +(6285, 'The Weber Show', 'US', now()), +(6286, 'The Weekenders', 'US', now()), +(6287, 'The Weird Al Show', 'US', now()), +(6288, 'The Westerner', 'US', now()), +(6289, 'The West Wing', 'US', now()), +(6290, 'The White Shadow', 'US', now()), +(6291, 'The Wide Country', 'US', now()), +(6292, 'The Wiggles', 'AU', now()), +(6293, 'The Wild Thornberrys', 'US', now()), +(6294, 'The Wild Wild West', 'US', now()), +(6295, 'The Wilsons', 'UK', now()), +(6296, 'The Wire', 'US', now()), +(6297, 'The Wizard', 'US', now()), +(6298, 'The Wizard of Oz', 'US', now()), +(6299, 'The Wonderful Wizard of Oz', 'US', now()), +(6300, 'The Wonderful World of Disney (1961)', 'US', now()), +(6301, 'The Wonderful World of Disney (1997)', 'US', now()), +(6302, 'The Wonder Years', 'US', now()), +(6303, 'The Woody Woodpecker Show', 'US', now()), +(6304, 'The World''s Greatest SuperFriends', 'US', now()), +(6305, 'The World of Wooster', 'UK', now()), +(6306, 'The Worst Witch', 'UK', now()), +(6307, 'The Wright Stuff', 'UK', now()), +(6308, 'The Wright Verdicts', 'US', now()), +(6309, 'The Wubbulous World of Dr. Seuss', 'US', now()), +(6310, 'The Wuzzles', 'US', now()), +(6311, 'The WWE Experience', 'US', now()), +(6312, 'The X-Files', 'US', now()), +(6313, 'The X Factor (UK)', 'UK', now()), +(6314, 'The X Factor (AU)', 'AU', now()), +(6315, 'They Came From Outer Space', 'US', now()), +(6316, 'The Yellow Rose', 'US', now()), +(6317, 'The Yogi Bear Show', 'US', now()), +(6318, 'The Young and the Restless', 'US', now()), +(6319, 'The Young Indiana Jones Chronicles', 'US', now()), +(6320, 'The Young Ones', 'UK', now()), +(6321, 'The Young Person''s Guide to Becoming a Rock Star', 'UK', now()), +(6322, 'The Young Pioneers', 'US', now()), +(6323, 'The Young Rebels', 'US', now()), +(6324, 'The Young Riders', 'US', now()), +(6325, 'The Zack Files', 'CA', now()), +(6326, 'The Zeta Project', 'US', now()), +(6327, 'The Zoo Gang', 'UK', now()), +(6328, 'Thieves', 'US', now()), +(6329, 'Things I Hate About You', 'US', now()), +(6330, 'Third Watch', 'US', now()), +(6331, 'thirtysomething', 'US', now()), +(6332, 'This Is America Charlie Brown', 'US', now()), +(6333, 'This is David Lander', 'UK', now()), +(6334, 'This is Wonderland', 'CA', now()), +(6335, 'This Is Your Life (1952)', 'US', now()), +(6336, 'This Just In', 'US', now()), +(6337, 'This Life', 'UK', now()), +(6338, 'This Old House', 'US', now()), +(6339, 'Thomas and Sarah', 'UK', now()), +(6340, 'Thomas The Tank Engine & Friends', 'UK', now()), +(6341, 'Thompson', 'UK', now()), +(6342, 'Those Who Hunt Elves', 'JP', now()), +(6343, 'Threat Matrix', 'US', now()), +(6344, 'Three', 'US', now()), +(6345, 'Three''s Company', 'US', now()), +(6346, 'Three Sisters', 'US', now()), +(6347, 'Three Wishes', 'US', now()), +(6348, 'Threshold', 'US', now()), +(6349, 'Thriller (US)', 'US', now()), +(6350, 'Thundarr the Barbarian', 'US', now()), +(6351, 'Thunder Alley', 'US', now()), +(6352, 'ThunderCats', 'US', now()), +(6353, 'Thunder in Paradise', 'US', now()), +(6354, 'Thunderstone', 'AU', now()), +(6355, 'Til Death Do Us Part: Carmen + Dave', 'US', now()), +(6356, 'Tilt', 'US', now()), +(6357, 'Timecop', 'US', now()), +(6358, 'Time of Your Life (US)', 'US', now()), +(6359, 'Time Squad', 'US', now()), +(6360, 'Time Trax', 'US', now()), +(6361, 'Time Warp Trio', 'US', now()), +(6362, 'Timon & Pumbaa', 'US', now()), +(6363, 'Timothy Goes to School', 'US', now()), +(6364, 'Tiny Planets', 'UK', now()), +(6365, 'Tiny Toon Adventures', 'US', now()), +(6366, 'Titans', 'US', now()), +(6367, 'Titus', 'US', now()), +(6368, 'Impact Wrestling', 'US', now()), +(6369, 'Toad Patrol', 'CA', now()), +(6370, 'The Ed Sullivan Show', 'US', now()), +(6371, 'Today', 'AU', now()), +(6372, 'Toddworld', 'US', now()), +(6373, 'To Have & To Hold', 'US', now()), +(6375, 'Tom', 'US', now()), +(6376, 'Tom and Jerry', 'US', now()), +(6377, 'Tom and Jerry Kids Show', 'US', now()), +(6378, 'Tom Corbett, Space Cadet', 'US', now()), +(6379, 'Tom Goes to the Mayor', 'US', now()), +(6380, 'Tommy Sledge, P.I.', 'US', now()), +(6381, 'Tom Stone', 'CA', now()), +(6382, 'Toonheads', 'US', now()), +(6383, 'Top Cat', 'US', now()), +(6384, 'Top Cops', 'US', now()), +(6385, 'Top of the Heap', 'US', now()), +(6386, 'Top of the Pops Saturday', 'UK', now()), +(6387, 'Totally Circus', 'US', now()), +(6388, 'Totally Spies', 'FR', now()), +(6389, 'Total Recall 2070', 'CA', now()), +(6390, 'Total Security', 'US', now()), +(6391, 'To the Manor Born', 'UK', now()), +(6392, 'Touched by an Angel', 'US', now()), +(6393, 'Touching Evil (UK)', 'UK', now()), +(6394, 'Touching Evil (US)', 'US', now()), +(6395, 'Tour of Duty', 'US', now()), +(6396, 'Town Haul', 'US', now()), +(6397, 'Townies', 'US', now()), +(6398, 'Trace Evidence: The Case Files of Dr. Henry Lee', 'US', now()), +(6399, 'Tracey Takes On...', 'US', now()), +(6400, 'Tracker', 'US', now()), +(6401, 'Trackside at...', now(), now()), +(6402, 'Traders', 'CA', now()), +(6403, 'Trading Spaces', 'US', now()), +(6404, 'Trading Spaces: Boys vs. Girls', 'US', now()), +(6405, 'Trading Spaces: Family', 'US', now()), +(6406, 'Trading Spouses', 'US', now()), +(6407, 'Traffic', 'US', now()), +(6408, 'Trailer Park Boys', 'CA', now()), +(6409, 'Transformers', 'US', now()), +(6410, 'Transformers: Armada', 'US', now()), +(6411, 'Transformers Robots In Disguise', 'AJ', now()), +(6412, 'Transformers: The Headmasters', 'JP', now()), +(6413, 'Transformers: Victory', 'JP', now()), +(6414, 'Transformers Cybertron', 'JP', now()), +(6415, 'Transformers Energon', 'US', now()), +(6416, 'Traps', 'US', now()), +(6417, 'Travel Sick', 'UK', now()), +(6418, 'Travels in Europe with Rick Steves', 'US', now()), +(6419, 'Treasure', 'UK', now()), +(6420, 'Tremors: The Series', 'US', now()), +(6421, 'Trial and Retribution', 'UK', now()), +(6422, 'Trials of O''Brien', 'US', now()), +(6423, 'Trigger Happy TV (UK)', 'UK', now()), +(6424, 'Trigger Happy TV (US)', 'US', now()), +(6425, 'Trigun', 'AJ', now()), +(6426, 'Trinity (US)', 'US', now()), +(6427, 'Tripper''s Day', 'UK', now()), +(6428, 'Tripping the Rift', 'CA', now()), +(6429, 'TRL', 'US', now()), +(6430, 'Trollkins', 'US', now()), +(6431, 'Trollz', 'US', now()), +(6432, 'Tru Calling', 'US', now()), +(6433, 'True Blue (1989)', 'US', now()), +(6434, 'True Life', 'US', now()), +(6435, 'Trust', 'UK', now()), +(6436, 'Truth or Scare', 'US', now()), +(6437, 'Trying Times', 'US', now()), +(6438, 'Tucker', 'US', now()), +(6439, 'Tucker Carlson: Unfiltered', 'US', now()), +(6440, 'Turks', 'US', now()), +(6441, 'Turn A Gundam', 'JP', now()), +(6442, 'Tutenstein', 'US', now()), +(6443, 'TV 101', 'US', now()), +(6444, 'T.V. Funhouse', 'US', now()), +(6445, 'TV Land Moguls', 'US', now()), +(6446, 'TV Revolution', 'US', now()), +(6447, 'TV Tales', 'US', now()), +(6448, 'Twelve O''Clock High', 'US', now()), +(6449, 'Twice in a Lifetime', 'CA', now()), +(6450, 'Twin Peaks', 'US', now()), +(6451, 'Twins', 'US', now()), +(6452, 'Twitch City', 'CA', now()), +(6453, 'Two', 'CA', now()), +(6454, 'Two and a Half Men', 'US', now()), +(6455, 'Two Guys and a Girl', 'US', now()), +(6456, 'Two of a Kind (US)', 'US', now()), +(6457, 'Two Pints of Lager and a Packet of Crisps', 'UK', now()), +(6458, 'UC: Undercover', 'US', now()), +(6459, 'UFO', 'UK', now()), +(6460, 'UK Top 40', 'UK', now()), +(6461, 'The Ultimate Book of Spells', 'CA', now()), +(6462, 'Ultimate Film Fanatic', 'US', now()), +(6463, 'Ultimate Force', 'UK', now()), +(6464, 'Ultimate Muscle: The Kinnikuman Legacy', 'AJ', now()), +(6465, 'Ultra 7', 'JP', now()), +(6466, 'UltraForce', 'US', now()), +(6467, 'Ultraman Tiga', 'AJ', now()), +(6468, 'Uncle Buck', 'US', now()), +(6470, 'Undeclared', 'US', now()), +(6471, 'Under Cover', 'US', now()), +(6472, 'Underdog', 'US', now()), +(6473, 'Undergrads', 'CA', now()), +(6474, 'Under One Roof (1995)', 'US', now()), +(6475, 'Under One Roof (2002)', 'US', now()), +(6476, 'Under Suspicion', 'US', now()), +(6477, 'Unexplained Mysteries', 'US', now()), +(6478, 'Unfabulous', 'US', now()), +(6479, 'Unfinished Business', 'UK', now()), +(6480, 'Unhappily Ever After', 'US', now()), +(6481, 'Union Square', 'US', now()), +(6482, 'United States', 'US', now()), +(6483, 'University Challenge (1994)', 'UK', now()), +(6484, 'University Hospital', 'US', now()), +(6485, 'Unscripted', 'US', now()), +(6486, 'Unsolved History', 'US', now()), +(6487, 'Unsolved Mysteries', 'US', now()), +(6488, 'Unsub', 'US', now()), +(6489, 'U Pick Live', 'US', now()), +(6490, 'Upstairs, Downstairs', 'UK', now()), +(6491, 'Up the Elephant and Round the Castle', 'UK', now()), +(6492, 'Urban Angel', 'CA', now()), +(6493, 'V (1983)', 'US', now()), +(6494, 'V.I.P.', 'US', now()), +(6495, 'Vampire High', 'CA', now()), +(6497, 'Van-Pires', 'US', now()), +(6498, 'Van der Valk', 'UK', now()), +(6499, 'Van Dyke and Company', 'US', now()), +(6500, 'Vanishing Son', 'US', now()), +(6501, 'Vega$', 'US', now()), +(6502, 'Vengeance Unlimited', 'US', now()), +(6503, 'Venom ER', 'US', now()), +(6504, 'Veritas: The Quest', 'US', now()), +(6505, 'Veronica''s Closet', 'US', now()), +(6506, 'Veronica Clare', 'US', now()), +(6507, 'Veronica Mars', 'US', now()), +(6508, 'V Graham Norton', 'UK', now()), +(6509, 'V Gundam', 'JP', now()), +(6510, 'VH1''s Storytellers', 'US', now()), +(6511, 'VSpot Top 20 Countdown', 'US', now()), +(6512, 'VH1 Goes Inside', 'US', now()), +(6513, 'VH1 ILL-ustrated', 'US', now()), +(6514, 'Video Village', 'US', now()), +(6515, 'Viewtiful Joe', 'AJ', now()), +(6516, 'Vinnie & Bobby', 'US', now()), +(6517, 'Viper', 'US', now()), +(6518, 'Virtual Murder', 'UK', now()), +(6519, 'Visionaries: Knights of the Magical Light', 'US', now()), +(6520, 'Viva la Bam', 'US', now()), +(6521, 'Voltron: Defender of the Universe', 'US', now()), +(6522, 'Voltron: The Third Dimension', 'US', now()), +(6523, 'Voyagers!', 'US', now()), +(6524, 'Voyage to the Bottom of the Sea', 'US', now()), +(6525, 'VR.5', 'US', now()), +(6526, 'VR Troopers', 'US', now()), +(6527, 'W.E.B.', 'US', now()), +(6528, 'W.I.T.C.H.', 'FR', now()), +(6529, 'The Wackiest Ship in the Army', 'US', now()), +(6530, 'Wacky Races', 'US', now()), +(6531, 'Wagon Train', 'US', now()), +(6532, 'Waiting for God', 'UK', now()), +(6533, 'Waking the Dead', 'UK', now()), +(6534, 'Walker, Texas Ranger', 'US', now()), +(18169, 'The Convention Crasher', 'UK', now()), +(6536, 'Wanda at Large', 'US', now()), +(6537, 'Wanda Does It', 'US', now()), +(6538, 'Wanted (US)', 'US', now()), +(6539, 'Wanted: Dead or Alive', 'US', now()), +(6540, 'War of the Worlds', 'US', now()), +(6541, 'War Planets', 'CA', now()), +(6542, 'Wasteland', 'US', now()), +(6543, 'Watching Ellie', 'US', now()), +(6544, 'Watership Down', 'CA', now()), +(6545, 'WCW Clash of the Champions', 'US', now()), +(6546, 'WCW Main Event', 'US', now()), +(6547, 'WCW Monday Nitro', 'US', now()), +(6548, 'WCW Pay-Per-View', 'US', now()), +(6549, 'WCW Saturday Night', 'US', now()), +(6550, 'WCW Thunder', 'US', now()), +(6551, 'The Weakest Link (UK)', 'UK', now()), +(6552, 'Webster', 'US', now()), +(6553, 'Wednesday 9:30 (8:30 Central)', 'US', now()), +(6554, 'Weeds', 'US', now()), +(6555, 'Weekends at the D.L.', 'US', now()), +(6556, 'Weird-Ohs', 'CA', now()), +(6557, 'Weird Science', 'US', now()), +(6558, 'Welcome Back, Kotter', 'US', now()), +(6559, 'Welcome Freshmen', 'US', now()), +(6560, 'Welcome to New York', 'US', now()), +(6561, 'Welcome To Paradox', 'US', now()), +(6562, 'Werewolf', 'US', now()), +(14789, 'The Morning Show (UK)', 'UK', now()), +(6564, 'Wham! Bam! Strawberry Jam!', 'UK', now()), +(6565, 'What-A-Mess', 'US', now()), +(6566, 'What''s Happening!!', 'US', now()), +(6567, 'What''s Happening Now!', 'US', now()), +(6568, 'What''s My Line? (US)', 'US', now()), +(6569, 'What''s New, Mr. Magoo?', 'US', now()), +(6570, 'What''s New Scooby-Doo?', 'US', now()), +(21574, 'Disaster Lab', 'US', now()), +(6572, 'What About Joan', 'US', now()), +(6573, 'What About Mimi?', 'CA', now()), +(6574, 'What a Dummy', 'US', now()), +(6575, 'Whatever Happened to Robot Jones', 'US', now()), +(6576, 'What I Like About You', 'US', now()), +(6577, 'What Not To Wear (US)', 'US', now()), +(6578, 'What Should You Do?', 'US', now()), +(6579, 'Wheelie and the Chopper Bunch', 'US', now()), +(6580, 'When Things Were Rotten', 'US', now()), +(6581, 'Where''s Waldo?', 'US', now()), +(6582, 'Where I Live', 'US', now()), +(6583, 'Where in the World is Carmen Sandiego?', 'US', now()), +(6584, 'Where in Time is Carmen Sandiego?', 'US', now()), +(6585, 'Where on Earth is Carmen Sandiego?', 'US', now()), +(6586, 'Where the Heart Is (UK)', 'UK', now()), +(6587, 'While You Were Out', 'US', now()), +(6588, 'Whiplash', 'AU', now()), +(6589, 'White Collar Blue', 'AU', now()), +(6590, 'White Fang', 'CA', now()), +(6591, 'Whiz Kids', 'US', now()), +(6592, 'Who''s the Boss?', 'US', now()), +(6593, 'Who Dares Wins ...', 'AU', now()), +(6594, 'Whoopi', 'US', now()), +(6595, 'Whoopi''s Littleburg', 'US', now()), +(6596, 'Whoops Apocalypse', 'UK', now()), +(6597, 'Whose Line Is It Anyway? (US)', 'US', now()), +(6598, 'Whose Line Is It Anyway? (UK)', 'UK', now()), +(6599, 'Who Wants To Marry My Dad?', 'US', now()), +(6600, 'Wickedly Perfect', 'US', now()), +(6601, 'Wicked Science', 'AU', now()), +(6602, 'Widows', 'UK', now()), +(6603, 'Wife Swap (US)', 'US', now()), +(6604, 'Wife Swap (UK)', 'UK', now()), +(6605, 'Wildboyz', 'US', now()), +(6606, 'WildC.A.T.S.', 'US', now()), +(6607, 'Wild Card', 'US', now()), +(6608, 'Wildfire', 'US', now()), +(6609, 'Wildfire (1986)', 'US', now()), +(6610, 'Wild Kat', 'AU', now()), +(6611, 'Wild Oats', 'US', now()), +(6612, 'Wildside', 'US', now()), +(6613, 'Wild West Tech', 'US', now()), +(6614, 'Will & Grace', 'US', now()), +(6615, 'Will the Real Jerry Lewis Please Sit Down?', 'US', now()), +(6616, 'Wimzie''s House', 'CA', now()), +(6617, 'Win Ben Stein''s Money', 'US', now()), +(6618, 'Wind at My Back', 'CA', now()), +(6619, 'Wind on Water', 'US', now()), +(6620, 'Wing Commander Academy', 'US', now()), +(6621, 'Wings (US)', 'US', now()), +(6622, 'Winx Club', 'IT', now()), +(6623, 'W.I.O.U.', 'US', now()), +(6624, 'Wire in the Blood', 'UK', now()), +(6625, 'Wiseguy', 'US', now()), +(6626, 'Witchblade', 'US', now()), +(6627, 'Witch Hunter Robin', 'JP', now()), +(6628, 'Without a Trace', 'US', now()), +(6629, 'Wizards and Warriors', 'US', now()), +(6630, 'WKRP in Cincinnati', 'US', now()), +(6631, 'Wodehouse Playhouse', 'UK', now()), +(6632, 'Wolf', 'US', now()), +(6633, 'Wolf''s Rain', 'JP', now()), +(14670, 'Catwalk (AU)', 'AU', now()), +(6635, 'Wolf Lake', 'US', now()), +(6636, 'Women of the House', 'US', now()), +(6637, 'Women of Wrestling', 'US', now()), +(6638, 'Wonderfalls', 'US', now()), +(6639, 'Wonderland', 'US', now()), +(6640, 'Wonder Showzen', 'US', now()), +(6641, 'Wonder Woman', 'US', now()), +(6642, 'Woof!', 'CA', now()), +(6643, 'Woops!', 'US', now()), +(6644, 'Working', 'US', now()), +(6645, 'Working Girl', 'US', now()), +(6646, 'Work With Me', 'US', now()), +(6647, 'World Cup Comedy', 'US', now()), +(6648, 'World of Giants', 'US', now()), +(6649, 'World Poker Tour', 'US', now()), +(6650, 'Worzel Gummidge', 'UK', now()), +(6652, 'WWE Pay-Per-View', 'US', now()), +(6655, 'WWE Friday Night SmackDown!', 'US', now()), +(6656, 'WWE Tough Enough', 'US', now()), +(6657, 'WWE Velocity', 'US', now()), +(6658, 'WWF Jakked', 'US', now()), +(6659, 'WWE Raw', 'US', now()), +(6660, 'WWE Saturday Night''s Main Event', 'US', now()), +(6661, 'WWF Shotgun Saturday Night', 'US', now()), +(6662, 'WWF Superstars', 'US', now()), +(6663, 'WWF Wrestling Challenge', 'US', now()), +(6664, 'Wycliffe', 'UK', now()), +(6665, 'X-Men', 'US', now()), +(6666, 'X-Men: Evolution', 'US', now()), +(6667, 'Xcalibur', 'CA', now()), +(6668, 'Xena: Warrior Princess', 'US', now()), +(6669, 'XFL', 'US', now()), +(6670, 'Xiaolin Showdown', 'US', now()), +(6671, 'Xyber 9: New Dawn', 'US', now()), +(6672, 'Yakitate!! Japan', 'JP', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(6673, 'Yakkity Yak', 'AU', now()), +(6674, 'Yancy Derringer', 'US', now()), +(6675, 'Yearbook', 'US', now()), +(6676, 'Yes, Dear', 'US', now()), +(6677, 'Yes, Minister', 'UK', now()), +(6678, 'Yogi''s Treasure Hunt', 'US', now()), +(6679, 'You Can''t Do That on Television', 'CA', now()), +(6680, 'You Can''t Take It With You', 'US', now()), +(6681, 'You Must Be the Husband', 'UK', now()), +(6682, 'Young Americans', 'US', now()), +(6683, 'Young Blades', 'US', now()), +(6684, 'Young Dan''l Boone', 'US', now()), +(6685, 'Young Hercules', 'US', now()), +(6686, 'Young Maverick', 'US', now()), +(6687, 'You Rang, M''Lord', 'UK', now()), +(6688, 'You Wish', 'US', now()), +(6689, 'Yo Yogi!', 'US', now()), +(6690, 'Yu-Gi-Oh!', 'AJ', now()), +(6691, 'Yu-Gi-Oh! GX', 'AJ', now()), +(6692, 'Yu Yu Hakusho', 'AJ', now()), +(6693, 'Yvon of the Yukon', 'CA', now()), +(6694, 'Zane Grey Theatre', 'US', now()), +(6695, 'Zatch Bell! (US)', 'AJ', now()), +(6696, 'Zeroman', 'CA', now()), +(6697, 'Mobile Suit Zeta Gundam', 'JP', now()), +(6698, 'Zixx', 'CA', now()), +(17382, 'Takeover My Makeover', 'US', now()), +(6700, 'Zoey 101', 'US', now()), +(6701, 'Zoids', 'AJ', now()), +(6702, 'ZOIDS: Chaotic Century', 'JP', now()), +(6703, 'ZOIDS: Guardian Force', 'US', now()), +(6704, 'Zoids: Fuzors (US)', 'AJ', now()), +(6705, 'Zorro (1957)', 'US', now()), +(6706, 'The New Adventures of Zorro (1981)', 'US', now()), +(6707, 'Zorro (1990)', 'US', now()), +(6708, 'Zorro (1997)', 'US', now()), +(6709, 'Zorro and Son', 'US', now()), +(6710, '10-8', 'US', now()), +(6711, 'Taradise', 'US', now()), +(6713, 'Run''s House', 'US', now()), +(6714, 'Miss Seventeen', 'US', now()), +(6715, 'The Colbert Report', 'US', now()), +(6717, 'Inked', 'US', now()), +(6718, 'Criss Angel: Mindfreak', 'US', now()), +(6719, 'The Adam Carolla Project', 'US', now()), +(6720, 'Too Late With Adam Carolla', 'US', now()), +(6721, 'The Showbiz Show with David Spade', 'US', now()), +(6722, 'Hopeless Pictures', 'US', now()), +(6723, 'My Fair Brady', 'US', now()), +(6724, 'Breaking Bonaduce', 'US', now()), +(6725, 'Human Trafficking', 'US', now()), +(6726, 'Kiss & Tell', 'US', now()), +(6727, 'Bound For Glory', 'US', now()), +(6728, 'Masters of Horror', 'US', now()), +(6729, 'But Can They Sing?', 'US', now()), +(6735, 'Rocket Man', 'UK', now()), +(6731, 'Homewrecker', 'US', now()), +(6732, 'The Raggy Dolls', 'UK', now()), +(6733, 'I Shouldn''t Be Alive', 'US', now()), +(6734, 'I Love the ‘80s: 3D', 'US', now()), +(6736, 'Egypt', 'UK', now()), +(6737, 'Funland', 'UK', now()), +(6738, 'The Alice (2005)', 'AU', now()), +(6739, 'Dear Santa', 'US', now()), +(6740, 'Fifth Gear', 'UK', now()), +(6741, 'Party At The Palms', 'US', now()), +(6742, 'Category 7: End Of The World', 'US', now()), +(6743, 'Forensic Investigators', 'AU', now()), +(6744, 'Category 6: Day of Destruction', 'US', now()), +(6745, 'The Surgeon', 'AU', now()), +(6746, 'Dubai Dreams', 'UK', now()), +(6747, 'Strictly Come Dancing', 'UK', now()), +(6748, 'Jenna''s American Sex Star', 'US', now()), +(6749, 'afterlife', 'UK', now()), +(6751, 'Supernova', 'UK', now()), +(6752, 'Egyptian Journeys with Dan Cruickshank', 'UK', now()), +(6753, 'Top Gear', 'UK', now()), +(6754, 'Minoriteam', 'US', now()), +(6755, 'Speaking In Tongues', 'AU', now()), +(6756, 'Random 1', 'US', now()), +(6757, 'The Last Tommy', 'UK', now()), +(6758, 'Derek Acorah''s Ghost Towns', 'UK', now()), +(6759, 'Comedians of Comedy', 'US', now()), +(6760, 'Bleak House (2005)', 'UK', now()), +(6761, 'Blessed', 'UK', now()), +(6762, 'Garden School', 'UK', now()), +(6763, 'Tommy Lee Goes to College', 'US', now()), +(6764, 'Stars In Fast Cars', 'UK', now()), +(6765, 'Space Cadets (2005)', 'UK', now()), +(6766, 'Great Things About the Holidays', 'US', now()), +(6767, 'Sleeper Cell', 'US', now()), +(6768, 'The Triangle', 'US', now()), +(6769, 'Daisy Does America', 'US', now()), +(6770, 'Party/Party', 'US', now()), +(6771, 'NOVA', 'US', now()), +(6772, 'The Number Crew', 'UK', now()), +(6773, 'Nature', 'US', now()), +(6774, 'Vivid Valley', 'US', now()), +(6775, 'Poor Little Rich Girls (2005)', 'UK', now()), +(6776, 'Ballroom Bootcamp', 'US', now()), +(6777, 'Teen Angels', 'UK', now()), +(6778, 'Australian Princess', 'AU', now()), +(6779, 'Joker Poker', 'AU', now()), +(6780, 'Man Stroke Woman', 'UK', now()), +(6781, 'The X''s', 'US', now()), +(6782, 'Broken News', 'UK', now()), +(6783, 'Dragons'' Den (UK)', 'UK', now()), +(6784, 'Dragon''s Den (AU)', 'AU', now()), +(6785, 'Little Angels', 'UK', now()), +(6786, 'Shipmates (UK)', 'UK', now()), +(6787, 'One Life', 'UK', now()), +(6788, 'The Prosecutors', 'US', now()), +(6789, 'ShakespeaRe-Told', 'UK', now()), +(6790, 'They Think It''s all Over', 'UK', now()), +(6791, 'Honey, We''re Killing the Kids (UK)', 'UK', now()), +(6792, 'What Not to Wear (UK)', 'UK', now()), +(6793, 'Life in the Undergrowth', 'UK', now()), +(6794, 'My Teen''s a Nightmare - I''m Moving Out', 'UK', now()), +(6795, 'Jamie''s Great Escape', 'UK', now()), +(6796, 'Scandal (UK)', 'UK', now()), +(6797, 'The F Word', 'UK', now()), +(6798, 'Who Rules The Roost?', 'UK', now()), +(6799, 'Sensitive Skin', 'UK', now()), +(6800, 'The Queen''s Cavalry', 'UK', now()), +(16738, 'Yogi''s Gang', 'US', now()), +(6802, 'Pimp My Ride (UK)', 'UK', now()), +(6803, 'Love Monkey', 'US', now()), +(6804, 'Restored To Glory', 'UK', now()), +(6805, 'Roush Racing: Driver X', 'US', now()), +(6806, 'Shoot The Writers', 'UK', now()), +(6807, 'Chef At Home', 'CA', now()), +(6808, 'CBS Sunday Morning', 'US', now()), +(6809, 'The Ghost Squad', 'UK', now()), +(6810, 'Days That Shook the World', 'UK', now()), +(6812, 'Fact Hunt', 'UK', now()), +(6813, 'American Soldier', 'US', now()), +(6814, 'CMT Crossroads', 'US', now()), +(6815, 'Natural World', 'UK', now()), +(6816, 'Iconoclasts', 'US', now()), +(6817, 'The Comic Side of 7 Days', 'UK', now()), +(6818, '30 Days', 'US', now()), +(6819, 'Coast', 'UK', now()), +(6820, 'The Presidents', 'US', now()), +(6821, 'Timewatch', 'UK', now()), +(6822, 'Skyland', 'FR', now()), +(6823, 'Brotherhood', 'US', now()), +(6824, 'Matroesjka''s', 'BE', now()), +(6825, 'Low Carb Cookworx', 'US', now()), +(6826, 'Alice, I Think', 'CA', now()), +(6827, 'The Girls Next Door', 'US', now()), +(6828, 'Rock School', 'UK', now()), +(6829, 'My First Place', 'US', now()), +(6830, 'Made in the USA', 'US', now()), +(6831, 'Venus & Serena: For Real', 'US', now()), +(6832, 'The Unit', 'US', now()), +(6833, 'African School', 'UK', now()), +(6834, 'The Dark Side of Modern Love', 'UK', now()), +(6835, 'In Search of Shakespeare', 'UK', now()), +(6836, 'Everyday Italian', 'US', now()), +(6837, 'Coked Up Britain', 'UK', now()), +(6838, 'Cinematech', 'US', now()), +(6839, 'G4''s Training Camp', 'US', now()), +(6840, 'X-Play', 'US', now()), +(6841, 'Call For Help', 'US', now()), +(6842, 'Filter', 'US', now()), +(6843, 'Cheat!', 'US', now()), +(6844, 'Yo! MTV Raps', 'US', now()), +(6845, 'Arena', 'US', now()), +(6846, 'Icons', 'US', now()), +(6847, 'Video Game Vixens', 'US', now()), +(6848, 'Yumeria', 'JP', now()), +(6849, 'Future Fighting Machines', 'US', now()), +(6850, 'Formula D', 'US', now()), +(6851, 'NBC Nightly News', 'US', now()), +(12175, 'ITV News Tyne Tees', 'UK', now()), +(6853, 'BBQ With Bobby Flay', 'US', now()), +(6854, 'Sugar Rush (US)', 'US', now()), +(6855, 'Behind The Bash', 'US', now()), +(6856, 'Restaurant Makeover', 'US', now()), +(6857, 'Rollergirls', 'US', now()), +(6858, 'Survivorman', 'CA', now()), +(6859, 'Heir Hunters', 'US', now()), +(6860, 'Sugar Rush (UK)', 'UK', now()), +(6861, 'Grumpy Old Women', 'UK', now()), +(6862, 'Da Vinci''s City Hall', 'CA', now()), +(6863, 'Backyard Blitz', 'AU', now()), +(6864, 'Vincent', 'UK', now()), +(16936, 'Gardener''s Diary', 'US', now()), +(6866, 'Get This Party Started', 'US', now()), +(6867, 'Cheerleader Nation', 'US', now()), +(6868, '12 oz. Mouse', 'US', now()), +(6869, 'Relationship Rehab', 'US', now()), +(6870, 'The Book of Daniel', 'US', now()), +(6871, 'Four Kings', 'US', now()), +(6872, 'Most Outrageous Moments', 'US', now()), +(6873, 'South Beach (2006)', 'US', now()), +(6874, 'Biography', 'US', now()), +(6875, 'Perfect Hair Forever', 'US', now()), +(6876, 'Sunday Pants', 'US', now()), +(6877, 'That Yin Yang Thing', 'US', now()), +(6878, 'Flip This House', 'US', now()), +(6879, 'Deal Or No Deal (US)', 'US', now()), +(6880, 'The Bang', 'US', now()), +(6881, 'Totally Busted', 'US', now()), +(7116, 'Mad Money', 'US', now()), +(6883, 'Catscratch', 'US', now()), +(6884, 'Eleventh Hour (UK)', 'UK', now()), +(6885, 'Moving Up', 'US', now()), +(6947, 'Open en Bloot', 'BE', now()), +(6887, 'Acme Hour', 'US', now()), +(6889, 'The Peoples Court (1981)', 'US', now()), +(6890, 'The Hills', 'US', now()), +(6891, 'Kukla, Fran and Ollie', 'US', now()), +(6892, 'Storm Stories', 'US', now()), +(6893, 'Flavor of Love', 'US', now()), +(6894, 'Making Slough Happy', 'UK', now()), +(6895, 'Take My Mother-in-Law', 'UK', now()), +(6896, 'Face The Nation', 'US', now()), +(6897, 'CBS Evening News', 'US', now()), +(6898, 'The Great Domestic Showdown', 'US', now()), +(6899, 'Beyond the Break', 'US', now()), +(6900, 'Atmospheres', 'US', now()), +(6901, 'Man, Moment, Machine', 'US', now()), +(6902, 'The Evidence', 'US', now()), +(6903, 'MTV Unplugged', 'US', now()), +(6904, 'Sara''s Secrets', 'US', now()), +(6905, 'Paula''s Home Cooking', 'US', now()), +(6906, 'Easy Entertaining with Michael Chiarello', 'US', now()), +(6907, 'Mechannibals', 'UK', now()), +(6908, 'A Cook''s Tour', 'US', now()), +(6909, 'Barefoot Contessa', 'US', now()), +(6910, 'Boy Meets Grill', 'US', now()), +(6911, 'The Gadget Show', 'UK', now()), +(6912, 'The Music Show', 'US', now()), +(6913, 'Famous Jury Trials', 'US', now()), +(6914, 'Molto Mario', 'US', now()), +(6915, 'The Big Breakfast (UK)', 'UK', now()), +(6916, 'All Star Kitchen Makeover', 'US', now()), +(6917, 'All American Festivals', 'US', now()), +(6918, 'Art Safari', 'UK', now()), +(6919, 'Double Dare (1986)', 'US', now()), +(6920, 'Dirty Jobs', 'US', now()), +(6921, 'Renovation Rescue', 'AU', now()), +(6922, 'Walking With Monsters', 'UK', now()), +(6923, 'The Mists of Avalon', 'US', now()), +(6924, 'Unlikely Lovers', 'UK', now()), +(7849, 'The Moomins', 'FI', now()), +(6926, 'Ben 10', 'US', now()), +(6927, 'American Justice', 'US', now()), +(21913, 'Human Body: Pushing the Limits', 'US', now()), +(6929, 'Wild On...', 'US', now()), +(6930, 'What About Brian', 'US', now()), +(6931, 'Going Hollywood', 'US', now()), +(11044, 'To Me, To You', 'UK', now()), +(6933, 'Skating with Celebrities', 'US', now()), +(6934, 'StoryTime With Thomas', 'US', now()), +(6935, 'Repo Girls', 'US', now()), +(6936, 'The Black Donnellys', 'US', now()), +(15579, 'America''s Cutest Puppies', 'US', now()), +(6938, 'Windfall', 'US', now()), +(7848, 'Quentin Durgens, M.P', 'CA', now()), +(6940, 'Lee Evans: So What Now?', 'UK', now()), +(14569, 'Night Journey', 'HK', now()), +(8085, 'Goodbye Mr Kent', 'UK', now()), +(7847, 'Polka Dot Door', 'CA', now()), +(7846, 'Zzzap', 'UK', now()), +(6945, 'Miracle Workers', 'US', now()), +(6946, 'Sons & Daughters (2006)', 'US', now()), +(6948, 'Belgian Idol', 'BE', now()), +(6949, 'Ikki Tousen', 'JP', now()), +(21097, 'Personal Justice', 'US', now()), +(6951, 'The New Tomorrow', 'NZ', now()), +(6952, 'The Knock', 'UK', now()), +(6953, 'Not Forgotten', 'UK', now()), +(6954, 'Bluebirds', 'UK', now()), +(6955, 'Family Double Dare', 'US', now()), +(6956, 'Super Sloppy Double Dare', 'US', now()), +(6957, 'Gigantor', 'JP', now()), +(6958, 'Cash Cab (UK)', 'UK', now()), +(6959, 'Cash Cab (US)', 'US', now()), +(6960, 'Untold Stories of the E.R.', 'US', now()), +(6961, 'Hollywood Snappers', 'US', now()), +(6962, 'Fred Penner''s Place', 'CA', now()), +(6963, 'My Two Wives', 'AU', now()), +(6964, 'Hi-5 (US)', 'US', now()), +(6965, 'Good Morning Australia (1981)', 'AU', now()), +(6966, 'Thief', 'US', now()), +(6967, 'Brian Sewell''s Grand Tour', 'UK', now()), +(6968, 'Megastructures (US)', 'US', now()), +(6969, 'Chasing Nature', 'US', now()), +(6970, 'Secret Smile', 'UK', now()), +(6971, 'Magic Hour', 'CA', now()), +(6972, 'Soccer AM', 'UK', now()), +(6973, 'Hannity & Colmes', 'US', now()), +(6974, 'On The Record with Greta Van Susteren', 'US', now()), +(6975, 'Get The Picture', 'US', now()), +(6976, 'Your World with Neil Cavuto', 'US', now()), +(6977, 'The O''Reilly Factor', 'US', now()), +(6978, 'Fox and Friends', 'US', now()), +(6979, 'The Fox Report', 'US', now()), +(6980, '9B', 'CA', now()), +(6981, 'Grimm''s Fairy Tale Classics', 'JP', now()), +(6982, 'Papa Beaver''s Story Time', 'US', now()), +(6984, 'Football Icon', 'UK', now()), +(14784, 'The Curse of King Tut''s Tomb', 'UK', now()), +(6986, 'Think Fast!', 'US', now()), +(6987, 'Make the Grade', 'US', now()), +(6988, 'Double Dare 2000', 'US', now()), +(6989, 'Saban''s The Little Mermaid', 'US', now()), +(6990, 'The Flumps', 'UK', now()), +(6991, 'The Fiddley Foodle Bird', 'UK', now()), +(6992, 'Hollywood Greats', 'UK', now()), +(6993, 'Torchwood', 'UK', now()), +(6994, 'The Price Is Right (US)', 'US', now()), +(6995, 'Top Chef', 'US', now()), +(6996, 'Anything to Win', 'US', now()), +(12333, 'U.S. of ANT', 'US', now()), +(6998, 'The Tube', 'UK', now()), +(6999, 'Naked Celebrity', 'UK', now()), +(7000, 'Dreamspaces', 'UK', now()), +(7001, 'Wheel of Fortune (US)', 'US', now()), +(7003, 'Heroes Under Fire', 'US', now()), +(7004, 'Must See TV', 'UK', now()), +(7005, 'The Next Food Network Star', 'US', now()), +(7006, 'Spending Other People''s Money', 'UK', now()), +(7007, 'Would You Buy a House with a Stranger?', 'UK', now()), +(7008, 'Modern Men', 'US', now()), +(7009, 'Finders Keepers (US)', 'US', now()), +(7010, 'Get Ed', 'US', now()), +(7011, 'Cartoon Network Top 5', 'US', now()), +(7012, 'Demolition', 'UK', now()), +(7013, 'Treasure Hunters', 'US', now()), +(7014, 'Corwin’s Quest', 'US', now()), +(7015, 'The Ultimate Hustler', 'US', now()), +(7016, 'Most Wanted', 'US', now()), +(7017, 'In the Moment', 'US', now()), +(7018, 'Don''t Watch That, Watch This!', 'UK', now()), +(7019, 'Takeshi''s Castle', 'JP', now()), +(7020, 'MovieReal', 'US', now()), +(7021, 'Decoding the Past', 'US', now()), +(7022, 'The World of Tosh', 'UK', now()), +(7023, 'Sunday Night Football', 'US', now()), +(7024, 'Anderson Cooper 360°', 'US', now()), +(7025, 'Nickelodeon GUTS', 'US', now()), +(15730, 'Sammy and Company', 'US', now()), +(7027, 'Hi-Jinks', 'US', now()), +(7028, 'Robotboy', 'UK', now()), +(7029, 'The New Animated Adventures of Flash Gordon', 'US', now()), +(7030, 'Make Me Rich', 'UK', now()), +(7031, 'Countdown (UK)', 'UK', now()), +(7032, 'Kicked Out', 'US', now()), +(7033, 'The Sausage Factory', 'CA', now()), +(7034, 'Bullseye', 'UK', now()), +(7035, 'Doki Doki School Hours', 'JP', now()), +(7036, 'Deal Or No Deal (UK)', 'UK', now()), +(7037, 'Courting Alex', 'US', now()), +(7038, 'Moral Orel', 'US', now()), +(17344, 'Tomfoolery', 'US', now()), +(7041, 'Daddy''s Spoiled Little Girl', 'US', now()), +(7042, 'Dallas SWAT', 'US', now()), +(7043, 'Campus Ladies', 'US', now()), +(7044, 'There & Back: Ashley Parker Angel', 'US', now()), +(7045, 'Distraction (US)', 'US', now()), +(7046, 'Body of Evidence (2002)', 'US', now()), +(7047, 'Top of the Pops Reloaded', 'UK', now()), +(7048, 'Movies 101', 'US', now()), +(7049, 'Messiah', 'UK', now()), +(7050, 'How Not to Decorate', 'UK', now()), +(7051, 'Ready Steady Cook (UK)', 'UK', now()), +(7052, 'GMTV', 'UK', now()), +(7053, 'Heist', 'US', now()), +(7054, 'NBA Action', 'US', now()), +(7055, 'Magical DoReMi', 'AJ', now()), +(7056, 'Off to War', 'US', now()), +(7057, 'Soundstage (2003)', 'US', now()), +(7058, 'I Can''t Believe I Wore That!', 'US', now()), +(7059, 'Secret Lives Of Women', 'US', now()), +(7060, 'The New Canoe', 'CA', now()), +(7061, 'Conviction (US)', 'US', now()), +(7062, 'Die Pfefferkörner', 'DE', now()), +(7063, 'Musti', 'BE', now()), +(7064, 'The Ronnie Johns Half Hour', 'AU', now()), +(7065, 'Small Talk (CA)', 'CA', now()), +(7066, 'The Tom Green Show (1993)', 'CA', now()), +(7067, 'The Tom Green Show (US)', 'US', now()), +(7068, 'The New Tom Green Show', 'US', now()), +(7069, 'Taste of America', 'US', now()), +(7070, 'CMT Insider', 'US', now()), +(7071, 'Judge Hatchett', 'US', now()), +(7072, 'Football First', 'UK', now()), +(14574, 'Hikon Kazoku', 'JP', now()), +(7074, '8 out of 10 Cats', 'UK', now()), +(7075, 'The 10th Kingdom', 'US', now()), +(7076, 'History IQ', 'US', now()), +(7077, 'Hero to Zero', 'UK', now()), +(7078, 'Project Catwalk', 'UK', now()), +(7079, 'Hard Spell', 'UK', now()), +(7080, 'A2Z', 'US', now()), +(7081, 'Mock The Week', 'UK', now()), +(7082, 'Black. White.', 'US', now()), +(7083, 'Sit Down Comedy', 'US', now()), +(7084, 'The Legend of The Dragon', 'UK', now()), +(7085, 'PopJapan TV', 'JP', now()), +(7086, 'Semi-Homemade Cooking with Sandra Lee', 'US', now()), +(7087, 'Calorie Commando', 'US', now()), +(7088, 'The Bridge (JP)', 'JP', now()), +(7089, 'Low Carb and Lovin'' it', 'US', now()), +(7090, 'The Emperor’s New School', 'US', now()), +(7091, 'Broadside', 'US', now()), +(7092, 'Freshmen on Campus', 'UK', now()), +(7093, 'Mystery!', 'US', now()), +(7094, 'Good Day Live', 'US', now()), +(7095, 'Revolution (2005)', 'US', now()), +(7096, 'Hannah Montana', 'US', now()), +(7097, 'Big Red Bus', 'UK', now()), +(7098, 'The Huckleberry Hound Show', 'US', now()), +(7099, 'Wonder Three', 'JP', now()), +(7100, 'Trouble Chocolate', 'JP', now()), +(7102, 'Christine''s Garden', 'UK', now()), +(7103, 'The Gardener''s Year', 'UK', now()), +(7104, 'The Janice Dickinson Modeling Agency', 'US', now()), +(7105, 'The World''s Strongest Man', 'UK', now()), +(7106, 'Balderdash & Piffle', 'UK', now()), +(7107, 'Up in Town', 'UK', now()), +(7108, 'The Thick of It', 'UK', now()), +(7109, 'How to Be a Property Developer', 'UK', now()), +(7110, 'A Seaside Parish', 'UK', now()), +(7111, 'Seaside Rescue', 'UK', now()), +(7112, 'Pay Off Your Mortgage in Two Years', 'UK', now()), +(7113, 'Pets Are People', 'UK', now()), +(7114, 'Diet Doctors Inside & Out', 'UK', now()), +(7115, 'Ice Diaries', 'US', now()), +(7117, 'FM', 'US', now()), +(7118, 'Julian Fellowes Investigates: A Most Mysterious Murder', 'UK', now()), +(7119, 'It''s Alec Templeton Time', 'US', now()), +(7120, 'Have a Heart', 'US', now()), +(7121, 'Key to the Ages', 'US', now()), +(7122, 'The Ilona Massey Show', 'US', now()), +(7123, 'Time Will Tell', 'US', now()), +(7124, 'Studio 57', 'US', now()), +(7125, 'Hyperdrive', 'UK', now()), +(7126, 'Soapstar Superstar', 'UK', now()), +(7127, 'The Friday Night Project', 'UK', now()), +(7128, 'The Surreal Gourmet', 'US', now()), +(7129, 'Around the Horn', 'US', now()), +(7130, 'The Sports Reporters', 'US', now()), +(7131, 'Dateline NBC', 'US', now()), +(7132, 'Fresh Baked Videogames', 'US', now()), +(7133, 'King of Vegas', 'US', now()), +(7134, '#1 Single', 'US', now()), +(7135, 'Knight School', 'US', now()), +(7136, 'King of Cars', 'US', now()), +(7137, 'Spying On Myself', 'US', now()), +(7138, 'Mind of Mencia', 'US', now()), +(7139, 'Million Dollar Listing', 'US', now()), +(7140, 'Project Jay', 'US', now()), +(7141, 'Canada''s Next Top Model', 'CA', now()), +(7142, 'Ed''s Night Party', 'CA', now()), +(7143, 'This Week in Baseball', 'US', now()), +(15569, 'Cape Wrath', 'UK', now()), +(7146, 'The Situation Room', 'US', now()), +(7147, 'Painkiller Jane', 'US', now()), +(7148, 'Family Feud (US)', 'US', now()), +(7149, 'Investigative Reports', 'US', now()), +(7150, 'Beach Patrol: San Diego', 'US', now()), +(7151, 'Wedding Stories', 'UK', now()), +(7152, 'My Childhood', 'UK', now()), +(7153, 'Wogan', 'UK', now()), +(7154, 'Jim Rome is Burning', 'US', now()), +(7155, 'Stevie Sanchez', 'US', now()), +(14671, 'Emergency', 'AU', now()), +(7157, 'My Own', 'US', now()), +(7158, 'Life on Mars (UK)', 'UK', now()), +(7159, 'The Ferocious Mr Fixit', 'UK', now()), +(7160, 'Tommy Zoom', 'US', now()), +(7162, 'Peppa Pig', 'UK', now()), +(7163, 'Tikkabilla', 'UK', now()), +(7164, 'Beckham''s Hotshots', 'UK', now()), +(7165, '10 Years Younger (UK)', 'UK', now()), +(7166, 'You Are What You Eat', 'UK', now()), +(7167, 'The Replacements', 'US', now()), +(7168, 'Jigoku Shoujo (Hell Girl)', 'JP', now()), +(7169, 'Razzledazzle', 'UK', now()), +(7170, 'Strictly Sex With Dr. Drew', 'US', now()), +(7171, 'Medical Incredible', 'US', now()), +(7172, 'Celebrity Fit Club (UK)', 'UK', now()), +(7173, 'Supersize Surgery', 'UK', now()), +(7174, 'It''s Me or the Dog', 'UK', now()), +(7175, 'Tittybangbang', 'UK', now()), +(7176, 'Texas S.W.A.T.', 'US', now()), +(7177, 'Miami Ink', 'US', now()), +(7178, 'Rides (US)', 'US', now()), +(7179, 'The Tournament', 'CA', now()), +(7180, 'The Colgate Comedy Hour', 'US', now()), +(7181, 'The Gray Ghost', 'US', now()), +(7182, 'Flight 29 Down', 'US', now()), +(7183, 'The Guyver', 'JP', now()), +(7184, 'A.T.O.M. - Alpha Teens on Machines', 'FR', now()), +(7185, 'Alias the Jester', 'UK', now()), +(7186, 'James the Cat', 'UK', now()), +(7187, 'Little Blue', 'UK', now()), +(7188, 'The Shoe People', 'UK', now()), +(7189, 'The Gingerbread Man', 'UK', now()), +(7190, 'Jamie and the Magic Torch', 'UK', now()), +(7191, 'The Wombles', 'UK', now()), +(7192, 'Juniper Jungle', 'UK', now()), +(7193, 'The Foxbusters', 'UK', now()), +(7194, 'The Academy Awards', 'US', now()), +(7195, 'Flight Attendant School', 'US', now()), +(7196, 'The Golden Globes', 'US', now()), +(7197, 'Dennis the Menace (UK)', 'UK', now()), +(7198, 'Penny Crayon', 'UK', now()), +(7199, 'Oh! Mr.Toad', 'UK', now()), +(7200, 'Oscar''s Orchestra', 'UK', now()), +(7201, 'Percy the Park Keeper', 'UK', now()), +(7202, 'The Blobs', 'UK', now()), +(7203, 'The Lampies', 'UK', now()), +(7204, 'Molly''s Gang', 'UK', now()), +(7205, 'Bagpuss', 'UK', now()), +(7206, 'The Adventures of Captain Pugwash', 'UK', now()), +(7207, 'Fantomcat', 'UK', now()), +(7208, 'Victor and Hugo Bunglers in Crime', 'UK', now()), +(7209, 'The Fantastic Flying Journey', 'UK', now()), +(7210, 'Battle of the Network Reality Stars', 'US', now()), +(7211, 'The Skateboard Show', 'US', now()), +(7212, 'The Lawless Years', 'US', now()), +(7213, 'Pony Express', 'US', now()), +(7214, 'Philbert Frog', 'UK', now()), +(7215, 'Doctor Snuggles', 'UK', now()), +(7216, 'Huxley Pig', 'UK', now()), +(7217, 'Rocky and the DoDo''s', 'UK', now()), +(7218, 'The Real Housewives Of Orange County', 'US', now()), +(7219, 'This Morning', 'UK', now()), +(7220, 'Bikini Destinations', 'US', now()), +(7221, 'Art Mann Presents', 'US', now()), +(7222, 'F.Y.E!', 'US', now()), +(7223, 'Cut to the Chase', 'US', now()), +(7224, 'Tales from the Country', 'UK', now()), +(7225, 'This Space for Rent', 'CA', now()), +(7226, 'Tour Girls', 'US', now()), +(7227, 'A Passion for Churches', 'UK', now()), +(7228, 'Magacine', 'ES', now()), +(7229, 'Driving Force', 'US', now()), +(7230, 'Move This House', 'US', now()), +(7231, 'Looks of Love', 'US', now()), +(7232, 'Squirrel Boy', 'US', now()), +(7233, 'Barely Famous', 'US', now()), +(7234, 'Dog Bites Man', 'US', now()), +(7235, 'Parco P.I.', 'US', now()), +(7236, 'Stunt Junkies', 'US', now()), +(7237, 'New York Confidential', 'US', now()), +(7238, '48 Hours', 'US', now()), +(7239, 'The Telebugs', 'UK', now()), +(7240, 'The Story Store', 'UK', now()), +(7241, '1, 2, 3 Go!', 'US', now()), +(7242, 'The 1/2 Hour Comedy Hour', 'US', now()), +(7244, '10 Things Every Guy Should Experience', 'US', now()), +(7245, '100 Grand', 'US', now()), +(7246, '106 & Park Prime', 'US', now()), +(7247, 'The 11 O''Clock Show', 'UK', now()), +(7248, '110% Tony Squires', 'AU', now()), +(7249, '120 Minutes', 'US', now()), +(7250, '13 East', 'US', now()), +(7251, '13 Queens Boulevard', 'US', now()), +(7252, 'The 1940s House', 'UK', now()), +(7253, '199 Park Lane', 'UK', now()), +(7254, '2 Minute Drill', 'US', now()), +(20798, 'FlashForward', 'US', now()), +(7256, '20/20', 'US', now()), +(7257, '20th Century Roadshow', 'UK', now()), +(7258, '21', 'US', now()), +(7259, '21 Beacon Street', 'US', now()), +(7260, '24 Hour Quiz', 'UK', now()), +(7261, 'The Kennedy Center Honors', 'US', now()), +(7262, '29 Minutes of Fame', 'UK', now()), +(7263, '3 for the Money', 'US', now()), +(7264, '3 Lbs.', 'US', now()), +(14795, 'Identity (US)', 'US', now()), +(14920, 'Yu-Gi-Oh! (JP)', 'JP', now()), +(7267, '3-2-1', 'UK', now()), +(14564, 'Soldier Of Fortune', 'HK', now()), +(14563, 'Ella & Me', 'US', now()), +(18623, 'Shakugan no Shana Second', 'JP', now()), +(22177, 'Games Across America', 'US', now()), +(7272, '6 Dates with Barker', 'UK', now()), +(7273, 'The 5th Wheel', 'US', now()), +(7274, '60 Minute Makeover', 'UK', now()), +(7275, '7 Lives X-posed', 'US', now()), +(7276, 'The 8:15 from Manchester', 'UK', now()), +(7277, '90 Minutes', 'CA', now()), +(7278, '99-1', 'UK', now()), +(7279, 'So NoTORIous', 'US', now()), +(7280, '8th & Ocean', 'US', now()), +(7281, 'Z Games', 'US', now()), +(7282, 'Zardip''s Search for Healthy Wellness', 'CA', now()), +(16443, 'Back to the Grind', 'US', now()), +(15539, 'General Hospital: Night Shift', 'US', now()), +(7285, 'Zillion', 'JP', now()), +(7287, 'Zodiac', 'UK', now()), +(7288, 'Zola Levitt', 'US', now()), +(7289, 'Zoo Diaries', 'CA', now()), +(7290, 'Yankeeography', 'US', now()), +(7291, 'Yanks Go Home', 'UK', now()), +(7292, 'The Yeagers', 'US', now()), +(7293, 'A Year at Kew', 'UK', now()), +(7294, 'A Year in the Life', 'US', now()), +(7295, 'A Year at the Top', 'US', now()), +(7296, 'Yellowthread Street', 'UK', now()), +(7297, 'You & Me Kid', 'US', now()), +(15580, 'Adventures in Doggie Daycare', 'US', now()), +(7299, 'You Are There', 'US', now()), +(14760, 'Expedition Borneo', 'UK', now()), +(7301, 'You Asked For It (1950)', 'US', now()), +(7302, 'Heroes Anonymous', 'US', now()), +(21916, 'Ultimate Zoo', 'US', now()), +(7304, 'You Bet Your Life (1950)', 'US', now()), +(7305, 'You Bet Your Life (1992)', 'US', now()), +(7306, 'You Can Do Magic', 'UK', now()), +(7307, 'You Can''t Win', 'UK', now()), +(7308, 'You Don''t Say!', 'US', now()), +(7309, 'You Lie Like A Dog', 'US', now()), +(7310, 'You Only Live Once', 'UK', now()), +(7311, 'You Write the Songs', 'US', now()), +(7312, 'Global Frequency', 'US', now()), +(7313, 'Tomorrow''s Child', 'US', now()), +(7314, 'You''re Invited', 'US', now()), +(7315, 'You''re On Your Own', 'UK', now()), +(7316, 'You''re Only Young Twice (1977)', 'UK', now()), +(7317, 'You''re Putting Me On', 'US', now()), +(7318, 'You''ve Been Framed', 'UK', now()), +(7319, 'Young Dr. Malone', 'US', now()), +(7320, 'Commando VIP', 'UK', now()), +(7321, 'The Young Marrieds', 'US', now()), +(7322, 'Your Cheatin'' Heart', 'UK', now()), +(7323, 'Your Face or Mine?', 'UK', now()), +(7324, 'Your First Impression', 'US', now()), +(7325, 'Your Friend, Andrew W.K.', 'US', now()), +(7326, 'Your Kids Are in Charge', 'UK', now()), +(7327, 'Your Lucky Clue', 'US', now()), +(7328, 'You''re On! (1998)', 'US', now()), +(7329, 'Your Number''s Up', 'US', now()), +(7330, 'YTV''s Hit List', 'US', now()), +(7331, 'Xperimental', 'UK', now()), +(7332, 'Xuxa', 'US', now()), +(7333, 'The XYY Man', 'UK', now()), +(7334, 'Xchange', 'UK', now()), +(21784, 'Legacy - The Origins of Civilization', 'UK', now()), +(7336, 'Queen B', 'US', now()), +(7337, 'Queen for a Day', 'US', now()), +(7338, 'Queenie''s Castle', 'UK', now()), +(7339, 'The Quiz Kids Challenge', 'US', now()), +(7340, 'Quiller', 'UK', now()), +(7341, 'A Question of Sport', 'UK', now()), +(7342, 'Match of The Day', 'UK', now()), +(14697, 'Nynne', 'DK', now()), +(7344, 'Grandstand', 'UK', now()), +(7345, 'Secrets of The USA', 'US', now()), +(7346, 'Made in Heaven', 'UK', now()), +(7347, 'U.S. Marshal', 'US', now()), +(7348, 'UFO Princess Valkyrie 2', 'AJ', now()), +(7349, 'Big Brother''s Big Mouth', 'UK', now()), +(7350, 'Cockleshell Bay', 'UK', now()), +(7351, 'Hattytown Tales', 'UK', now()), +(7352, 'Funnybones', 'UK', now()), +(7353, 'Tube Mice', 'UK', now()), +(7354, 'Upstairs Downstairs Bears', 'UK', now()), +(7355, 'Wil Cwac Cwac', 'UK', now()), +(7356, 'Yoho Ahoy', 'UK', now()), +(7357, 'Kodocha (JP)', 'JP', now()), +(22595, 'Zorro (2009)', 'PH', now()), +(7359, 'Destroy All Humans!', 'US', now()), +(7360, 'The Dresden Files', 'US', now()), +(7361, 'Time Tunnel', 'US', now()), +(7362, 'Judge Alex', 'US', now()), +(7363, 'Urban Arcana', 'US', now()), +(7364, 'Mischief', 'UK', now()), +(7365, 'Deputy Dawg', 'US', now()), +(7366, 'Armchair Theatre', 'UK', now()), +(7367, 'Damon Runyon Theater', 'US', now()), +(7368, 'The Elgin TV Hour', 'US', now()), +(7369, 'Hot Ticket', 'US', now()), +(7370, 'The Wackers', 'UK', now()), +(7371, 'The Wade Robson Project', 'US', now()), +(7372, 'Wake, Rattle & Roll', 'US', now()), +(7373, 'Walking Tall', 'US', now()), +(7374, 'Walking the Thames', 'US', now()), +(7375, 'Wall $treet Week', 'US', now()), +(7376, 'Wally Brown', 'US', now()), +(7377, 'Wally''s Workshop', 'US', now()), +(7378, 'Walter and Emily', 'US', now()), +(7379, 'The Walter Winchell File', 'US', now()), +(7380, 'War and Peace', 'UK', now()), +(21895, 'Jimmy Doherty in Darwin''s Garden', 'UK', now()), +(7383, 'Washington Square', 'US', now()), +(7384, 'Washington Street', 'US', now()), +(7385, 'Washington Week', 'US', now()), +(7386, 'Waste Not', 'US', now()), +(7387, 'Wasted TV', 'US', now()), +(7389, 'Waterfront (1954)', 'US', now()), +(7390, 'Waterfront Beat', 'UK', now()), +(7391, 'Waugh on Crime', 'UK', now()), +(7392, 'The Waverly Wonders', 'US', now()), +(7393, 'Wax Cracks Cannes', 'UK', now()), +(7394, 'Wax Cracks Hollywood', 'US', now()), +(7395, 'Wax on Wheels', 'UK', now()), +(7396, 'The Way It Was', 'US', now()), +(7397, 'Way of the Master', 'US', now()), +(7398, 'Way Out Games!', 'US', now()), +(7399, 'The Way We Went Wild', 'UK', now()), +(7400, 'The Way We Were', 'AU', now()), +(7401, 'We Are One Body', 'US', now()), +(7402, 'We Live Next Door', 'US', now()), +(7403, 'We The Jury', 'US', now()), +(7404, 'We''ll Get By', 'US', now()), +(7405, 'We''ve Got Each Other', 'US', now()), +(7406, 'The Weakest Link (AU)', 'AU', now()), +(34188, 'Hugh''s 3 Good Things', 'UK', now()), +(7408, 'The Web', 'US', now()), +(7409, 'A Wedding Story', 'US', now()), +(7410, 'Weekend', 'US', now()), +(7411, 'Weekend Break', 'UK', now()), +(7412, 'Weekend Today', 'US', now()), +(7413, 'How', 'UK', now()), +(7414, 'How 2', 'UK', now()), +(7415, 'Wendy and Me', 'US', now()), +(7416, 'Wendy Williams Is On Fire', 'US', now()), +(7417, 'West 57th', 'US', now()), +(7418, 'Barking (1998)', 'UK', now()), +(7419, 'What a Cartoon', 'US', now()), +(7420, 'What a Country', 'US', now()), +(7421, 'What Happened?', 'US', now()), +(7422, 'What Really Happened To the Class Of ''65?', 'US', now()), +(7423, 'What''s Cooking', 'US', now()), +(7424, 'What''s In a Word', 'US', now()), +(7425, 'What''s It All About, World?', 'US', now()), +(7426, 'Wheel of Fortune (UK)', 'UK', now()), +(7427, 'Wheel of Fortune (AU)', 'AU', now()), +(7428, 'When Good Times Go Bad', 'US', now()), +(7429, 'Private Benjamin', 'US', now()), +(7430, 'Who Wants to Be a Millionaire (IR)', 'IE', now()), +(7431, 'Who Wants to Be a Millionaire (AU)', 'AU', now()), +(7432, 'Who Said That?', 'US', now()), +(7433, 'Who Pays?', 'US', now()), +(7434, 'Who Knows the Band?', 'US', now()), +(7435, 'Who Do You Trust?', 'US', now()), +(7436, 'Who Do You Think You Are? (UK)', 'UK', now()), +(7437, 'Whizzkid''s Guide', 'UK', now()), +(7438, 'Who''s Whose', 'US', now()), +(7439, 'The Who, What or Where Game', 'US', now()), +(7440, 'The Whoopi Goldberg Show', 'US', now()), +(7441, 'Whoops Baghdad', 'UK', now()), +(7442, 'Whose House is it Anyway? (NZ)', 'NZ', now()), +(7443, 'Why Don''t You?', 'UK', now()), +(7444, 'Wide Awake Club', 'UK', now()), +(7445, 'The Wil Shriner Show', 'US', now()), +(7446, 'Wild Animal Games', 'US', now()), +(7447, 'William', 'UK', now()), +(7448, 'Win, Lose or Draw (US)', 'US', now()), +(7449, 'Webdreams', 'CA', now()), +(7450, 'Kink', 'CA', now()), +(7453, 'The Gerald McBoing Boing Show', 'US', now()), +(15558, 'The Ed Wynn Show (1949)', 'US', now()), +(7455, 'The New Perry Mason', 'US', now()), +(7456, 'Super Vets', 'UK', now()), +(7457, 'Firehouse Tales', 'US', now()), +(7458, 'Lingo', 'US', now()), +(7459, 'Billboard Music Awards', 'US', now()), +(7460, 'Communism''s Heroes', 'UK', now()), +(7461, 'Britain''s Psychic Challenge', 'UK', now()), +(7462, 'Los Serrano', 'ES', now()), +(7463, 'A Family at War', 'UK', now()), +(7464, 'K-Club', 'UK', now()), +(7465, 'Kaiser Aluminum Hour', 'US', now()), +(7466, 'Kangaroo Creek Gang', 'AU', now()), +(7467, 'Kathy''s So-Called Reality', 'US', now()), +(7468, 'Hotel Babylon', 'UK', now()), +(7469, 'Child Of Our Time', 'UK', now()), +(7470, 'The Wallace and Ladmo Show', 'US', now()), +(12335, 'The Kabocha Wine', 'JP', now()), +(7472, 'The Communist Manifesto', 'UK', now()), +(7473, 'Ayashi no Ceres', 'JP', now()), +(7474, 'My Crazy Life', 'US', now()), +(7475, 'Riders in the Sky', 'US', now()), +(7476, 'BBC News at Five', 'UK', now()), +(7477, 'Superhuman', 'UK', now()), +(7478, 'Threads of Life', 'UK', now()), +(7479, 'On the Fiddle?', 'UK', now()), +(7480, 'Northern Lights', 'UK', now()), +(7481, 'Help Your Self with Angus Deayton', 'UK', now()), +(7482, 'Autopsy: Life and Death', 'UK', now()), +(7483, 'The Bigger Picture', 'UK', now()), +(7484, 'The Root of All Evil (UK)', 'UK', now()), +(7485, 'Into the Firestorm', 'US', now()), +(7486, 'Quick Before They Catch Us', 'UK', now()), +(7487, 'The Dustbinmen', 'UK', now()), +(7488, 'Murder 101', 'US', now()), +(7489, 'Jane Doe', 'US', now()), +(7490, 'Late Night with Trevor McDonald', 'UK', now()), +(7491, 'Three Moons Over Milford', 'US', now()), +(7492, 'The Shining', 'US', now()), +(7493, 'Top of The Pops 2', 'UK', now()), +(7494, 'Surviving Disaster', 'UK', now()), +(7495, 'British Isles: A Natural History', 'UK', now()), +(7496, 'The Sky At Night', 'UK', now()), +(7497, 'Walking With Cavemen', 'UK', now()), +(7498, 'Newsnight', 'UK', now()), +(7499, 'Almost Family', 'US', now()), +(7500, 'American Inventor', 'US', now()), +(7501, 'Bad Dads, Phat Mums', 'US', now()), +(17836, 'Shalom And Good Evening', 'IL', now()), +(7503, 'Call To Greatness', 'US', now()), +(7504, 'Cheyenne (2006)', 'US', now()), +(7505, 'Double Or Nothing', 'US', now()), +(7506, 'Eureka', 'US', now()), +(7507, 'Final FU', 'US', now()), +(14672, 'Good Morning, Mr. Doubleday', 'AU', now()), +(8506, 'Runaway', 'US', now()), +(7510, 'Gameshow Marathon', 'US', now()), +(7511, 'God Or The Girl', 'US', now()), +(7512, 'Jackpot Diaries', 'US', now()), +(7513, 'Jamie Kennedy''s Blowin'' Up', 'US', now()), +(7514, 'Psychic Witness', 'US', now()), +(7515, 'Beyond The Bull', 'US', now()), +(7516, 'The Hairy Bikers'' Cook Book', 'UK', now()), +(7517, 'Holiday Showdown', 'UK', now()), +(7518, 'Let''s Dance (BE)', 'BE', now()), +(7519, 'The Road Show', 'US', now()), +(7520, 'The Center', 'US', now()), +(7521, 'The Future Is Wild (2003)', 'US', now()), +(7522, 'The Arts Show', 'AU', now()), +(7523, 'At the Movies (AU)', 'AU', now()), +(7524, 'Fashionista', 'AU', now()), +(7525, 'Message Stick', 'AU', now()), +(7526, 'The Movie Show', 'AU', now()), +(7527, 'Australia''s Brainiest Kid', 'AU', now()), +(7528, 'The Einstein Factor', 'AU', now()), +(7529, 'The Price Is Right (AU)', 'AU', now()), +(7530, 'StarStruck', 'AU', now()), +(7531, 'Aerobics Oz Style', 'AU', now()), +(7532, 'Beat The Chef', 'AU', now()), +(7533, 'Better Homes and Gardens', 'AU', now()), +(7534, 'Celebrity Overhaul', 'AU', now()), +(7535, 'The Big Square Eye', 'AU', now()), +(7536, 'Cheez TV', 'AU', now()), +(7537, 'Girl TV', 'AU', now()), +(7538, 'Go Go Stop', 'AU', now()), +(7539, 'Hot Source', 'AU', now()), +(15931, '009-1', 'JP', now()), +(7541, 'New MacDonald''s Farm', 'AU', now()), +(7542, 'Mister Squiggle', 'AU', now()), +(7543, 'Play School (AU)', 'AU', now()), +(7544, 'Totally Wild', 'AU', now()), +(14654, 'Jozi-H', 'CA', now()), +(7546, 'Desperately Seeking Sheila', 'AU', now()), +(7547, 'Global Village', 'AU', now()), +(7548, 'The Human Body', 'UK', now()), +(7549, 'Massive Nature', 'UK', now()), +(7550, 'Storyline Australia', 'AU', now()), +(7551, 'The 7:30 Report', 'AU', now()), +(7552, '60 Minutes (AU)', 'AU', now()), +(7553, 'A Current Affair (AU)', 'AU', now()), +(7554, 'Asia Pacific Focus', 'AU', now()), +(7555, 'Australian Story', 'AU', now()), +(7556, 'Beyond Tomorrow', 'AU', now()), +(7557, 'Business Success', 'AU', now()), +(7558, 'Business Sunday', 'AU', now()), +(7559, 'Catalyst', 'AU', now()), +(7560, 'Dateline (AU)', 'AU', now()), +(7561, 'Foreign Correspondent', 'AU', now()), +(7562, 'Four Corners (AU)', 'AU', now()), +(7563, 'Insiders', 'AU', now()), +(7564, 'Living Black', 'AU', now()), +(7565, 'Media Watch', 'AU', now()), +(7566, 'Meet the Press (AU)', 'AU', now()), +(7567, 'Stateline', 'AU', now()), +(7568, 'Sunday', 'AU', now()), +(7569, 'Today Tonight (East Coast)', 'AU', now()), +(7570, 'World News Australia', 'AU', now()), +(7571, 'True Stories', 'AU', now()), +(7572, 'The Uplate Game Show', 'AU', now()), +(7573, 'Temptation', 'AU', now()), +(7574, 'A Gondola on the Murray', 'AU', now()), +(7575, 'Blokesworld', 'AU', now()), +(7576, 'Collectors', 'AU', now()), +(7577, 'Huey''s Cooking Adventures', 'AU', now()), +(7578, 'Metrosexuality', 'UK', now()), +(7579, 'All Music Video', 'AU', now()), +(7580, 'Australian Idol Extra', 'AU', now()), +(7581, 'rage', 'AU', now()), +(7582, 'RocKwiz', 'AU', now()), +(7583, 'So Fresh', 'AU', now()), +(7584, 'Video Hits', 'AU', now()), +(7585, 'Ready Steady Cook (AU)', 'AU', now()), +(7586, 'Before the Game', 'AU', now()), +(7587, 'Boots N'' All', 'AU', now()), +(7588, 'The Cricket Show', 'AU', now()), +(7589, 'Cycling Central', 'AU', now()), +(7590, 'The Fifth Quarter', 'AU', now()), +(7591, 'The Sunday Footy Show', 'AU', now()), +(7592, 'The Golf Show', 'AU', now()), +(7593, 'Inside Cricket', 'AU', now()), +(7594, 'Inside Rugby', 'AU', now()), +(7595, 'Hot Pursuit', 'US', now()), +(7596, 'Main Game', 'AU', now()), +(7597, 'NRL on FOX', 'AU', now()), +(7598, 'NRL Scoreboard', 'AU', now()), +(7599, 'Queensland Rules', 'AU', now()), +(7600, 'PM', 'AU', now()), +(7601, 'Speedweek', 'AU', now()), +(7602, 'Sports Tonight', 'AU', now()), +(7603, 'Sportsworld', 'AU', now()), +(7604, 'The Sunday Roast', 'AU', now()), +(7605, 'Toyota World Sports', 'AU', now()), +(7606, 'Trackside', 'AU', now()), +(7607, 'The World Game', 'AU', now()), +(7608, 'Enough Rope', 'AU', now()), +(7609, 'Sunrise', 'AU', now()), +(7610, 'Weekend Sunrise', 'AU', now()), +(7611, 'Critical Mass', 'AU', now()), +(7612, 'The Adventures Of Long John Silver', 'AU', now()), +(7613, 'The Adventures Of The Bush Patrol', 'AU', now()), +(7614, 'Animal Attraction: Macho Males', 'UK', now()), +(7615, 'The Afternoon Show', 'IE', now()), +(7616, 'Agro''s Cartoon Connection', 'AU', now()), +(7617, 'Alexander Bunyip''s Billabong', 'AU', now()), +(7618, 'Andra', 'AU', now()), +(7619, 'Arthur! And the Square Knights of the Round Table', 'AU', now()), +(7620, 'C''Mon Kids', 'AU', now()), +(7621, 'Couch Potato (1991)', 'AU', now()), +(7622, 'Couch Potato (1980)', 'AU', now()), +(7623, 'Crackerjack', 'UK', now()), +(7624, 'The Curiosity Show', 'AU', now()), +(7625, 'Fat Cat and Friends', 'AU', now()), +(7626, 'Humphrey B. Bear', 'AU', now()), +(7627, 'Lil'' Elvis and the Truckstoppers', 'AU', now()), +(7628, 'Magic Circle Club', 'AU', now()), +(7629, 'The Nargun and The Stars', 'AU', now()), +(7630, 'Noah and Saskia', 'AU', now()), +(7631, 'Shirl''s Neighbourhood', 'AU', now()), +(7632, 'Simon Townsend''s Wonder World', 'AU', now()), +(7633, 'Skippy the Bush Kangaroo', 'AU', now()), +(7634, 'Smugglers Beware', 'AU', now()), +(7635, 'The Stranger', 'AU', now()), +(7637, 'The Terrific Adventures Of The Terrible Ten', 'AU', now()), +(7638, 'What’s Up Doc?', 'UK', now()), +(7639, 'Bush Tucker Man', 'AU', now()), +(7640, 'My Space is an Amazing Place', 'AU', now()), +(7641, 'World Tales', 'AU', now()), +(7642, 'A Difficult Woman', 'AU', now()), +(7643, 'Academy', 'AU', now()), +(7644, 'All the Rivers Run', 'AU', now()), +(7645, 'All the Rivers Run 2', 'AU', now()), +(13324, 'Call the Gun Expert', 'UK', now()), +(7647, 'Bodyline: It''s Not Just Cricket', 'AU', now()), +(7648, 'Matthew''s Best Hit TV', 'JP', now()), +(7649, 'Brides of Christ', 'AU', now()), +(7650, 'Open Access', 'US', now()), +(7651, 'Consider Your Verdict', 'AU', now()), +(7652, 'The Dismissal (1993)', 'AU', now()), +(7653, 'Going Home', 'AU', now()), +(7654, 'Heartland (1994)', 'AU', now()), +(7655, 'Captain James Cook', 'AU', now()), +(7656, 'The Dismissal (1983)', 'AU', now()), +(7657, 'Secret Men''s Business', 'AU', now()), +(7658, 'Sweet and Sour', 'AU', now()), +(7659, 'Batfink', 'US', now()), +(7660, 'Bellamy', 'AU', now()), +(7661, 'Cop Shop', 'AU', now()), +(7662, 'Jonah', 'AU', now()), +(7663, 'The Link Men', 'AU', now()), +(7664, 'The Long Arm', 'AU', now()), +(7665, 'Solo One', 'AU', now()), +(26680, 'Daily Planet', 'CA', now()), +(7667, 'Hinch', 'AU', now()), +(7668, 'George Negus Tonight', 'AU', now()), +(7669, 'Hemispheres', 'AU', now()), +(7670, 'This Day Tonight', 'AU', now()), +(7671, 'All About Faces', 'CA', now()), +(7672, 'Catch Us If You Can', 'AU', now()), +(7673, 'Auction Squad', 'AU', now()), +(7674, 'Hot Property (AU)', 'AU', now()), +(7675, 'Burke''s Backyard', 'AU', now()), +(7676, 'DIY Rescue', 'AU', now()), +(7677, 'Harry''s Practice', 'AU', now()), +(7678, 'Lonely Planet Six Degrees', 'AU', now()), +(7679, 'Ranma ½ OAV', 'JP', now()), +(7680, 'Room for Improvement (UK)', 'UK', now()), +(7681, 'Surprise Chef', 'AU', now()), +(7682, 'The Food Lovers'' Guide to Australia', 'AU', now()), +(7683, 'Accent on Youth', 'AU', now()), +(7684, 'Countdown (AU)', 'AU', now()), +(7685, 'Matt Flinders and Friends', 'AU', now()), +(7686, 'So Frenchy, So Chic', 'AU', now()), +(7687, 'Popstars Live', 'AU', now()), +(7688, 'Video Smash Hits', 'AU', now()), +(7689, 'Pick A Box', 'AU', now()), +(7690, 'The $20 Challenge', 'AU', now()), +(7691, 'Talking Footy', 'AU', now()), +(7692, 'Cooking Master Boy', 'JP', now()), +(7693, 'Legend of the Condor Hero', 'JP', now()), +(7694, 'The Colony', 'AU', now()), +(7695, 'Dreamhome', 'AU', now()), +(7696, 'The Hot House', 'AU', now()), +(7697, 'Sylvania Waters', 'AU', now()), +(7698, 'Treasure Island (AU)', 'AU', now()), +(7699, 'The Resort', 'AU', now()), +(7700, 'Arcade', 'AU', now()), +(7701, 'Autumn Affair', 'AU', now()), +(7702, 'The Box', 'AU', now()), +(7703, 'Certain Women', 'AU', now()), +(7704, 'Next', 'US', now()), +(7705, 'Tonight Live With Steve Vizard', 'AU', now()), +(7706, 'The Mike Walsh Show', 'AU', now()), +(7707, 'Mouthing Off', 'AU', now()), +(7708, 'Eric Bana Live', 'AU', now()), +(7709, 'Access 1974', 'AU', now()), +(7710, 'Waterloo Station', 'AU', now()), +(7711, 'Until Tomorrow', 'AU', now()), +(7712, 'The Unisexers', 'AU', now()), +(7713, 'Taurus Rising', 'AU', now()), +(7714, 'Glenview High', 'AU', now()), +(7715, 'Family and Friends', 'AU', now()), +(7716, 'Echo Point', 'AU', now()), +(7717, 'Class of ''74', 'AU', now()), +(7718, 'Possession', 'AU', now()), +(7719, 'Hotel Story', 'AU', now()), +(7720, 'Holiday Island', 'AU', now()), +(7721, 'Time Masters', 'AU', now()), +(7722, 'Talking Telephone Numbers', 'UK', now()), +(7723, 'Take A Chance', 'CA', now()), +(7724, 'Strike It Lucky (AU)', 'AU', now()), +(7725, 'Split Second (AU)', 'AU', now()), +(7726, 'Say G''day', 'AU', now()), +(7727, 'Sale of the Century (AU)', 'AU', now()), +(7728, 'Superquiz', 'AU', now()), +(7729, 'Race Around The World', 'AU', now()), +(7730, 'Pyramid Challenge', 'AU', now()), +(7731, 'The Pressure Pak Show', 'AU', now()), +(7732, 'Pot Luck', 'AU', now()), +(7733, 'Playcards', 'AU', now()), +(7734, 'Play Your Hunch', 'US', now()), +(7735, 'Captain Pugwash', 'UK', now()), +(7736, 'Tom Terrific', 'US', now()), +(7737, 'Hollyoaks: Let Loose', 'UK', now()), +(7754, 'Bandwagon with Bob Francis', 'CA', now()), +(7739, '100 Huntley Street', 'CA', now()), +(7740, '2001: A Space Road Odyssey', 'CA', now()), +(7741, '72 Hours: True Crime', 'CA', now()), +(7742, 'A Gift To Last', 'CA', now()), +(7743, 'A Way Out', 'CA', now()), +(7744, 'Absolutely Canadian', 'CA', now()), +(7745, 'Adrienne At Large', 'CA', now()), +(7746, 'Adrienne Clarkson Presents', 'CA', now()), +(7747, 'The Adventures of Tintin', 'CA', now()), +(7748, 'Airwaves', 'CA', now()), +(7749, 'Alan Hamel''s Comedy Bag', 'CA', now()), +(7750, 'All Around The Circle', 'CA', now()), +(7751, 'Alphabet Soup', 'CA', now()), +(7752, 'Any Woman Can', 'CA', now()), +(7753, 'APTN Mainstage', 'CA', now()), +(14638, 'Married People', 'US', now()), +(14652, 'Masters of the Maze', 'US', now()), +(7757, 'Because I Said So', 'CA', now()), +(7758, 'Beyond Reason', 'CA', now()), +(7759, 'The Big Breakfast (CA)', 'CA', now()), +(7760, 'Bizarre', 'CA', now()), +(7761, 'Primetime', 'US', now()), +(7762, 'Antiques Roadshow', 'UK', now()), +(7763, 'Creepy Crawlies', 'UK', now()), +(7764, 'Wild Weddings', 'US', now()), +(7765, 'Little Monsters', 'US', now()), +(8481, 'Magda''s Funny Bits', 'AU', now()), +(7767, 'Six Degrees', 'US', now()), +(11200, 'HS Stories', 'US', now()), +(7769, 'Who Wants to Be a Superhero?', 'US', now()), +(7770, 'Medium at Large', 'US', now()), +(7771, 'Stuntdawgs', 'CA', now()), +(7772, 'Bleu Nuit', 'CA', now()), +(7773, 'Bluff', 'CA', now()), +(7774, 'Breakfast Television', 'CA', now()), +(7775, 'Bumper Stumpers', 'CA', now()), +(7776, 'Canada 98/99/100', 'CA', now()), +(7777, 'Exposed', 'UK', now()), +(7778, 'Counter Culture', 'UK', now()), +(7779, 'Canada After Dark', 'CA', now()), +(7780, 'Canada AM', 'CA', now()), +(7781, 'The Canadian Establishment', 'CA', now()), +(7782, 'The Canadian Experience', 'CA', now()), +(7783, 'Canadian Antiques Roadshow', 'CA', now()), +(7784, 'Canadian Express', 'CA', now()), +(7785, 'Celebrity Cooks', 'CA', now()), +(7786, 'Christine Cushing Live', 'CA', now()), +(7787, 'Circle Square', 'CA', now()), +(7788, 'Cities', 'CA', now()), +(7790, 'CODCO', 'CA', now()), +(7791, 'The Collaborators', 'CA', now()), +(7792, 'Comedy at Club 54', 'CA', now()), +(7793, 'Comedy Network Presents', 'CA', now()), +(7794, 'Comics', 'CA', now()), +(7795, 'Coming Up Rosie', 'CA', now()), +(7796, 'Cooking With The Wolfman', 'CA', now()), +(7797, 'Countrytéime', 'CA', now()), +(7798, 'Debbie Travis'' Painted House', 'CA', now()), +(7799, 'Defi mini-putt', 'CA', now()), +(7800, 'Definition', 'CA', now()), +(7801, 'Denny''s Show', 'CA', now()), +(7802, 'Designer Guys', 'CA', now()), +(7803, 'Disclosure', 'CA', now()), +(7804, 'Zut!', 'CA', now()), +(7805, 'Drop the Beat', 'CA', now()), +(16442, 'Nouvelle Star', 'FR', now()), +(7807, 'Your View', 'CA', now()), +(7808, 'The Fifth Estate', 'CA', now()), +(7809, 'ZeD', 'CA', now()), +(7810, 'Electric Circus', 'CA', now()), +(7811, 'eTalk Daily', 'CA', now()), +(7812, 'Excuse My French (CA)', 'CA', now()), +(7813, 'The Friendly Giant', 'CA', now()), +(7814, 'Global Sunday', 'CA', now()), +(7815, 'Hangin'' In', 'CA', now()), +(7816, 'He Shoots, He Scores', 'CA', now()), +(7817, 'Headline Hunters', 'CA', now()), +(7818, 'Great Crimes and Trials', 'US', now()), +(7819, 'The Irish Rovers', 'CA', now()), +(7820, 'Jalna', 'CA', now()), +(7821, 'The Journal', 'CA', now()), +(7822, 'Just For Laughs Gags', 'CA', now()), +(7823, 'Klahanie', 'CA', now()), +(7824, 'Yes You Can', 'CA', now()), +(7825, 'XPM', 'CA', now()), +(7826, 'Wok with Yan', 'CA', now()), +(7827, 'Wildcat', 'CA', now()), +(7828, 'Alas Smith and Jones', 'UK', now()), +(7829, 'IGPX', 'AJ', now()), +(7830, 'North Mission Road', 'US', now()), +(7832, 'Les Bougon', 'CA', now()), +(7833, 'Bye Bye', 'FR', now()), +(7834, 'CMT Most Wanted Live', 'US', now()), +(7836, 'Catherine', 'CA', now()), +(7837, 'Dans une galaxie près de chez-vous', 'CA', now()), +(7838, 'Un gars, une fille', 'CA', now()), +(7839, 'Et Dieu créa Laflaque', 'CA', now()), +(7840, 'La Petite Vie', 'CA', now()), +(7841, 'Rock et Belles Oreilles', 'CA', now()), +(7842, 'Samedi de rire', 'FR', now()), +(7843, 'Ricardo', 'FR', now()), +(7844, 'Viens voir les comédiens', 'FR', now()), +(7845, 'René Lévesque', 'FR', now()), +(7850, 'Supertown Challenge', 'CA', now()), +(7851, 'Test Pattern', 'CA', now()), +(7852, 'This Hour Has Seven Days', 'CA', now()), +(7853, 'This Is The Law', 'CA', now()), +(7854, 'This Land', 'CA', now()), +(7855, 'Thrill of a Lifetime', 'CA', now()), +(7856, 'Johnny and the Bomb', 'UK', now()), +(8001, 'Cowboy U', 'US', now()), +(7858, 'You Should Be So Lucky', 'UK', now()), +(7859, 'The Woodentops', 'UK', now()), +(7860, 'Within These Walls', 'UK', now()), +(7861, 'Wish Me Luck', 'UK', now()), +(7862, 'Albion Market', 'UK', now()), +(7863, 'Through the Keyhole', 'UK', now()), +(7864, 'Horizon', 'UK', now()), +(7865, 'The Ascent of Man', 'UK', now()), +(7866, 'Animal Magic', 'UK', now()), +(7996, 'How to Divorce Without Screwing Up Your Children', 'UK', now()), +(7868, 'Apocalypse Zero', 'JP', now()), +(7869, 'Only in America', 'US', now()), +(7871, 'Noah''s Arc', 'US', now()), +(7872, 'Naomi''s New Morning', 'US', now()), +(7874, 'The Romantics', 'UK', now()), +(7875, 'Dancing on Ice', 'UK', now()), +(7876, 'The Last Laugh', 'UK', now()), +(7877, 'The Virgin Queen', 'UK', now()), +(7878, '10 Ways', 'US', now()), +(7879, 'Jeopardy!', 'US', now()), +(7880, 'Beat The Bailiff', 'UK', now()), +(7881, 'The 100 Hottest Web Searches 2005', 'UK', now()), +(7882, 'The Gift', 'AU', now()), +(15574, 'Wife, Mom, Bounty Hunter', 'US', now()), +(7884, 'Warehouse 13', 'US', now()), +(7885, 'Survival of the Richest', 'US', now()), +(7886, 'Secrets of a Small Town', 'US', now()), +(7887, 'Lipstick Jungle', 'US', now()), +(7888, 'Tosho Daimos', 'JP', now()), +(7889, 'Dominick Dunne''s Power, Privilege and Justice', 'US', now()), +(7890, 'Masterchef Goes Large', 'UK', now()), +(22296, 'Daten In Het Donker', 'NL', now()), +(7892, 'Free Ride', 'US', now()), +(7893, 'Big In 2005', 'US', now()), +(7894, 'Human Crossing', 'JP', now()), +(7895, 'All Aboard', 'US', now()), +(7896, 'The Shop', 'US', now()), +(7897, 'Style Me', 'US', now()), +(7898, 'Cross Country', 'US', now()), +(7899, 'Alternative Medicine: The Evidence', 'UK', now()), +(7900, 'Catherine Crier Live', 'US', now()), +(7901, 'Zaion: I Wish You Were Here', 'JP', now()), +(7902, 'New Breed Vets', 'US', now()), +(7903, 'The Aquanauts', 'US', now()), +(7904, 'Deal Or No Deal (AU)', 'AU', now()), +(7905, 'Y?', 'AU', now()), +(7906, 'The World Around Us', 'AU', now()), +(7907, 'Sybil', 'US', now()), +(7908, 'The New Adventures of Old Christine', 'US', now()), +(7909, 'Liography', 'CA', now()), +(7910, 'Red State Diaries', 'US', now()), +(7911, 'Wojeck', 'CA', now()), +(7912, 'The 2006 Winter Olympics', 'IT', now()), +(7913, 'Legion of Super Heroes', 'US', now()), +(15559, 'The Milton Berle Show', 'US', now()), +(7915, 'Alter Ego', 'US', now()), +(7916, 'Room for Improvement (AU)', 'AU', now()), +(7917, 'Ham on the Street', 'US', now()), +(7918, 'Changing Rooms (AU)', 'AU', now()), +(7919, 'Shannon', 'US', now()), +(7920, 'Top 5', 'US', now()), +(7921, 'Cool McCool', 'US', now()), +(7922, 'Ciao America with Mario Batali', 'US', now()), +(7923, 'Good Food Fast with Family Circle', 'US', now()), +(7924, 'Your Hit Parade', 'US', now()), +(7925, 'A Picture of Britain', 'UK', now()), +(7926, 'Dexter', 'US', now()), +(7927, 'The Tudors', 'US', now()), +(7957, 'This American Life', 'US', now()), +(7929, 'Charlie Rose', 'US', now()), +(7930, 'Zazoo U', 'US', now()), +(7931, 'Roker on the Road', 'US', now()), +(7932, 'Rachael Ray''s Tasty Travels', 'US', now()), +(7933, 'Quick Fix Meals with Robin Miller', 'US', now()), +(7934, 'Figure 17', 'JP', now()), +(7935, 'Haunted Homes', 'UK', now()), +(7936, 'Lewis', 'UK', now()), +(7937, 'Dave Allen at Large', 'UK', now()), +(7938, 'The Sound of Musicals', 'UK', now()), +(7939, 'Inside RC', 'US', now()), +(7940, 'The Investigators (US)', 'US', now()), +(7941, 'The Brits Are Coming', 'UK', now()), +(7942, 'High Stakes Poker', 'US', now()), +(7943, 'Web Junk 20', 'US', now()), +(12334, 'Jyu Oh Sei', 'JP', now()), +(21907, 'Running in Heels', 'US', now()), +(7946, 'UFC Unleashed', 'US', now()), +(7948, 'Three of a Kind (1981)', 'UK', now()), +(7949, 'Joan Rivers: Can We Talk?', 'UK', now()), +(7950, 'Kappa Mikey', 'US', now()), +(7951, 'Sendung ohne Namen', 'AT', now()), +(15220, 'XY Factor', 'US', now()), +(7953, 'Rich Hall''s Cattle Drive', 'UK', now()), +(7954, 'Koi Kaze', 'JP', now()), +(7955, 'Teachers', 'US', now()), +(7956, 'The Underground', 'US', now()), +(7958, 'The Chronicles of Narnia', 'UK', now()), +(7959, 'Queen Millennia', 'JP', now()), +(7960, 'Judge Judy', 'US', now()), +(7961, 'Animal Park (UK)', 'UK', now()), +(7962, 'Gay Muslims', 'UK', now()), +(7963, 'Watchdog', 'UK', now()), +(7964, '''Til Death Do Us Part', 'US', now()), +(7965, 'Samurai Gun', 'JP', now()), +(7966, 'Briar & Graves', 'US', now()), +(7967, 'The Ten Commandments', 'US', now()), +(7968, 'R3', 'UK', now()), +(7970, 'Conflict', 'US', now()), +(7971, 'Take This House and Sell It', 'CA', now()), +(7972, 'Style by Jury', 'CA', now()), +(7973, 'Cash In The Attic', 'UK', now()), +(7974, 'Las Vegas Law', 'US', now()), +(7975, 'Wild at Heart', 'UK', now()), +(7976, 'BodyShock', 'UK', now()), +(7977, 'At Large With Geraldo Rivera', 'US', now()), +(7978, 'Paul McKenna Will Make You Thin', 'UK', now()), +(7979, 'Epitafios', 'AR', now()), +(7980, 'Highway Patrol', 'US', now()), +(8403, 'Darkness, Hat and Book Traveler', 'JP', now()), +(7982, 'Wandaba Style', 'JP', now()), +(7983, 'Jonathan Ross'' Asian Invasion', 'UK', now()), +(14613, 'Ripley''s Believe It or Not! (1982)', 'US', now()), +(7985, 'Top Of The Pops (US)', 'US', now()), +(7986, 'Fun House', 'UK', now()), +(7987, 'Honey and Clover', 'JP', now()), +(21098, 'Desperate To Buy', 'US', now()), +(22586, 'Parenthood (2010)', 'US', now()), +(7990, 'Friday Night Lights', 'US', now()), +(7991, 'I Pity The Fool', 'US', now()), +(7992, 'Mystery Diagnosis', 'US', now()), +(7993, 'Angel Tales', 'JP', now()), +(8003, 'Pocket Monsters', 'JP', now()), +(8004, 'Futari wa Pretty Cure', 'JP', now()), +(8005, 'H2', 'JP', now()), +(8006, 'Sadamitsu the Destroyer', 'JP', now()), +(8007, 'Paradise Kiss', 'JP', now()), +(8008, 'Peach Girl', 'JP', now()), +(8009, 'Piano (JP)', 'JP', now()), +(8010, 'Rizelmine', 'JP', now()), +(8011, 'Eureka 7 (JP)', 'JP', now()), +(8012, 'The New Adventures of Kimba the White Lion', 'JP', now()), +(8013, 'Mezzo', 'JP', now()), +(8014, 'Mahoraba ~Heartful days~', 'JP', now()), +(8015, 'Mouse', 'JP', now()), +(8016, 'Mujin Wakusei Survive', 'JP', now()), +(8017, 'Nanaka 6/17', 'JP', now()), +(8018, 'NieA_7', 'JP', now()), +(8019, 'Ninja Nonsense', 'JP', now()), +(8020, 'Otogi Zoshi', 'JP', now()), +(8021, 'Uta Kata', 'JP', now()), +(8022, 'Tactics', 'JP', now()), +(8023, 'Buggin'' with Ruud', 'NZ', now()), +(8024, 'Air Master', 'JP', now()), +(8025, 'Aka-chan to Boku', 'JP', now()), +(8026, 'What the Romans Did For Us', 'UK', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(8027, 'What the Tudors and Stuarts Did For Us', 'UK', now()), +(8028, 'What the Victorians Did For Us', 'UK', now()), +(8029, 'What the Industrial Revolution Did For Us', 'UK', now()), +(8030, 'Michael Palin - Sahara', 'UK', now()), +(8031, 'Find', 'US', now()), +(8032, 'Mr. Wizard''s World', 'US', now()), +(8033, 'The Secret Life of ...', 'US', now()), +(8034, 'Accidents Can Happen', 'UK', now()), +(8035, 'The ''70s', 'US', now()), +(8036, 'Sous Le Soleil (Saint-Tropez)', 'FR', now()), +(8037, 'The Grammys', 'US', now()), +(8038, 'Alan Clark Diaries', 'UK', now()), +(8039, 'Animation Nation', 'UK', now()), +(8040, 'Music News', 'US', now()), +(8044, 'The IT Crowd', 'UK', now()), +(8042, 'Moon Phase', 'JP', now()), +(8043, 'Baki the Grappler', 'JP', now()), +(8045, 'Westwind', 'US', now()), +(8046, 'The Tycoon', 'US', now()), +(8047, 'A.J. Wentworth, B.A.', 'UK', now()), +(8048, 'Himitsu no Akko-chan', 'JP', now()), +(8049, 'Reign: The Conqueror (US)', 'AJ', now()), +(8050, 'Starlight', 'UK', now()), +(8051, 'Angel Heart', 'JP', now()), +(8052, 'Walking The Bible', 'US', now()), +(8053, 'In Case of Emergency', 'US', now()), +(8054, 'Animal Yokocho', 'JP', now()), +(8055, 'Haversham Hall', 'US', now()), +(8312, 'The Lux Show with Rosemary Clooney', 'US', now()), +(22584, 'K2 zoekt K3', 'BE', now()), +(14796, 'The Laura Kay Show', 'UK', now()), +(8062, 'Big Town', 'US', now()), +(8063, 'The Plainclothesman', 'US', now()), +(15708, 'Inner Sanctum', 'US', now()), +(8065, 'The Sarah Silverman Program', 'US', now()), +(8066, 'Take One Museum', 'UK', now()), +(8067, 'Famous Classic Tales', 'US', now()), +(8068, 'Change the Day You Die', 'UK', now()), +(8069, 'Dark Kingdom: The Dragon King', 'US', now()), +(8070, 'Mizuiro Jidai', 'JP', now()), +(8071, 'Aquarian Age - Sign for Evolution', 'JP', now()), +(14571, 'Journey To The West', 'HK', now()), +(8073, 'Area 88', 'JP', now()), +(8074, 'Glitter', 'US', now()), +(8075, 'The Mighty Heroes', 'US', now()), +(8077, 'Planet Earth', 'UK', now()), +(8078, 'Sink Or Swim', 'UK', now()), +(8079, 'Just the Two of Us', 'UK', now()), +(8080, 'The Sun Trap', 'UK', now()), +(8081, 'Jekyll', 'UK', now()), +(8082, 'Feel The Force', 'UK', now()), +(8083, 'Petrolheads', 'UK', now()), +(22544, 'The Big Art Project', 'UK', now()), +(8086, '60 Minute Man', 'US', now()), +(8087, 'Heartburn Hotel', 'UK', now()), +(8088, 'Fame (2003)', 'US', now()), +(8089, 'Ugly Betty', 'US', now()), +(8090, 'Brothers & Sisters', 'US', now()), +(8091, 'Red & Blue', 'US', now()), +(8092, 'The Nine', 'US', now()), +(8093, 'Shrine of the Morning Mist', 'JP', now()), +(8094, 'Armored Trooper Votoms', 'JP', now()), +(8095, 'Bangers and Mash', 'UK', now()), +(8096, 'Tales From The Palaces', 'UK', now()), +(8098, 'Mercy Reef', 'US', now()), +(8099, 'The Class', 'US', now()), +(8100, 'Capital Law', 'US', now()), +(8101, 'Sex, Power, Love and Politics', 'US', now()), +(8102, 'The Winner', 'US', now()), +(15577, 'A Happy Woman', 'KR', now()), +(8104, 'Double Dare (1976)', 'US', now()), +(8106, 'Hale and Pace', 'UK', now()), +(8107, 'Trick My Truck', 'US', now()), +(22585, 'Blauw Blauw', 'NL', now()), +(8109, 'All Star Blitz', 'US', now()), +(8110, 'The $64,000 Question', 'US', now()), +(8111, 'Weird U.S.', 'US', now()), +(17096, 'Vecinos', 'MX', now()), +(8113, 'Battle B-Daman (US)', 'AJ', now()), +(8114, 'Kidnapped', 'US', now()), +(8115, 'Studio 60 on the Sunset Strip', 'US', now()), +(8116, 'Nightline', 'US', now()), +(8117, 'ABC World News', 'US', now()), +(8118, 'America''s Next Muppet', 'US', now()), +(8119, 'Bottle Fairy', 'JP', now()), +(8120, 'Game Head', 'US', now()), +(8121, 'Richard Hammond''s Five O''clock show', 'UK', now()), +(8122, 'Remote Area Nurse', 'AU', now()), +(8123, 'Blood+', 'JP', now()), +(8124, 'Manga Aesop Monogatari', 'JP', now()), +(8125, 'Sex Guide to All Creation', 'UK', now()), +(8126, 'The Source Soundlab', 'US', now()), +(14693, 'In the Cellar', 'US', now()), +(8128, 'Super Bowl', 'US', now()), +(8129, '31 Minutos', 'CL', now()), +(8131, 'Mind, Body & Kick Ass Moves', 'UK', now()), +(8132, 'The Living Planet', 'UK', now()), +(8134, 'Boys Be...', 'JP', now()), +(8135, 'Brigadoon', 'JP', now()), +(8136, 'Kill Reality', 'US', now()), +(8139, 'Bucky - The Incredible Kid', 'JP', now()), +(8140, 'Burn-Up Scramble', 'JP', now()), +(8141, 'Jericho', 'US', now()), +(8142, 'I Married Dora', 'US', now()), +(8186, 'Sam (US)', 'US', now()), +(8144, 'Play Nice', 'US', now()), +(8145, 'Smith', 'US', now()), +(8146, 'Karin', 'JP', now()), +(8147, 'He is my Master', 'JP', now()), +(8148, 'MTV Video Music Awards', 'US', now()), +(8149, 'Missing Persons Unit', 'AU', now()), +(8150, 'Rumbling Hearts', 'JP', now()), +(8151, 'Hungry Heart - Wild Striker', 'JP', now()), +(8152, 'Day Break', 'US', now()), +(8154, 'Child of Our Time: The Children''s Stories', 'UK', now()), +(8155, 'Davina', 'UK', now()), +(8156, 'Car Wars', 'UK', now()), +(8157, 'Selling Yourself', 'UK', now()), +(8158, 'How to Get Your Dream Job', 'UK', now()), +(8159, 'The Game', 'US', now()), +(8160, 'Captain Kuppa', 'JP', now()), +(8161, 'Chance! Pop Sessions', 'JP', now()), +(8163, 'The Joker''s Wild', 'US', now()), +(8164, 'Edgar and Ellen', 'US', now()), +(8165, 'John Hagee Ministries', 'US', now()), +(8166, 'ESPN Outdoors', 'US', now()), +(8167, 'Animal Jam', 'US', now()), +(8168, 'Love Lounge', 'US', now()), +(8169, 'Harbourmaster', 'US', now()), +(8170, 'Hidden Palms', 'US', now()), +(8171, 'Traveler', 'US', now()), +(8172, 'Heroes', 'US', now()), +(8173, 'Adventures Of A Jungle Boy', 'UK', now()), +(8174, 'Adventures Of The Falcon', 'US', now()), +(8175, 'The Adventures Of The Sea Hawk', 'US', now()), +(8177, 'Ну, погоди!', 'SU', now()), +(8178, 'Blockbusters (UK)', 'UK', now()), +(8179, 'The Real Hustle (UK)', 'UK', now()), +(8180, 'Chibi Maruko-chan', 'JP', now()), +(8181, 'Go!', 'US', now()), +(8182, 'Card Sharks', 'US', now()), +(8183, 'Chikyu Bouei Kazoku', 'JP', now()), +(8184, 'Disaster Masters', 'UK', now()), +(8185, 'Stepfamilies', 'UK', now()), +(22581, 'New York Goes to Work', 'US', now()), +(8188, 'Change That', 'UK', now()), +(8189, 'Up Close', 'US', now()), +(8190, 'Kommissar Rex', 'AT', now()), +(8191, 'Best of Friends', 'UK', now()), +(8192, 'Yu-Gi-Oh Duel Monsters GX!', 'JP', now()), +(8193, 'Yu-Gi-Oh! Capsule Monsters', 'US', now()), +(8195, 'Friends and Crocodiles', 'UK', now()), +(8196, '"A" for Andromeda (2006)', 'UK', now()), +(8197, 'NFL On FOX', 'US', now()), +(8198, 'The NFL Today', 'US', now()), +(8199, 'The Chatterley Affair', 'UK', now()), +(8200, 'Gideon''s Daughter', 'UK', now()), +(8201, 'Breaking the Ice', 'UK', now()), +(8202, 'Captain Tsubasa', 'JP', now()), +(8203, 'Side Effects', 'CA', now()), +(8204, 'World Series', 'US', now()), +(8205, 'One Piece (JP)', 'JP', now()), +(8206, 'Public Eye (UK)', 'UK', now()), +(8207, 'Private Eye', 'US', now()), +(8208, 'Megastructures (UK)', 'UK', now()), +(8209, 'Jon Culshaw''s Commercial Breakdown', 'UK', now()), +(8210, 'Classic Albums', 'UK', now()), +(8211, 'Rail Cops', 'UK', now()), +(8212, 'Girl Cops', 'UK', now()), +(8213, 'Inside Out London', 'UK', now()), +(8214, 'Beauty and the Geek (UK)', 'UK', now()), +(8215, 'Dancougar - Super Beast Machine God', 'JP', now()), +(8216, 'Snuff Box', 'UK', now()), +(8217, 'SMTV Live', 'UK', now()), +(8218, 'Power', 'US', now()), +(8219, 'Cinderella Boy', 'JP', now()), +(8220, 'Anatomy Of Crime', 'US', now()), +(8221, 'The ACLU Freedom Files', 'US', now()), +(8222, 'Masterminds', 'US', now()), +(8223, 'Hollywood Heat', 'US', now()), +(8224, 'Nick Max', 'MX', now()), +(15207, 'The Calfé', 'CA', now()), +(8226, 'Happy Tree Friends', 'US', now()), +(8227, 'Yu-Gi-Oh Duel Monsters', 'JP', now()), +(8228, 'Clamp School', 'JP', now()), +(8229, 'Julie', 'US', now()), +(8230, 'Cosmowarrior Zero', 'JP', now()), +(8231, 'Future GPX Cyber Formula', 'JP', now()), +(8232, 'The Worst Week of My Life (US)', 'US', now()), +(8233, 'Drift', 'US', now()), +(10307, 'First Love (US)', 'US', now()), +(8235, 'Police Surgeon', 'UK', now()), +(14756, 'Ghost Hunt', 'JP', now()), +(8237, 'The Biggest Loser (AU)', 'AU', now()), +(8238, 'The Biggest Loser (UK)', 'UK', now()), +(8239, 'Maddigan''s Quest', 'NZ', now()), +(8240, 'Unan1mous (US)', 'US', now()), +(8241, 'Elvis', 'US', now()), +(15687, 'The Baby Borrowers (US)', 'US', now()), +(8243, 'I Didn''t Divorce My Kids', 'UK', now()), +(8244, 'Bill Oddie''s How to Watch Wildlife', 'UK', now()), +(23058, 'Eigen Huis & Tuin', 'NL', now()), +(8246, 'Parental Control', 'US', now()), +(8247, 'The Adventures of Big Handsome Guy and His Little Friend', 'US', now()), +(8248, 'The 12th Man', 'US', now()), +(8249, 'Vanished', 'US', now()), +(8250, 'Men in Trees', 'US', now()), +(8251, 'Ultra', 'US', now()), +(8252, 'Strangers (CA)', 'CA', now()), +(8253, 'Lingerie Bowl', 'US', now()), +(8254, 'Dan Doh!!', 'JP', now()), +(8255, 'Great Dangaioh', 'JP', now()), +(8256, 'Demon Lord Dante', 'JP', now()), +(8257, 'The Tony Randall Show', 'US', now()), +(8258, 'Frontline (US)', 'US', now()), +(8259, 'Doodlez', 'CA', now()), +(8260, 'The Armstrongs', 'UK', now()), +(8261, 'The Apprentice: You''re Fired!', 'UK', now()), +(8262, 'Daphne in the Brilliant Blue', 'JP', now()), +(22265, 'Get Your Face on with Napoleon Perdis', 'US', now()), +(8264, 'La Triviata', 'UK', now()), +(8265, 'Mahou Shoujo Tai Arusu', 'JP', now()), +(8266, 'The Rose of Versailles', 'JP', now()), +(8267, 'Julia Jekyll and Harriet Hyde', 'UK', now()), +(8268, 'Facing The Truth', 'UK', now()), +(8269, 'Tory! Tory! Tory!', 'UK', now()), +(34187, 'La Mujer del Vendaval', 'MX', now()), +(8271, 'Why Can''t I Be You?', 'US', now()), +(8272, 'Orange Playlist', 'UK', now()), +(8273, '30 Minutes', 'UK', now()), +(8274, 'Built for the Kill', 'UK', now()), +(8278, 'Diamond Daydreams', 'JP', now()), +(8276, 'Soccer AM''s All Sports Show', 'UK', now()), +(8279, 'Anthea Turner: Perfect Housewife', 'UK', now()), +(8280, 'Matt''s Million', 'UK', now()), +(8281, 'Planet''s Funniest Animals', 'UK', now()), +(8282, 'Dancing On Ice Exclusive', 'UK', now()), +(8283, 'Songs of Praise', 'UK', now()), +(8284, 'Going Cold Turkey', 'UK', now()), +(8285, 'Underfunded', 'US', now()), +(8286, 'Tarrant on TV', 'UK', now()), +(8287, 'Class of the Titans', 'CA', now()), +(8288, 'Mahoujin Guru Guru', 'JP', now()), +(16583, 'Die Rettungsflieger', 'DE', now()), +(8290, 'Newark Evening News', 'US', now()), +(8291, 'Winky Dink and You', 'US', now()), +(8292, 'Clever', 'AU', now()), +(8293, 'Bridezillas', 'US', now()), +(8294, 'Skating''s Next Star', 'US', now()), +(8295, 'Two Funny: Cotter and Louise', 'US', now()), +(8296, 'Platinum Weddings', 'US', now()), +(8297, 'Sara (1976)', 'US', now()), +(8298, 'Lux Playhouse', 'US', now()), +(8299, 'Lotsa Luck', 'US', now()), +(8300, 'Harry''s Girls', 'US', now()), +(8301, 'Dreams', 'US', now()), +(8302, 'Blacke''s Magic', 'US', now()), +(8303, 'The Lineup', 'US', now()), +(8304, 'Ken Dodd''s World of Laughter', 'UK', now()), +(8305, 'Kate', 'UK', now()), +(8306, 'The Long Hot Summer', 'US', now()), +(8307, 'Learned Friends', 'AU', now()), +(8308, 'Loose Women', 'UK', now()), +(8309, 'Liquid News', 'UK', now()), +(8310, 'Love Street', 'US', now()), +(8311, 'Kiko Senki Dragonar', 'JP', now()), +(13635, 'Tomorrow''s World', 'UK', now()), +(8314, 'Love Bytes', 'US', now()), +(8315, 'Life of Shakespeare', 'UK', now()), +(8316, 'Life Begins at Forty (UK)', 'UK', now()), +(8317, 'The Ken Dodd Show', 'UK', now()), +(8318, 'Ken Dodd and the Diddymen', 'UK', now()), +(8319, 'Ken Dodd In ''Funny You Should Say That''', 'UK', now()), +(8320, 'Ken Dodd''s Showbiz', 'UK', now()), +(8321, 'Crimewatch UK', 'UK', now()), +(8322, 'Psych', 'US', now()), +(8323, 'Family Fortunes', 'UK', now()), +(8326, 'Chantelle: Living The Dream', 'UK', now()), +(8325, 'The Big Break', 'US', now()), +(8327, 'Lytton''s Diary', 'UK', now()), +(8328, 'Laura the Prairie Girl', 'JP', now()), +(8329, 'The Lakes', 'UK', now()), +(8330, 'Life Isn''t All Ha Ha Hee Hee', 'UK', now()), +(8331, 'Thin Ice', 'UK', now()), +(8332, 'Today With Des & Mel', 'UK', now()), +(8333, 'I Want That House', 'UK', now()), +(8334, 'The Dark Island', 'UK', now()), +(8335, 'Bus Stop (US)', 'US', now()), +(8336, 'Journey to the Unknown', 'UK', now()), +(8337, 'Dan Danger', 'US', now()), +(8338, 'A.M. @ BET', 'US', now()), +(8339, 'ABC Funfit', 'US', now()), +(8340, 'Access Granted', 'US', now()), +(8341, 'Dear Mother...Love Albert', 'UK', now()), +(23103, 'The Hostage Tapes', 'UK', now()), +(8344, 'October Road', 'US', now()), +(8346, 'Faceless', 'US', now()), +(8347, 'Raines', 'US', now()), +(8348, 'Bondi Rescue', 'AU', now()), +(8349, 'Say What? Karaoke', 'US', now()), +(8350, 'Aesop and Son', 'US', now()), +(8351, 'Adventures with Kanga Roddy', 'US', now()), +(8352, 'B4', 'UK', now()), +(8353, 'B. Smith Style', 'US', now()), +(22594, 'Pieta', 'PH', now()), +(8355, 'Call My Bluff (UK)', 'UK', now()), +(8356, 'Dads', 'US', now()), +(8357, 'Encyclopedia Brown', 'US', now()), +(8358, 'The Real Dad''s Army', 'UK', now()), +(8359, 'FANatic', 'US', now()), +(8360, 'Location Location Location', 'UK', now()), +(8361, 'Harriet the Spy', 'US', now()), +(8362, 'Down to Earth (1995)', 'UK', now()), +(8363, 'If You See God, Tell Him', 'UK', now()), +(8364, 'Punch Drunk', 'UK', now()), +(8365, 'Oh, Doctor Beeching!', 'UK', now()), +(8366, 'Don''t Wait Up', 'UK', now()), +(8367, 'Every Silver Lining', 'UK', now()), +(8368, 'Executive Stress', 'UK', now()), +(8369, 'Get Back', 'UK', now()), +(8370, 'Ain''t Misbehavin''', 'UK', now()), +(8371, 'All Night Long', 'UK', now()), +(8372, 'An Actor''s Life For Me', 'UK', now()), +(8373, 'Atletico Partick', 'UK', now()), +(8374, 'Bloomin'' Marvellous', 'UK', now()), +(8375, 'Honey for Tea', 'UK', now()), +(8376, 'Luv', 'UK', now()), +(8377, 'Mrs. Merton and Malcolm', 'UK', now()), +(8378, 'Nice Day at the Office', 'UK', now()), +(8379, 'Pilgrim''s Rest', 'UK', now()), +(8380, 'Safe And Sound', 'UK', now()), +(8381, 'Side By Side', 'UK', now()), +(22580, 'Recruits', 'AU', now()), +(8383, 'Spark', 'UK', now()), +(8384, 'Take a Letter Mr. Jones', 'UK', now()), +(8385, 'Taking the Floor', 'UK', now()), +(8386, 'Tears Before Bedtime', 'UK', now()), +(8387, 'Zoids Genesis', 'JP', now()), +(8388, 'Zoids/Zero (US)', 'AJ', now()), +(8389, 'Disney 411', 'US', now()), +(8390, 'The Creatives', 'UK', now()), +(8391, 'Grownups (UK)', 'UK', now()), +(8392, 'The Tales Of Para Handy', 'UK', now()), +(8393, 'TV to go', 'UK', now()), +(8394, 'Starring Boris Karloff', 'US', now()), +(8395, 'Velvet Soup', 'UK', now()), +(8396, 'Masters of Science Fiction', 'US', now()), +(8397, 'The Bart and the Bounder', 'UK', now()), +(8398, 'Jimmy''s Farm', 'UK', now()), +(8399, 'Zipang', 'JP', now()), +(8400, 'Hockey Night In Canada', 'CA', now()), +(8401, 'Charlie & Co.', 'US', now()), +(8404, 'Run for Glory', 'UK', now()), +(8405, 'Kick Ass Miracles', 'UK', now()), +(8406, 'Apartment #2F', 'US', now()), +(8407, 'Arnie', 'US', now()), +(8408, 'The Art Maker', 'US', now()), +(8409, 'Attitudes', 'US', now()), +(8411, 'Standoff', 'US', now()), +(8412, 'Baffle', 'US', now()), +(8413, 'The Baseball Bunch (1982)', 'US', now()), +(8414, 'Cheaters', 'US', now()), +(8415, 'Rose Red', 'US', now()), +(8416, 'WWE A.M. Raw', 'US', now()), +(8417, 'The Chelsea Handler Show', 'US', now()), +(8418, 'Yawara! A Fashionable Judo Girl', 'JP', now()), +(8419, 'Big Bag', 'US', now()), +(15064, 'Ray Mears'' Wild Food', 'UK', now()), +(8421, 'Yoiko', 'JP', now()), +(8422, 'Yugo the Negotiator', 'JP', now()), +(8423, 'The Snow Queen', 'JP', now()), +(8424, 'Yume no Crayon Oukoku', 'JP', now()), +(8425, 'Three Up, Two Down', 'UK', now()), +(8426, 'Bad Boys (UK)', 'UK', now()), +(8427, 'Brotherly Love (UK)', 'UK', now()), +(8428, 'Don''t Tell Father (1992)', 'UK', now()), +(8429, 'Love On A Branch Line', 'UK', now()), +(8430, 'No Place Like Home', 'UK', now()), +(8431, 'Oh, Father!', 'UK', now()), +(8432, 'Once Upon A Time In The North', 'UK', now()), +(8433, 'Only When I Laugh', 'UK', now()), +(8434, 'Streets Apart', 'UK', now()), +(8435, 'The Two Of Us', 'UK', now()), +(8436, 'Us Girls', 'UK', now()), +(8437, 'Attention Scum', 'UK', now()), +(8438, 'Brass', 'UK', now()), +(8439, 'Swiebertje', 'NL', now()), +(8440, 'Floris', 'NL', now()), +(8441, 'Trailer Fabulous', 'US', now()), +(8442, 'Little People, Big World', 'US', now()), +(8443, 'Brave King Gaogaigar', 'JP', now()), +(8444, 'Yuusha Tokkyuu Might Gaine', 'JP', now()), +(8445, 'Xenosaga: The Animation', 'JP', now()), +(8446, 'Mirmo Zibang!', 'JP', now()), +(8447, 'Donald''s Quack Attack', 'US', now()), +(15581, 'The Museum', 'UK', now()), +(8449, 'Futari wa Pretty Cure Max Heart', 'JP', now()), +(8450, 'Oku-sama wa Mahou Shoujo', 'JP', now()), +(8452, 'Wild Arms - Twilight Venom', 'JP', now()), +(8453, 'I Want, I Want', 'UK', now()), +(8454, 'Mayo', 'UK', now()), +(8455, '20 Questions', 'US', now()), +(8456, 'Help Me Help You', 'US', now()), +(8457, 'A House Divided', 'US', now()), +(8458, 'Learning to Fly', 'US', now()), +(8459, 'Notes From the Underbelly', 'US', now()), +(8460, 'Our Thirties', 'US', now()), +(8462, 'High Bar', 'US', now()), +(8463, 'Women of a Certain Age', 'US', now()), +(8464, 'Breadwinners', 'US', now()), +(8465, 'Just a Phase', 'US', now()), +(8466, 'Mud Show', 'US', now()), +(18771, 'Snaps', 'US', now()), +(8468, 'Juu Senshi Garukiba', 'JP', now()), +(8469, 'Wind: A Breath of Heart', 'JP', now()), +(8470, 'Windy Tales', 'JP', now()), +(8471, 'Inseparable', 'US', now()), +(8472, 'The Way', 'US', now()), +(8473, 'Welcome to the Jungle Gym', 'US', now()), +(8474, '''Til Death', 'US', now()), +(8475, 'Union Jackass', 'US', now()), +(8476, 'Elmo''s World', 'US', now()), +(8477, 'W~Wish', 'JP', now()), +(8478, 'Triumph the Insult Comic Dog', 'US', now()), +(8479, 'Comedy Connections', 'UK', now()), +(8482, 'Choudenji Machine Voltes V', 'JP', now()), +(8483, 'Leaving', 'UK', now()), +(8484, 'The Crystal Maze', 'UK', now()), +(8485, 'The Enigma Files', 'UK', now()), +(8486, 'Kessler', 'UK', now()), +(8487, 'Gamesmaster', 'UK', now()), +(8488, 'Firehouse', 'US', now()), +(8489, 'Invincible', 'US', now()), +(8490, 'Shark', 'US', now()), +(8491, 'Freak Show', 'US', now()), +(8492, 'Virtua Fighter', 'JP', now()), +(8493, 'Maria-sama ga Miteru', 'JP', now()), +(8494, 'Justice (2006)', 'US', now()), +(8495, 'The Singles Table', 'US', now()), +(8496, 'Haskett''s Chance', 'US', now()), +(12757, 'Five Fingers', 'US', now()), +(8498, 'Ukool', 'UK', now()), +(8499, 'Jackpot', 'US', now()), +(15524, 'Weekend Watchdog', 'UK', now()), +(8501, 'Class of 3000', 'US', now()), +(8502, 'Dirt', 'US', now()), +(8503, 'Filthy Gorgeous', 'US', now()), +(8504, 'Violinist of Hamelin', 'JP', now()), +(8505, 'Video Senshi Lezarion', 'JP', now()), +(8507, 'Now, Take My Wife', 'UK', now()), +(8508, 'Oh, Brother!', 'UK', now()), +(8509, 'A Perfect State', 'UK', now()), +(8510, 'The 2004 Summer Olympics', 'GR', now()), +(8511, 'The Big Bang Theory', 'US', now()), +(8512, 'Partners (UK)', 'UK', now()), +(8513, 'Room Service', 'UK', now()), +(8514, 'The Plank', 'UK', now()), +(8515, 'Anyone for Denis?', 'UK', now()), +(8516, 'Kenny Everett Video Show', 'UK', now()), +(8517, 'The Steam Video Company', 'UK', now()), +(8518, 'Michael Bentine''s Potty Time', 'UK', now()), +(8519, 'This Week (UK)', 'UK', now()), +(8520, 'TV Eye', 'UK', now()), +(8521, 'The World at War', 'UK', now()), +(8522, 'Unknown Chaplin', 'UK', now()), +(8523, 'Looks Familiar', 'UK', now()), +(8524, 'Name That Tune (UK)', 'UK', now()), +(8525, 'Opportunity Knocks (UK)', 'UK', now()), +(8526, 'Eikoku Koi Monogatari Emma', 'JP', now()), +(8527, 'Zettai Shonen', 'JP', now()), +(8528, 'Ace wo Nerae', 'JP', now()), +(8529, 'The $10,000 Pyramid', 'US', now()), +(8530, 'Pros vs. Joes', 'US', now()), +(8531, 'Waterloo Road', 'UK', now()), +(8532, 'Give Us A Clue', 'UK', now()), +(8533, 'Alpha Moms', 'US', now()), +(8534, 'Meet Corliss Archer', 'US', now()), +(8535, 'Gakuen Alice', 'JP', now()), +(8536, 'The Chaser’s War on Everything', 'AU', now()), +(8537, 'Patapata Hikousen no Bouken', 'JP', now()), +(8538, 'R.I.S. Police scientifique', 'FR', now()), +(8539, 'Scandal (ZA)', 'ZA', now()), +(8540, 'FOX Saturday Baseball', 'US', now()), +(8541, 'Black Cat', 'JP', now()), +(8542, 'Fate/stay night', 'JP', now()), +(8543, 'Mysteries Of The Bible', 'US', now()), +(8544, 'Paparazzi', 'UK', now()), +(8545, 'My Appalling School Report', 'UK', now()), +(8546, 'Agatha Christie no Meitantei Poirot to Marple', 'JP', now()), +(8547, 'Time', 'UK', now()), +(8548, 'Ai to Yuuki no Pig Girl Tonde Buurin', 'JP', now()), +(17755, 'Get Stuffed', 'UK', now()), +(8550, 'Rec', 'JP', now()), +(8551, 'Time Team', 'UK', now()), +(8552, 'Aishiteruze Baby', 'JP', now()), +(8553, 'The Dudley Do-Right Show', 'US', now()), +(8554, 'Action Blast', 'US', now()), +(8555, 'Koukaku Kidoutai: Stand Alone Complex', 'JP', now()), +(8556, 'I Love Toys', 'US', now()), +(8557, 'Brief Encounters', 'UK', now()), +(8558, 'Android Ana Maico 2010', 'JP', now()), +(8559, 'Weather Center', 'US', now()), +(8560, 'First Outlook', 'US', now()), +(8561, 'Your Weather Today', 'US', now()), +(8562, 'Day Planner', 'US', now()), +(8563, 'Afternoon Outlook', 'US', now()), +(8564, 'PM Edition', 'US', now()), +(8565, 'Evening Edition', 'US', now()), +(8566, 'Overnight Outlook', 'US', now()), +(8567, 'Roots (US)', 'US', now()), +(8568, 'Cry Wolf', 'UK', now()), +(8569, 'Fish (UK)', 'UK', now()), +(8570, 'The Micallef Program', 'AU', now()), +(8571, 'Sousei no Aquarion', 'JP', now()), +(8572, 'Pulse', 'US', now()), +(8573, 'The Family Man (UK)', 'UK', now()), +(8574, 'George of the Jungle', 'US', now()), +(14787, 'Gadzooks! It''s All Happening''', 'UK', now()), +(8576, 'Beat the Clock', 'US', now()), +(8577, 'MTV''s The 70s House', 'US', now()), +(8578, 'Street Smarts', 'US', now()), +(8579, 'Watch this Space', 'UK', now()), +(8580, 'The Afternoon Play', 'UK', now()), +(8581, 'Fortunes of War', 'UK', now()), +(8595, 'Off the Wall', 'US', now()), +(8583, 'Number 10', 'UK', now()), +(8584, 'Shakespeare Lives!', 'UK', now()), +(8585, 'Screaming', 'UK', now()), +(8586, 'Searching', 'UK', now()), +(8587, 'Seconds Out', 'UK', now()), +(8588, 'A Sharp Intake Of Breath', 'UK', now()), +(8589, 'Spring And Autumn', 'UK', now()), +(8590, 'Spy Trap', 'UK', now()), +(8591, 'Wings (UK)', 'UK', now()), +(8592, 'White Hunter', 'UK', now()), +(8593, 'Split Ends', 'UK', now()), +(8594, 'Aria', 'JP', now()), +(8596, 'Parappa the Rapper', 'JP', now()), +(8597, 'Answer Yes or No', 'US', now()), +(8598, 'Appointment with Destiny', 'US', now()), +(8599, 'Around the World with Orson Welles', 'UK', now()), +(8600, 'Art Linkletter''s House Party', 'US', now()), +(8601, 'Arthur Godfrey''s Talent Scouts', 'US', now()), +(8602, 'Arthur Godfrey and His Friends', 'US', now()), +(8603, 'Arthur Murray Party', 'US', now()), +(8604, 'The George Jessel Show', 'US', now()), +(8605, 'Take My Wife...', 'UK', now()), +(8606, 'Tandoori Nights', 'UK', now()), +(8607, 'Terry And Julian', 'UK', now()), +(8608, 'Terry And June', 'UK', now()), +(8609, 'That''s Love', 'UK', now()), +(8610, 'That''s My Boy', 'UK', now()), +(8611, 'Face the Family', 'US', now()), +(8612, 'Speed Racer 2000', 'JP', now()), +(8613, 'There Comes A Time...', 'UK', now()), +(8614, 'Thick As Thieves', 'UK', now()), +(8615, 'Third Time Lucky', 'UK', now()), +(8616, 'Rouge Raiders', 'UK', now()), +(8617, 'Three Live Wires', 'UK', now()), +(8618, 'Time After Time', 'UK', now()), +(8619, 'Time Of My Life', 'UK', now()), +(8620, 'Tom, Dick And Harriet', 'UK', now()), +(8621, 'Too Much Sun', 'UK', now()), +(8622, 'A Touch Of Spice', 'UK', now()), +(8623, 'BBC-3', 'UK', now()), +(8624, 'The Train Now Standing', 'UK', now()), +(8625, 'The Paul Hogan Show', 'AU', now()), +(8626, 'Trouble In Mind', 'UK', now()), +(8627, 'The Trouble With Harry', 'UK', now()), +(8628, 'Affairs Of The Heart', 'UK', now()), +(8629, 'Alcock And Gander', 'UK', now()), +(8630, 'Alexander The Greatest', 'UK', now()), +(8631, 'Alfresco', 'UK', now()), +(8632, 'All Our Saturdays', 'UK', now()), +(8633, 'And Mother Makes Three', 'UK', now()), +(8634, 'And Mother Makes Five', 'UK', now()), +(8635, 'The Army Game', 'UK', now()), +(8636, 'The Arthur Haynes Show', 'UK', now()), +(8637, 'Backs To The Land', 'UK', now()), +(8638, 'Ashita no Nadja', 'JP', now()), +(8639, 'Barney Is My Darling', 'UK', now()), +(8640, 'The Bed-Sit Girl', 'UK', now()), +(8641, 'Beggar My Neighbour', 'UK', now()), +(8642, 'Beryl''s Lot', 'UK', now()), +(8643, 'Best Of Enemies', 'UK', now()), +(8644, 'The Best Things In Life', 'UK', now()), +(8645, 'Big Boy Now!', 'UK', now()), +(8646, 'Big Jim And The Figaro Club', 'UK', now()), +(8647, 'The Big Noise', 'UK', now()), +(8648, 'Shine on Harvey Moon', 'UK', now()), +(8649, 'Billy Liar', 'UK', now()), +(8650, 'Birds On The Wing', 'UK', now()), +(8651, 'A Bit Of A Do', 'UK', now()), +(8652, 'Blandings Castle', 'UK', now()), +(8653, 'Blue Heaven', 'UK', now()), +(8654, 'Bold As Brass', 'UK', now()), +(8655, 'Bootsie And Snudge', 'UK', now()), +(8656, 'Both Ends Meet', 'UK', now()), +(8657, 'Bottle Boys', 'UK', now()), +(8658, 'The Bright Side', 'UK', now()), +(8659, 'The Boys From The Bush', 'UK', now()), +(8660, 'Broad And Narrow', 'UK', now()), +(8661, 'Broaden Your Mind', 'UK', now()), +(8662, 'Brothers In Law', 'UK', now()), +(8663, 'The Brothers McGregor', 'UK', now()), +(8664, 'Bulldog Breed', 'UK', now()), +(8665, 'Mister Peepers', 'US', now()), +(8666, 'Star Tonight', 'US', now()), +(8667, 'The Secret Agent', 'UK', now()), +(8668, 'Nostromo', 'UK', now()), +(8669, 'Les Brigades du Tigre', 'FR', now()), +(8670, 'More, Patience', 'US', now()), +(13074, 'Two Twisted', 'AU', now()), +(8672, '52 Fights', 'US', now()), +(8673, 'Julie Reno, Bounty Hunter', 'US', now()), +(8675, 'Southern Comfort (FOX)', 'US', now()), +(8676, 'Avenger', 'JP', now()), +(8677, 'AWOL - Absent WithOut Leave', 'JP', now()), +(8678, 'Full Metal Panic! The Second Raid', 'JP', now()), +(8679, 'Can We Get On Now, Please?', 'UK', now()), +(8680, 'Chalk And Cheese', 'UK', now()), +(8681, 'Chance In A Million', 'UK', now()), +(8682, 'Chintz', 'UK', now()), +(8683, 'Citizen James', 'UK', now()), +(8684, 'City Lights', 'UK', now()), +(8685, 'The Clairvoyant', 'UK', now()), +(8686, 'A Class By Himself', 'UK', now()), +(8687, 'The Climber', 'UK', now()), +(8688, 'Cockles', 'UK', now()), +(8689, 'Colonel Trumper''s Private War', 'UK', now()), +(8690, 'Pushing Up Daisies', 'UK', now()), +(8691, 'Coming Home', 'UK', now()), +(8692, 'Comrade Dad', 'UK', now()), +(8693, 'Conjugal Rites', 'UK', now()), +(8694, 'Constant Hot Water', 'UK', now()), +(8695, 'Coppers End', 'UK', now()), +(8696, 'The Corner House', 'UK', now()), +(8697, 'Corrigan Blake', 'UK', now()), +(8698, 'Cuffy', 'UK', now()), +(8699, 'Cowboys', 'UK', now()), +(8700, 'The Culture Vultures', 'UK', now()), +(8701, 'The Growing Pains Of PC Penrose', 'UK', now()), +(8702, 'Curry And Chips', 'UK', now()), +(8703, 'The Gaffer', 'UK', now()), +(8704, 'A Gentleman''s Club', 'UK', now()), +(8705, 'Good Night And God Bless', 'UK', now()), +(8706, 'Happy Ever After', 'UK', now()), +(8707, 'George And The Dragon', 'UK', now()), +(8708, 'Gert And Daisy', 'UK', now()), +(8709, 'The Gingerbread Girl', 'UK', now()), +(8710, 'Girls About Town', 'UK', now()), +(8711, 'The Glamour Girls', 'UK', now()), +(8712, 'The Glums', 'UK', now()), +(8713, 'The Gnomes Of Dulwich', 'UK', now()), +(8714, 'Good Girl', 'UK', now()), +(8715, 'Rosie', 'UK', now()), +(8716, 'Grundy', 'UK', now()), +(8717, 'Haggard', 'UK', now()), +(8718, 'Hallelujah!', 'UK', now()), +(8719, 'The Happy Apple', 'UK', now()), +(8720, 'Hark At Barker', 'UK', now()), +(8721, 'Harry Worth', 'UK', now()), +(8722, 'Have I Got You ... Where You Want Me?', 'UK', now()), +(8723, 'Hell''s Bells', 'UK', now()), +(8724, 'Hello Cheeky', 'UK', now()), +(8725, 'The Hello Goodbye Man', 'UK', now()), +(8726, 'Help! (UK)', 'UK', now()), +(8727, 'Help', 'UK', now()), +(8728, 'Her Majesty''s Pleasure', 'UK', now()), +(8729, 'High And Dry', 'UK', now()), +(8730, 'High Street Blues', 'UK', now()), +(8731, 'Hilary', 'UK', now()), +(8732, 'His Lordship Entertains', 'UK', now()), +(8733, 'His And Hers', 'UK', now()), +(8734, 'HMS Paradise', 'UK', now()), +(8735, 'Holding The Baby (UK)', 'UK', now()), +(8736, 'Holding The Fort', 'UK', now()), +(8737, 'The Home Front', 'UK', now()), +(8738, 'Home James!', 'UK', now()), +(8739, 'Hope It Rains', 'UK', now()), +(8740, 'Hotel Imperial', 'UK', now()), +(8741, 'How''s Your Father?', 'UK', now()), +(8742, 'Hugh And I', 'UK', now()), +(8743, 'Hugh And I Spy', 'UK', now()), +(8744, 'V.I.P. Schaukel', 'DE', now()), +(8745, 'Wünsch Dir Was', 'DE', now()), +(8746, 'The Bell Telephone Hour', 'US', now()), +(8747, 'The Merv Griffin Show', 'US', now()), +(8748, 'The Railway Children (1951)', 'UK', now()), +(8749, 'The Railway Children (1957)', 'UK', now()), +(8750, 'Yus My Dear', 'UK', now()), +(8751, 'Young, Gifted And Broke', 'UK', now()), +(8752, 'Young At Heart', 'UK', now()), +(8753, 'Yes - Honestly', 'UK', now()), +(8754, 'Ukridge', 'UK', now()), +(8755, 'Up Rising', 'UK', now()), +(8756, 'Test Drive My Girlfriend', 'UK', now()), +(8757, 'Pocket Dragon Adventures', 'UK', now()), +(8758, 'I Didn''t Know You Cared', 'UK', now()), +(8759, 'I Thought You''d Gone', 'UK', now()), +(8760, 'I Woke Up One Morning', 'UK', now()), +(8761, 'If It Moves, File It', 'UK', now()), +(8762, 'If The Crown Fits...', 'UK', now()), +(8763, 'In Exile', 'UK', now()), +(8764, 'In For A Penny', 'UK', now()), +(8765, 'The Incredible Mr Tanner', 'UK', now()), +(8766, 'Inside George Webley', 'UK', now()), +(8767, 'It Takes A Worried Man', 'UK', now()), +(8768, 'It''s A Square World', 'UK', now()), +(8769, 'It''s Awfully Bad For Your Eyes, Darling', 'UK', now()), +(8770, 'It''s Murder. But Is It Art?', 'UK', now()), +(8771, 'Maggie And Her', 'UK', now()), +(8772, 'The Magnificent Evans', 'UK', now()), +(8773, 'The Management', 'UK', now()), +(8774, 'Mann''s Best Friends', 'UK', now()), +(8775, 'The Many Wives Of Patrick', 'UK', now()), +(8776, 'Marjorie And Men', 'UK', now()), +(8777, 'Marriage Lines', 'UK', now()), +(8778, 'Me Mammy', 'UK', now()), +(8779, 'Meet The Champ', 'UK', now()), +(8780, 'Meet The Wife', 'UK', now()), +(8781, 'Men Of Affairs', 'UK', now()), +(8782, 'Mess Mates', 'UK', now()), +(8783, 'The Misfit', 'UK', now()), +(8784, 'Misfits', 'UK', now()), +(8785, 'Misleading Cases', 'UK', now()), +(8786, 'Miss Jones And Son', 'UK', now()), +(8787, 'The Mistress', 'UK', now()), +(8788, 'Mixed Blessings', 'UK', now()), +(8789, 'Mog', 'UK', now()), +(8790, 'The More We Are Together', 'UK', now()), +(8791, 'Mornin'' Sarge', 'UK', now()), +(8792, 'Mother''s Ruin', 'UK', now()), +(8793, 'Moving', 'UK', now()), +(8794, 'Mr Aitch', 'UK', now()), +(8795, 'Mr Big', 'UK', now()), +(8796, 'Mr Digby, Darling', 'UK', now()), +(8797, 'Mr John Jorrocks', 'UK', now()), +(8798, 'Mum''s Boys', 'UK', now()), +(8799, 'My Brother''s Keeper', 'UK', now()), +(8800, 'My Good Friend', 'UK', now()), +(8801, 'My Good Woman', 'UK', now()), +(8802, 'My Honourable Mrs', 'UK', now()), +(8803, 'My Name Is Harry Worth', 'UK', now()), +(8804, 'My Old Man', 'UK', now()), +(8805, 'My Husband And I (1987)', 'UK', now()), +(8806, 'My Son Reuben', 'UK', now()), +(8807, 'My Wife Next Door', 'UK', now()), +(8808, 'My Wonderful Life (UK)', 'UK', now()), +(8809, 'The Nesbitts Are Coming', 'UK', now()), +(8810, 'Never A Cross Word', 'UK', now()), +(8811, 'Never Say Die (1987)', 'UK', now()), +(8812, 'Never Say Die (1970)', 'UK', now()), +(8813, 'Front Row Center', 'US', now()), +(8814, 'Bratz', 'US', now()), +(8815, 'Nice Work', 'UK', now()), +(8816, 'Nights', 'UK', now()), +(8817, 'The Nineteenth Hole', 'UK', now()), +(8818, 'No - That''s Me Over Here!', 'UK', now()), +(8819, 'No Appointment Necessary', 'UK', now()), +(8820, 'Tender is the Night', 'US', now()), +(8821, 'No Frills', 'UK', now()), +(8822, 'No Problem!', 'UK', now()), +(8823, 'Nobody''s Perfect', 'US', now()), +(8824, 'Not With A Bang', 'UK', now()), +(8825, 'Now And Then', 'UK', now()), +(8826, 'Old Boy Network', 'UK', now()), +(8827, 'Now Look Here...', 'UK', now()), +(8828, 'Oh Happy Band!', 'UK', now()), +(8829, 'Oh No - It''s Selwyn Froggitt', 'UK', now()), +(8830, 'The Old Campaigner', 'UK', now()), +(8831, 'On The House', 'UK', now()), +(8832, 'One For The Road', 'UK', now()), +(8833, 'The Optimist', 'UK', now()), +(8834, 'The Other ''Arf', 'UK', now()), +(8835, 'The Other One', 'UK', now()), +(8836, 'Our House', 'UK', now()), +(8837, 'Our Man At St Mark''s', 'UK', now()), +(8838, 'Over The Rainbow (UK)', 'UK', now()), +(8839, 'Abigail And Roger', 'UK', now()), +(8840, 'The Airbase', 'UK', now()), +(8841, 'Andy Capp', 'UK', now()), +(8842, 'The Artful Dodger', 'UK', now()), +(8843, 'The Victoria''s Secret Fashion Show', 'US', now()), +(8844, 'The Arthur Askey Show (1961)', 'UK', now()), +(8845, 'The Arthur Askey Show (1959)', 'UK', now()), +(8846, 'Arthur''s Treasured Volumes', 'UK', now()), +(8847, 'B-And-B', 'UK', now()), +(8848, 'The Ballyskillen Opera House', 'UK', now()), +(8849, 'Danger: Marmalade at Work', 'UK', now()), +(8850, 'Dawson''s Weekly', 'UK', now()), +(8851, 'Dead Ernest', 'UK', now()), +(8852, 'Dear Ladies', 'UK', now()), +(8853, 'Devenish', 'UK', now()), +(8854, 'The Dick Emery Show', 'UK', now()), +(8855, 'The Dickie Henderson Show (1968)', 'UK', now()), +(8856, 'Divided We Stand', 'UK', now()), +(8857, 'Doctor At Large', 'UK', now()), +(8858, 'Doctor In Charge', 'UK', now()), +(8859, 'Doctor At Sea', 'UK', now()), +(8860, 'Doctor On The Go', 'UK', now()), +(8861, 'Doctor At The Top', 'UK', now()), +(8862, 'Doctors'' Daughters', 'UK', now()), +(8863, 'Dogfood Dan And The Carmarthen Cowboy', 'UK', now()), +(8864, 'Don''t Drink The Water', 'UK', now()), +(8865, 'Don''t Forget To Write!', 'UK', now()), +(8866, 'Don''t Rock The Boat', 'UK', now()), +(8867, 'Double First', 'UK', now()), +(8868, 'Down The ''Gate', 'UK', now()), +(8869, 'Dream Stuffing', 'UK', now()), +(8870, 'Duty Free', 'UK', now()), +(8871, 'East End - West End', 'UK', now()), +(8872, 'Educated Evans', 'UK', now()), +(8873, 'Educating Archie', 'UK', now()), +(8874, 'Educating Marmalade', 'UK', now()), +(8875, 'The Eggheads', 'UK', now()), +(8876, 'Emney Enterprises', 'UK', now()), +(8877, 'End Of Part One', 'UK', now()), +(8878, 'The Fainthearted Feminist', 'UK', now()), +(8879, 'Fancy Wanders', 'UK', now()), +(8880, 'Farrington Of The FO', 'UK', now()), +(8881, 'Father Charlie', 'UK', now()), +(8882, 'Father Matthew''s Daughter', 'UK', now()), +(8883, 'Father''s Day', 'UK', now()), +(8884, 'Feet First', 'UK', now()), +(8885, 'The Fenn Street Gang', 'UK', now()), +(8886, 'Fiddlers Three', 'UK', now()), +(8887, 'Ffizz', 'UK', now()), +(8888, 'Fire Crackers', 'UK', now()), +(8889, 'First Of The Summer Wine', 'UK', now()), +(8890, 'The Fitz', 'UK', now()), +(8891, 'For The Love Of Ada', 'UK', now()), +(8892, 'Foreign Affairs (1964)', 'UK', now()), +(8893, 'Foreign Bodies', 'UK', now()), +(8894, 'The Fossett Saga', 'UK', now()), +(8895, 'Friends And Neighbours', 'UK', now()), +(8896, 'The Front Line', 'UK', now()), +(8897, 'The Frost Report', 'UK', now()), +(8898, 'Further Adventures Of Lucky Jim (1967)', 'UK', now()), +(8899, 'Further Adventures Of Lucky Jim (1982)', 'UK', now()), +(8900, 'The Fuzz', 'UK', now()), +(8901, 'Jack Of Diamonds', 'UK', now()), +(8902, 'John Browne''s Body', 'UK', now()), +(8903, 'Just A Gigolo', 'UK', now()), +(8904, 'Just Jimmy', 'UK', now()), +(8905, 'Just Liz', 'UK', now()), +(8906, 'A Kind Of Living', 'UK', now()), +(8907, 'Kindly Leave The Kerb', 'UK', now()), +(8908, 'The Kit Curran Radio Show', 'UK', now()), +(8909, 'Kids', 'UK', now()), +(8910, 'The Kenny Everett Television Show', 'UK', now()), +(8911, 'North and South (US)', 'US', now()), +(8912, 'Night Calls Live', 'US', now()), +(8913, 'L For Lester', 'UK', now()), +(8914, 'The Labours Of Erica', 'UK', now()), +(8915, 'The Lady Is A Tramp', 'UK', now()), +(8916, 'Lame Ducks', 'UK', now()), +(8917, 'Land Of Hope And Gloria', 'UK', now()), +(8918, 'Langley Bottom', 'UK', now()), +(8919, 'The Larkins', 'UK', now()), +(8920, 'The Last Of The Baskets', 'UK', now()), +(8921, 'The Last Song', 'UK', now()), +(8922, 'Late Expectations', 'UK', now()), +(8923, 'Laura And Disorder', 'UK', now()), +(8924, 'Leave It To Charlie', 'UK', now()), +(8925, 'Legacy Of Murder', 'UK', now()), +(8926, 'Let There Be Love', 'UK', now()), +(8927, 'Les Girls', 'UK', now()), +(8928, 'Life After Birth', 'UK', now()), +(8929, 'The Life Of Riley (UK)', 'UK', now()), +(8930, 'A Life Of Bliss', 'UK', now()), +(8931, 'Life With The Lyons', 'UK', now()), +(8932, 'Life Without George', 'UK', now()), +(8933, 'Little Armadillos', 'UK', now()), +(8934, 'A Little Big Business', 'UK', now()), +(8935, 'The Lonelyhearts Kid', 'UK', now()), +(8936, 'Lollipop Loves Mr Mole', 'UK', now()), +(8937, 'Love And Kisses', 'UK', now()), +(8938, 'The Love Of Mike', 'UK', now()), +(8939, 'Lovely Couple', 'UK', now()), +(8940, 'Lucky Feller', 'UK', now()), +(8941, 'Packet Of Three', 'UK', now()), +(8942, 'Para Handy - Master Mariner', 'UK', now()), +(8943, 'Pardon The Expression!', 'UK', now()), +(8944, 'The Perils Of Pendragon', 'UK', now()), +(8945, 'Pig In The Middle', 'UK', now()), +(8946, 'Pinkerton''s Progress', 'UK', now()), +(8947, 'Plaza Patrol', 'UK', now()), +(8948, 'Poor Little Rich Girls (1984)', 'UK', now()), +(8949, 'Porterhouse Blue', 'UK', now()), +(8950, 'Potter', 'UK', now()), +(8951, 'A Present For Dickie', 'UK', now()), +(8952, 'The Prince Of Denmark', 'UK', now()), +(8953, 'Private Schulz', 'UK', now()), +(8954, 'Pull The Other One', 'UK', now()), +(8955, 'FIFA World Cup 2006', 'DE', now()), +(8956, 'The Rag Trade (1961)', 'UK', now()), +(8957, 'The Rag Trade (1977)', 'UK', now()), +(8958, 'The Refuge', 'UK', now()), +(8959, 'Relative Strangers', 'UK', now()), +(8960, 'The Reluctant Romeo', 'UK', now()), +(8961, 'Rep', 'UK', now()), +(8962, 'Rich Tea And Sympathy', 'UK', now()), +(8963, 'Rings On Their Fingers', 'UK', now()), +(8964, 'Roger Doesn''t Live Here Anymore', 'UK', now()), +(8965, 'Roll Over Beethoven', 'UK', now()), +(8966, 'Romany Jones', 'UK', now()), +(8967, 'The Ronnie Barker Playhouse', 'UK', now()), +(8968, 'A Roof Over My Head', 'UK', now()), +(8969, 'Room At The Bottom (1986)', 'UK', now()), +(8970, 'Root Into Europe', 'UK', now()), +(8971, 'Roots (UK)', 'UK', now()), +(8972, 'Round And Round', 'UK', now()), +(8973, 'Roy''s Raiders', 'UK', now()), +(8974, 'Rude Health', 'UK', now()), +(8975, 'Rule Britannia!', 'UK', now()), +(8976, 'Running Wild (1987)', 'UK', now()), +(8977, 'Rutland Weekend Television', 'UK', now()), +(8978, 'Stairway to Heaven', 'KR', now()), +(8979, 'The Aphrodite Inheritance', 'UK', now()), +(8980, 'Appointment with Adventure', 'US', now()), +(8981, 'Aspel & Company', 'UK', now()), +(8982, 'The Asphalt Jungle', 'US', now()), +(8983, 'Assaulted Nuts', 'UK', now()), +(8984, 'Assignment Foreign Legion', 'UK', now()), +(8985, 'Assignment Underwater', 'US', now()), +(8986, 'At Home with the Eubanks', 'UK', now()), +(8987, 'Motormouse and Autocat', 'US', now()), +(8988, 'Baby Makes Five', 'US', now()), +(8989, 'Bandstand', 'AU', now()), +(8990, 'Bank on the Stars', 'US', now()), +(8991, 'Banyon', 'US', now()), +(8992, 'Barney Boomer', 'CA', now()), +(8993, 'Lil'' Kim: Countdown to Lockdown', 'US', now()), +(8994, 'We''ll Think of Something', 'UK', now()), +(8995, 'Marc', 'UK', now()), +(8996, 'Well Anyway', 'UK', now()), +(8997, 'West End Tales', 'UK', now()), +(8998, 'What You Lookin'' At?', 'UK', now()), +(8999, 'Winning Widows', 'UK', now()), +(9000, 'Wood and Walters', 'UK', now()), +(9001, 'Wyatt''s Watchdogs', 'UK', now()), +(9002, 'Valentine Park', 'UK', now()), +(9003, 'Very Big Very Soon', 'UK', now()), +(9004, 'The Very Merry Widow', 'UK', now()), +(9005, 'The Vital Spark', 'UK', now()), +(9006, 'The Whitehall Worrier', 'UK', now()), +(9007, 'The Worker', 'UK', now()), +(9008, 'Wild, Wild Women', 'UK', now()), +(9009, 'Wilderness Road', 'UK', now()), +(9010, 'Wink To Me Only', 'UK', now()), +(9011, 'Grand Ole Opry', 'US', now()), +(9012, 'Playboy''s Penthouse', 'US', now()), +(9013, 'Up The Garden Path', 'UK', now()), +(9014, 'Up The Workers', 'UK', now()), +(9015, 'The Upchat Connection', 'UK', now()), +(9016, 'The Upchat Line', 'UK', now()), +(9017, 'The Upper Crusts', 'UK', now()), +(9018, 'Victoria Wood - As Seen On TV', 'UK', now()), +(9019, 'Whack-O!', 'UK', now()), +(9021, 'Scott Free', 'UK', now()), +(9022, 'See You Friday', 'UK', now()), +(9023, 'Selwyn', 'UK', now()), +(9024, '7 Of One', 'UK', now()), +(9025, 'Sez Les', 'UK', now()), +(9026, 'Sharon And Elsie', 'UK', now()), +(9027, 'Shine A Light', 'UK', now()), +(9028, 'A Show Called Fred', 'UK', now()), +(9029, 'Singles', 'UK', now()), +(9030, 'Return to Lonesome Dove', 'US', now()), +(9031, 'Sir Yellow', 'UK', now()), +(9032, 'The Sky Larks', 'UK', now()), +(9033, 'Slap! - Love, Lies And Lipstick', 'UK', now()), +(9034, 'A Small Problem', 'UK', now()), +(9035, 'A Soft Touch', 'UK', now()), +(9036, 'Something In The City', 'UK', now()), +(9037, 'Sometime, Never', 'UK', now()), +(9038, 'Son Of Fred', 'UK', now()), +(9039, 'Son Of The Bride', 'UK', now()), +(9040, 'Sorry I''m Single', 'UK', now()), +(9041, 'Sorry, I''m A Stranger Here Myself', 'UK', now()), +(9042, 'Sounding Brass', 'UK', now()), +(9043, 'South Of The Border', 'UK', now()), +(9044, 'Spooner''s Patch', 'UK', now()), +(9045, 'Square Deal', 'UK', now()), +(9046, 'The Squirrels', 'UK', now()), +(9047, 'Struggle', 'UK', now()), +(9048, 'Tales From The Lazy Acre', 'UK', now()), +(9049, 'Tell It To The Marines', 'UK', now()), +(9050, 'That''s Your Funeral', 'UK', now()), +(9051, 'There''s A Lot Of It About', 'UK', now()), +(9052, 'They Came From Somewhere Else', 'UK', now()), +(9053, 'Three Rousing Tinkles', 'UK', now()), +(9054, 'Thundercloud', 'UK', now()), +(9055, 'The Tony Hancock Show', 'UK', now()), +(9056, 'Troubles And Strife', 'UK', now()), +(9057, 'Turn Out the Lights', 'UK', now()), +(9058, 'Two Up, Two Down', 'UK', now()), +(9059, 'Tygo Road', 'UK', now()), +(9060, 'And So To Ted', 'UK', now()), +(9061, 'The Perry Como Show', 'US', now()), +(9062, 'According To Dora', 'UK', now()), +(9063, 'Rockman EXE Beast Plus', 'JP', now()), +(9064, 'Abracadigance', 'UK', now()), +(9065, 'I Want That!', 'US', now()), +(9066, 'Adam''s Family Tree', 'UK', now()), +(9067, 'After Hours (UK)', 'UK', now()), +(9068, 'After That, This', 'UK', now()), +(9069, 'Agent Z and the Penguin From Mars', 'UK', now()), +(9070, 'Al Read Says What A Life!', 'UK', now()), +(9071, 'Alan Young', 'UK', now()), +(9072, 'Alexei Sayle''s Merry-Go-Round', 'UK', now()), +(9073, 'Alfred Marks Time', 'UK', now()), +(9074, 'Alistair McGowan''s Big Impression', 'UK', now()), +(9075, 'All Change', 'UK', now()), +(9076, 'All Square', 'UK', now()), +(9077, 'An Audience With...', 'UK', now()), +(9078, 'And Now The Good News', 'UK', now()), +(9079, 'And So To Bentley', 'UK', now()), +(9080, 'And There''s More', 'UK', now()), +(9081, 'Ant And Dec Unzipped', 'UK', now()), +(9082, 'Anyone for Pennis?', 'UK', now()), +(9083, 'Are Husbands Really Necessary?', 'UK', now()), +(9084, 'Armstrong and Miller', 'UK', now()), +(9085, 'Arthur And Phil Go Off...', 'UK', now()), +(9086, 'As Good Cooks Go', 'UK', now()), +(9087, 'Ask Mr Pastry', 'UK', now()), +(9088, 'At Last...It''s Mike Elliott', 'UK', now()), +(9089, 'At The Eleventh Hour', 'UK', now()), +(9090, 'At Your Service, Ltd', 'UK', now()), +(9091, 'The Adam And Joe Show', 'UK', now()), +(9092, 'The Adventures Of Aggie', 'UK', now()), +(9093, 'The Adventures Of Brigadier Wellington-Bull', 'UK', now()), +(9094, 'The Adventures Of Charlie Quick', 'UK', now()), +(9095, 'The All New Alexei Sayle Show', 'UK', now()), +(9096, 'The All New Harry Hill Show', 'UK', now()), +(9097, 'The Allan Stewart Tapes', 'UK', now()), +(9098, 'The Almost Complete History of the 20th Century', 'UK', now()), +(9099, 'The Anthony Newley Show', 'UK', now()), +(9100, 'Bad Boyes', 'UK', now()), +(9101, 'Baker''s Half-Dozen', 'UK', now()), +(9102, 'Barmy Aunt Boomerang', 'UK', now()), +(9103, 'Barry Humphries'' Scandals', 'UK', now()), +(9104, 'Bath-Night With Braden', 'UK', now()), +(9105, 'Battle Of The Sexes', 'UK', now()), +(9106, 'Baxter On...', 'UK', now()), +(9107, 'Be Soon', 'UK', now()), +(9108, 'Before The Fringe', 'UK', now()), +(9109, 'Before Your Very Eyes', 'UK', now()), +(9110, 'Behind The Bike Sheds', 'UK', now()), +(9111, 'Ben Elton - The Man From Auntie', 'UK', now()), +(9112, 'Ben Travers Farces', 'UK', now()), +(9113, 'Beneath The News', 'UK', now()), +(9114, 'Bernie', 'UK', now()), +(9115, 'Beryl Reid Says Good Evening', 'UK', now()), +(9116, 'Beside The Seaside', 'UK', now()), +(9117, 'Beyond A Joke', 'UK', now()), +(9118, 'Beyond Belief', 'UK', now()), +(9119, 'Billy Bunter Of Greyfriars School', 'UK', now()), +(9120, 'Billy Dainty, Esq.', 'UK', now()), +(9121, 'Black And Blue', 'UK', now()), +(9122, 'Blouse And Skirt', 'UK', now()), +(9123, 'Bob Monkhouse On The Spot', 'UK', now()), +(9124, 'Bobby Davro On The Box', 'UK', now()), +(9125, 'Bobby Davro''s TV Weekly', 'UK', now()), +(9126, 'Bobby Davro: Rock With Laughter', 'UK', now()), +(9127, 'Bonehead', 'UK', now()), +(9128, 'Bonkers!', 'UK', now()), +(9129, 'Bonny!', 'UK', now()), +(9130, 'Bootle Saddles', 'UK', now()), +(9131, 'Born And Bred (1978)', 'UK', now()), +(9132, 'Boyce Goes West', 'UK', now()), +(9133, 'Boyz Unlimited', 'UK', now()), +(9134, 'Victory At Sea', 'US', now()), +(9135, 'Bradley', 'UK', now()), +(9136, 'Brian Conley - This Way Up', 'UK', now()), +(9137, 'Bright''s Boffins', 'UK', now()), +(9138, 'Bruiser', 'UK', now()), +(9139, 'Hellsing (US)', 'AJ', now()), +(9140, 'Bud', 'UK', now()), +(9141, 'But Seriously, It''s Sheila Hancock', 'UK', now()), +(9142, 'If You Lived Here, You''d Be Home By Now', 'US', now()), +(9143, 'Mr. Nice Guy', 'US', now()), +(9144, 'The Bagthorpe Saga', 'UK', now()), +(9145, 'The Ben Elton Show', 'UK', now()), +(9146, 'The Bernard Bresslaw Show', 'UK', now()), +(9147, 'The Betty Driver Show', 'UK', now()), +(9148, 'Pink Collar', 'US', now()), +(9149, 'Angriest Man in Suburbia', 'US', now()), +(9150, 'You''ve Reached the Elliotts', 'US', now()), +(9151, 'Twenty Good Years (US)', 'US', now()), +(9152, 'The Bob Monkhouse Hour', 'UK', now()), +(9153, 'The Bob Monkhouse Show', 'UK', now()), +(9154, 'The Boot Street Band', 'UK', now()), +(9155, 'The Brian Conley Show', 'UK', now()), +(9156, 'The Bronx Bunny Show', 'UK', now()), +(9157, 'The Bruce Forsyth Show', 'UK', now()), +(9158, 'The Bubblegum Brigade', 'UK', now()), +(9159, 'The Bumblies', 'UK', now()), +(9160, 'Cabaret (UK)', 'UK', now()), +(9161, 'Cabaret At The Jongleurs', 'UK', now()), +(9162, 'Cabbages And Kings', 'UK', now()), +(9163, 'Call It What You Like', 'UK', now()), +(9164, 'Call Me Sam', 'UK', now()), +(9165, 'Andy Barker, P.I.', 'US', now()), +(9166, 'Community Service', 'US', now()), +(9167, 'He Said, She Said', 'US', now()), +(9168, 'Cannon And Ball', 'UK', now()), +(9169, 'Capstick Capers', 'UK', now()), +(9170, 'Captain Moonlight - Man Of Mystery', 'UK', now()), +(9171, 'Carrott Confidential', 'UK', now()), +(9172, 'Carrott''s Lib', 'UK', now()), +(9173, 'Carry On Christmas', 'UK', now()), +(9174, 'Casanova ''73', 'UK', now()), +(9175, 'Casting Off', 'UK', now()), +(9176, 'Caught Napping', 'UK', now()), +(9177, 'Caxton''s Tales', 'UK', now()), +(9178, 'Charge!', 'UK', now()), +(9179, 'Charley''s Grants', 'UK', now()), +(9180, 'Charlie Chester On Laughter Service', 'UK', now()), +(9181, 'Charlie Drake And Jack Edwardes', 'UK', now()), +(9182, 'Charlie Drake In...', 'UK', now()), +(9183, 'Charters And Caldicott', 'UK', now()), +(9184, 'California Fever', 'US', now()), +(9185, 'Call My Bluff (US)', 'US', now()), +(9186, 'Calucci''s Department', 'US', now()), +(9187, 'Calvin and the Colonel', 'US', now()), +(9188, 'Camera Three', 'US', now()), +(9189, 'Camp Jim', 'US', now()), +(9190, 'Can Do', 'US', now()), +(9191, 'Can You Top This', 'US', now()), +(9192, 'Candy Candy', 'JP', now()), +(9193, 'Capital City', 'UK', now()), +(9194, 'Captain Billy''s Mississippi Music Hall', 'US', now()), +(9195, 'Carla', 'UK', now()), +(9196, 'The Carol Burnett Show (1991)', 'US', now()), +(9197, 'Carson''s Cellar', 'US', now()), +(9198, 'Carol Vorderman''s Better Homes', 'UK', now()), +(9199, 'Chopsticks', 'UK', now()), +(9200, 'Cilla''s Comedy Six', 'UK', now()), +(9201, 'Cilla''s World Of Comedy', 'UK', now()), +(9202, 'Clock On', 'UK', now()), +(9203, 'Club Class', 'UK', now()), +(9204, 'Club Night', 'UK', now()), +(9205, 'Comedy Bandbox', 'UK', now()), +(9206, 'Comedy Club (UK)', 'UK', now()), +(9207, 'Comedy Nation', 'UK', now()), +(9208, 'Comedy Tonight', 'US', now()), +(9209, 'Comedy Wavelength', 'UK', now()), +(9210, 'Comin'' Atcha / In The House With Cleopatra', 'UK', now()), +(9211, 'Cone Zone', 'UK', now()), +(9212, 'Confidentially', 'UK', now()), +(9213, 'Cool Head', 'UK', now()), +(9214, 'Cool It', 'UK', now()), +(9215, 'Cooper (UK)', 'UK', now()), +(9216, 'Cooper (or Life With Tommy)', 'UK', now()), +(9217, 'Cooper - Just Like That', 'UK', now()), +(9218, 'Cooper''s Capers', 'UK', now()), +(9219, 'Cooper''s Half Hour', 'UK', now()), +(9220, 'Cooperama', 'UK', now()), +(9221, 'Late Lunch', 'UK', now()), +(9222, 'The Camomile Lawn', 'UK', now()), +(9223, 'Melissa (1997)', 'UK', now()), +(9224, 'Just So Stories', 'UK', now()), +(9225, 'A Good Murder', 'UK', now()), +(9226, 'Coping With...', 'UK', now()), +(9227, 'Boy Meets Girls', 'UK', now()), +(9228, 'Coppers And Co!', 'UK', now()), +(9229, 'Copy Cats', 'UK', now()), +(9230, 'Craig Goes Mad In Melbourne', 'UK', now()), +(9231, 'Cribbins', 'UK', now()), +(9232, 'Crowther''s In Town', 'UK', now()), +(9233, 'Cue Gary!', 'UK', now()), +(9234, 'The Charlie Chester Show', 'UK', now()), +(9235, 'The Charlie Drake Show', 'UK', now()), +(9236, 'The Charlie Farnsbarns Show', 'UK', now()), +(9237, 'The Coal Hole Club', 'UK', now()), +(9238, 'The Comedians', 'UK', now()), +(9239, 'The Comedy Network', 'UK', now()), +(9240, 'The Comedy Store', 'UK', now()), +(9241, 'The Complete Victor Borge', 'UK', now()), +(9242, 'The Corbett Follies', 'UK', now()), +(9243, 'The Crazy Gang', 'UK', now()), +(9244, 'The Crowther Collection', 'UK', now()), +(9245, 'The Cut Price Comedy Show', 'UK', now()), +(9246, 'The Cyril Fletcher Show', 'UK', now()), +(9247, 'Dare To Believe', 'UK', now()), +(9248, 'Dave Allen', 'UK', now()), +(9249, 'Dave Gorman''s Important Astrological Experiment', 'UK', now()), +(9250, 'Dave''s Kingdom', 'UK', now()), +(9251, 'Davro', 'UK', now()), +(9252, 'Davro''s Sketch Pad', 'UK', now()), +(9253, 'Dawson And Friends', 'UK', now()), +(9254, 'Dear Dotty', 'UK', now()), +(9255, 'Dear Heart', 'UK', now()), +(9256, 'Des', 'UK', now()), +(9257, 'Des O''Connor Entertains', 'UK', now()), +(9258, 'Des O''Connor On Stage', 'UK', now()), +(9259, 'Dial RIX', 'UK', now()), +(9260, 'Dickie Valentine', 'UK', now()), +(9261, 'Dig This Rhubarb', 'UK', now()), +(9262, 'Digance At Work', 'UK', now()), +(9264, 'Dizzy Heights', 'UK', now()), +(9265, 'Doctor Down Under', 'AU', now()), +(9266, 'Dodd On His Todd', 'UK', now()), +(9267, 'Doddy''s Music Box', 'UK', now()), +(9268, 'Don''t Ask Us - We''re New Here', 'UK', now()), +(9269, 'Don''t Do It, Dempsey!', 'UK', now()), +(9270, 'Don''t Look Now', 'UK', now()), +(9271, 'Don''t Spare The Horses', 'UK', now()), +(9272, 'Don''t Tell Father (1959)', 'UK', now()), +(9273, 'Don''t Worry', 'UK', now()), +(9274, 'Double Cross (1956)', 'UK', now()), +(9275, 'Double Six', 'UK', now()), +(9276, 'Drake''s Progress', 'UK', now()), +(9277, 'The Dame Edna Experience!', 'UK', now()), +(9278, 'The Dave Allen Show', 'UK', now()), +(9279, 'The Dave King Show', 'UK', now()), +(9280, 'The Dawson Watch', 'UK', now()), +(9281, 'Andy''s Gang', 'US', now()), +(9282, 'The Des O''Connor Show', 'UK', now()), +(9283, 'The Dickie Henderson Half-Hour', 'UK', now()), +(9285, 'Here''s Hollywood', 'US', now()), +(9286, 'An Evening at Home with Bernard Braden and Barbara Kelly', 'UK', now()), +(9287, 'An Evening With Francis Howerd', 'UK', now()), +(9288, 'Early To Braden', 'UK', now()), +(9289, 'Edinburgh Comedy', 'UK', now()), +(9290, 'Elephant''s Eggs In A Rhubarb Tree', 'UK', now()), +(9291, 'Emery Presents', 'UK', now()), +(9292, 'Eric Sykes Presents Peter Sellers', 'UK', now()), +(9293, 'Ev (UK)', 'UK', now()), +(9294, 'Evans Abode', 'UK', now()), +(9295, 'The Eamonn Andrews Show', 'UK', now()), +(9296, 'The End Of The Pier Show', 'UK', now()), +(9297, 'The Entertainers (UK)', 'UK', now()), +(9298, 'The Eric Barker Half-Hour', 'UK', now()), +(9299, 'Archangel', 'UK', now()), +(9300, 'The Estate Agents', 'UK', now()), +(9301, 'Storyville', 'UK', now()), +(9302, 'Extraordinary People', 'UK', now()), +(9303, 'The Mark Steel Lectures', 'UK', now()), +(9304, 'Ten Commandments', 'PL', now()), +(9305, 'Lady Chatterley', 'UK', now()), +(9306, '1st Exposure', 'UK', now()), +(9307, '500 Bus Stops', 'UK', now()), +(9308, 'Faces Of Jim', 'UK', now()), +(9309, 'Family Affairs (1949)', 'UK', now()), +(9310, 'FAQ U', 'UK', now()), +(9311, 'Fast And Loose', 'UK', now()), +(9312, 'Fast Forward (UK)', 'UK', now()), +(9313, 'Five Alive', 'UK', now()), +(9314, 'Flip', 'US', now()), +(9315, 'Fo A Fe', 'UK', now()), +(9316, 'Focus North', 'UK', now()), +(9317, 'Follow That Dog', 'UK', now()), +(9318, 'For 4 Tonight', 'UK', now()), +(9319, 'Foreign Affairs (1966)', 'UK', now()), +(9320, 'Frankie Howerd', 'UK', now()), +(9321, 'Frankie Howerd Strikes Again', 'UK', now()), +(9322, 'Frankie''s On...', 'UK', now()), +(9323, 'Frankly Howerd', 'UK', now()), +(9324, 'Freddie Starr', 'UK', now()), +(9325, 'Freddie Starr''s Variety Madhouse', 'UK', now()), +(9326, 'Friday Night Live', 'UK', now()), +(9327, 'Friday Night With...', 'UK', now()), +(9328, 'From The Top', 'UK', now()), +(9329, 'Frost''s Weekly', 'UK', now()), +(9330, 'Fun At The Funeral Parlour', 'UK', now()), +(9331, 'Funny Ha Ha', 'UK', now()), +(9332, 'Funnybone', 'UK', now()), +(9333, 'The Faith Brown Chat Show', 'UK', now()), +(9334, 'The Ferguson Theory', 'UK', now()), +(9335, 'The Fivepenny Piece Show', 'UK', now()), +(9336, 'Stalky & Co', 'UK', now()), +(9337, 'The Frankie Howerd Show', 'UK', now()), +(9338, 'The Fred Emney Show', 'UK', now()), +(9339, 'The Freddie Starr Show', 'UK', now()), +(9340, 'The Funny Farm', 'UK', now()), +(9341, 'The Funny Side', 'UK', now()), +(9342, 'Galloping Galaxies!', 'UK', now()), +(9343, 'Gas', 'UK', now()), +(9344, 'Gayle''s World', 'UK', now()), +(9345, 'Get The Drift', 'UK', now()), +(9346, 'Get Up, Stand Up', 'UK', now()), +(9347, 'Giggly Bitz!', 'UK', now()), +(9348, 'Girl Talk', 'UK', now()), +(9349, 'Glas Y Dorlan', 'UK', now()), +(9350, 'Go For It', 'UK', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(9351, 'Good Stuff Comedy', 'UK', now()), +(9352, 'Goodbye Again', 'UK', now()), +(9353, 'Graham''s Gang', 'UK', now()), +(9354, 'Grandad', 'UK', now()), +(9355, 'Great Scott - It''s Maynard!', 'UK', now()), +(9356, 'Grubstreet', 'UK', now()), +(9357, 'Gruey', 'UK', now()), +(9358, 'Grumpy Old Men', 'UK', now()), +(9359, 'The Galton & Simpson Comedy', 'UK', now()), +(9360, 'The Galton & Simpson Playhouse', 'UK', now()), +(9361, 'The George Martin Show', 'UK', now()), +(9362, 'The Gordon Peters Show', 'UK', now()), +(9363, 'The Graham Stark Show', 'UK', now()), +(9364, 'The Gravy Train', 'UK', now()), +(9365, 'The Gravy Train Goes East', 'UK', now()), +(9366, 'The Great Detective', 'UK', now()), +(9367, 'The Green Tie On The Little Yellow Dog', 'UK', now()), +(9368, 'The Grumbleweeds Radio Show', 'UK', now()), +(9369, 'Tak and the Power of JuJu', 'US', now()), +(9370, 'Mr. Meaty', 'CA', now()), +(9371, 'Ni Hao, Kai-lan', 'US', now()), +(14617, 'Fanorama', 'UK', now()), +(9373, 'El Tigre: The Adventures of Manny Rivera', 'US', now()), +(9374, 'Thugaboo', 'US', now()), +(9375, 'Just Jordan', 'US', now()), +(9376, 'Best Student Council', 'JP', now()), +(9377, 'A Series Of Bird''s', 'UK', now()), +(9378, 'Sam And Janet', 'UK', now()), +(9379, 'Hancock''s', 'UK', now()), +(9380, 'Happy Endings (UK)', 'UK', now()), +(9381, 'Happy Holidays', 'UK', now()), +(9382, 'Hardwicke House', 'UK', now()), +(9383, 'Harry''s Mad', 'UK', now()), +(9384, 'Haywire', 'UK', now()), +(9385, 'Hello Mum', 'UK', now()), +(9386, 'Hello, Good Afternoon, Welcome', 'UK', now()), +(9387, 'Here''s Harry', 'UK', now()), +(9388, 'Here''s Howard', 'UK', now()), +(9389, 'Herlock And Sholmes', 'UK', now()), +(9390, 'Silk, Satin, Cotton, Rags', 'UK', now()), +(9391, 'Hey Brian!', 'UK', now()), +(9392, 'Reggie Little At Large', 'UK', now()), +(9393, 'High Hopes', 'UK', now()), +(9394, 'Highland Fling', 'UK', now()), +(9395, 'Hinge And Bracket', 'UK', now()), +(9396, 'Hip Hip Who Ray', 'UK', now()), +(9397, 'Kelly', 'IE', now()), +(9398, 'Hogg''s Back', 'UK', now()), +(9399, 'Hold The Front Page', 'UK', now()), +(9400, 'Headbangers Ball', 'US', now()), +(9401, 'Home James', 'UK', now()), +(9402, 'Home Sweet Home', 'AU', now()), +(9403, 'Honky Tonk Heroes', 'UK', now()), +(9404, 'Hope And Keen', 'UK', now()), +(9405, 'Hope And Keen''s Crazy House', 'UK', now()), +(9406, 'Horace', 'UK', now()), +(9407, 'Horne A''plenty', 'UK', now()), +(9408, 'How Do You View?', 'UK', now()), +(9409, 'How To Be An Alien', 'UK', now()), +(9410, 'How''s Your Father', 'UK', now()), +(9411, 'Hububb', 'UK', now()), +(9412, 'Hudd', 'UK', now()), +(9413, 'Hulbert Follies', 'UK', now()), +(9414, 'The Handle Bar', 'UK', now()), +(9415, 'The Handy Gang', 'UK', now()), +(9416, 'The Happening', 'UK', now()), +(9417, 'The Harry Secombe Show (1955)', 'UK', now()), +(9418, 'The Harry Secombe Show (1968)', 'UK', now()), +(9419, 'The Zig and Zag Show', 'UK', now()), +(9420, 'Zig And Zag''s Dirty Deeds', 'UK', now()), +(9421, 'The Illustrated Weekly Hudd', 'UK', now()), +(9422, 'The Incredible Adventures of Professor Branestawm', 'UK', now()), +(9423, 'The Idiot Weekly, Price 2d', 'UK', now()), +(9424, 'It''s Young Again', 'UK', now()), +(9425, 'It''s Tarbuck!', 'UK', now()), +(9426, 'It''s Saturday Night', 'UK', now()), +(9427, 'It''s Not Me - It''s Them!', 'UK', now()), +(9428, 'It''s Max Boyce', 'UK', now()), +(9429, 'It''s Marty', 'UK', now()), +(9430, 'It''s Magic', 'UK', now()), +(9431, 'It''s All In Life', 'UK', now()), +(9432, 'Interference', 'UK', now()), +(9433, 'It''ll All Be Over In Half An Hour', 'UK', now()), +(9434, 'In Bed With Medinner', 'UK', now()), +(9435, 'I''m Not Bothered', 'UK', now()), +(9436, 'The 2006 Commonwealth Games (AU)', 'AU', now()), +(9437, 'I''m Bob, He''s Dickie', 'UK', now()), +(9438, 'The Howerd Crowd', 'UK', now()), +(9439, 'Xerxes', 'SE', now()), +(9440, '24 Carrott Gold', 'UK', now()), +(9441, 'The Howerd Confessions', 'UK', now()), +(9442, 'The Hope And Keen Scene', 'UK', now()), +(9443, 'Suburban Shootout', 'UK', now()), +(9444, 'The Strange World Of Gurney Slade', 'UK', now()), +(9445, 'Sykes And A...', 'UK', now()), +(9446, 'Sheep''s Clothing', 'UK', now()), +(9447, 'Sadie, It''s Cold Outside', 'UK', now()), +(9448, 'Ours Is A Nice House', 'UK', now()), +(9449, 'Bincho-tan', 'JP', now()), +(9450, 'The Big O (JP)', 'JP', now()), +(9451, 'A Little Bit Of Wisdom', 'UK', now()), +(9452, 'Lance At Large', 'UK', now()), +(9453, 'Let''s Laugh', 'UK', now()), +(9454, 'Life And Al Read', 'UK', now()), +(9455, 'Lil', 'UK', now()), +(9456, 'The Young Lady From London', 'UK', now()), +(9457, 'Y Garej', 'UK', now()), +(9458, 'Jack Dee''s Full Mountie', 'UK', now()), +(9459, 'Joan And Leslie / Leslie Randall Entertains', 'UK', now()), +(9460, 'Jack Dee''s Happy Hour', 'UK', now()), +(9461, 'Jack Dee''s Sunday Service', 'UK', now()), +(9462, 'Jackson Pace: The Great Years', 'UK', now()), +(9463, 'Janet And Company', 'UK', now()), +(9464, 'Perfect Disaster', 'US', now()), +(9467, 'Jennings At School', 'UK', now()), +(9468, 'Scott On...', 'UK', now()), +(9469, 'Secombe Here!', 'UK', now()), +(9470, 'Jim Tavaré Pictures Presents...', 'UK', now()), +(9471, 'Jimmy Logan', 'UK', now()), +(9472, 'Jo Brand: Like It Or Lump It', 'UK', now()), +(9473, 'John Sessions On The Spot', 'UK', now()), +(9474, 'F.D.R.', 'US', now()), +(9475, 'Fair Game', 'UK', now()), +(9476, 'Secombe And Friends', 'UK', now()), +(9477, 'Fair Exchange', 'US', now()), +(9478, 'Fall of Eagles', 'UK', now()), +(9480, 'Fame is the Spur', 'UK', now()), +(9481, 'Fame For 15', 'US', now()), +(9482, 'Families', 'UK', now()), +(9483, 'Strictly T-T', 'UK', now()), +(9484, 'La Tormenta', 'CO', now()), +(9485, 'Senda Prohibida', 'MX', now()), +(9486, 'Fame, Fortune, and Romance', 'US', now()), +(9487, 'Celebrity Scissorhands', 'UK', now()), +(9488, 'John Sessions''s Likely Stories', 'UK', now()), +(9489, 'John Sessions''s Tall Tales', 'UK', now()), +(9490, 'Join Jim Dale', 'UK', now()), +(9491, 'Josie', 'UK', now()), +(9492, 'Jossy''s Giants', 'UK', now()), +(9493, 'Joyce Grenfell', 'UK', now()), +(9494, 'Just For Laughs (1987)', 'UK', now()), +(9495, 'Just William (1977)', 'UK', now()), +(9496, 'Just William (1994)', 'UK', now()), +(9497, 'The Jack Dee Show', 'UK', now()), +(9498, 'The Jewel And Warriss Scrapbook', 'UK', now()), +(9499, 'The Jewel And Warriss Show', 'UK', now()), +(9500, 'The Jill Day Show', 'UK', now()), +(9501, 'The Jim Davidson Show', 'UK', now()), +(9502, 'The Jim Tavaré Show', 'UK', now()), +(9503, 'The Jimmy Logan Show', 'UK', now()), +(9504, 'The Jimmy Tarbuck Show', 'UK', now()), +(9505, 'The Jimmy Wheeler Show', 'UK', now()), +(9506, 'The Joe Baker Show', 'UK', now()), +(9507, 'The Joe Longthorne Show', 'UK', now()), +(9508, 'The Joke Machine', 'UK', now()), +(9509, 'A Kick Up The Eighties', 'UK', now()), +(9510, 'Monster Warriors', 'CA', now()), +(9511, 'Kappatoo', 'UK', now()), +(9512, 'Karen Kay', 'UK', now()), +(9513, 'Kate And Ted''s Show', 'UK', now()), +(9514, 'Keep It In The Family (1971)', 'UK', now()), +(9515, 'Kelly Monteith', 'UK', now()), +(9516, 'Kelly''s Eye', 'UK', now()), +(9517, 'Kept In', 'UK', now()), +(9518, 'Kindly Leave The Stage', 'UK', now()), +(9519, 'Klinik!', 'UK', now()), +(9520, 'Knees-up', 'UK', now()), +(14566, 'Garasu no kamen', 'JP', now()), +(9522, 'Krankies Television', 'UK', now()), +(9523, 'The Kate Robbins Show', 'UK', now()), +(9524, 'The Ken Dodd Laughter Show', 'UK', now()), +(9525, 'The Kenneth Williams Show', 'UK', now()), +(9526, 'The Kenny Everett Explosion', 'UK', now()), +(9527, 'The Kids From 47A', 'UK', now()), +(9528, 'The Krankies Elektronik Komik', 'UK', now()), +(9529, 'The Krankies Klub', 'UK', now()), +(9530, 'A Life In Pieces', 'UK', now()), +(9531, 'Larry Grayson', 'UK', now()), +(9532, 'Laugh??? I Nearly Paid My Licence Fee', 'UK', now()), +(9533, 'Fantastic Four', 'US', now()), +(9534, 'Leave It To Pastry', 'UK', now()), +(9535, 'Lennie And Jerry', 'UK', now()), +(9536, 'Let''s Parlez Franglais', 'UK', now()), +(9537, 'Let''s Stay Home', 'UK', now()), +(9538, 'Life With Cooper', 'UK', now()), +(9539, 'Lift Off! With Coppers And Co!', 'UK', now()), +(9540, 'Lily Live!', 'UK', now()), +(9541, 'The Little And Large Show', 'UK', now()), +(9542, 'Live At Jongleurs', 'UK', now()), +(9543, 'Live Floor Show', 'UK', now()), +(9544, 'Living It Up', 'UK', now()), +(9545, 'London Underground', 'UK', now()), +(9546, 'Look At It This Way', 'UK', now()), +(9547, 'Look - Mike Yarwood!', 'UK', now()), +(9548, 'Lord Tramp', 'UK', now()), +(9549, 'Lost In France', 'UK', now()), +(9550, 'Lucky Bag', 'UK', now()), +(9551, 'Luna', 'UK', now()), +(9552, 'The Lance Percival Show', 'UK', now()), +(9553, 'The Culture Show', 'UK', now()), +(9554, 'Hollywood UK', 'UK', now()), +(9555, 'The Late Edition', 'UK', now()), +(9556, 'Newsnight Review', 'UK', now()), +(9557, 'The Late Show', 'AU', now()), +(9558, 'The Laughter Show', 'UK', now()), +(9559, 'The Leeds series', 'UK', now()), +(9560, 'The Les Dawson Show', 'UK', now()), +(9561, 'The Les Dennis Laughter Show', 'UK', now()), +(9562, 'The Leslie Crowther Show', 'UK', now()), +(9563, 'The Lily Savage Show', 'UK', now()), +(9564, 'The Little And Large Tellyshow', 'UK', now()), +(9565, 'The Long Johns', 'UK', now()), +(15033, 'Yamato Nadeshiko Shichi Henge', 'JP', now()), +(9567, 'Eating With...', 'UK', now()), +(9568, 'It''s Not Easy Being Green', 'UK', now()), +(9569, 'The Amazing Mrs Pritchard', 'UK', now()), +(9570, 'Cinematech: Nocturnal Emissions', 'US', now()), +(9571, 'Mainly Millicent', 'UK', now()), +(9572, 'Sea Monsters: A Walking with Dinosaurs Trilogy', 'UK', now()), +(9573, 'Mel-O-Toons', 'US', now()), +(9574, 'TX', 'UK', now()), +(9575, 'The Stanley Baxter Show', 'UK', now()), +(9576, 'Summer''s Here', 'UK', now()), +(9577, 'Tall Stories', 'UK', now()), +(9578, 'Tarbuck''s Back', 'UK', now()), +(9579, 'That Show', 'UK', now()), +(9580, 'The Two Charleys', 'UK', now()), +(9581, 'Hi no Tori', 'JP', now()), +(9582, 'Q...', 'UK', now()), +(9583, 'Vic''s Grill', 'UK', now()), +(9584, 'Turn It Up!', 'UK', now()), +(9585, 'Tracey And Me', 'UK', now()), +(9586, 'It''s Tommy Cooper', 'UK', now()), +(9587, 'The Lighter Side', 'UK', now()), +(9588, 'Richard Hearne As Mr Pastry', 'UK', now()), +(9589, 'Round The Bend', 'UK', now()), +(9590, 'Tres Mujeres', 'MX', now()), +(9591, 'Connections', 'UK', now()), +(9592, 'Making Faces', 'UK', now()), +(9593, 'Making Whoopee', 'UK', now()), +(9594, 'Marlene Marlowe Investigates', 'UK', now()), +(9595, 'Marti', 'UK', now()), +(9596, 'Marty Back Together Again', 'UK', now()), +(9597, 'Max', 'UK', now()), +(9598, 'Max Boyce', 'UK', now()), +(9599, 'Max Boyce And Friends', 'UK', now()), +(9600, 'Max Bygraves', 'UK', now()), +(9601, 'Max Bygraves - Side By Side', 'UK', now()), +(9602, 'Max Bygraves At The Royalty', 'UK', now()), +(9603, 'Metal Mickey', 'UK', now()), +(9604, 'MH & 5p', 'UK', now()), +(9605, 'Michael Bentine Time', 'UK', now()), +(9606, 'Mick And Mac', 'UK', now()), +(9607, 'Mick And Montmorency / Jobstoppers', 'UK', now()), +(9608, 'Middlemen', 'UK', now()), +(9609, 'Mike And Bernie', 'UK', now()), +(9610, 'Mike And Bernie''s Music Hall', 'UK', now()), +(9611, 'Mike And Bernie''s Scene', 'UK', now()), +(9612, 'Mike And Bernie''s Show', 'UK', now()), +(9613, 'Mike Harding In Belfast', 'UK', now()), +(9614, 'Mike Reid''s Mates And Music', 'UK', now()), +(9615, 'Mike Yarwood In Persons', 'UK', now()), +(9616, 'Mild And Bitter', 'UK', now()), +(9617, 'Milligan In...', 'UK', now()), +(9618, 'The Trouble With...', 'UK', now()), +(9619, 'Milligan''s Wake', 'UK', now()), +(9620, 'Mind Your Manners', 'UK', now()), +(9621, 'Monster Café', 'UK', now()), +(9622, 'Moody In...', 'UK', now()), +(9623, 'Mooney And Magee', 'UK', now()), +(9624, 'The Marty Feldman Comedy Machine', 'UK', now()), +(9625, 'The Mary Whitehouse Experience', 'UK', now()), +(9626, 'The Mark Thomas Comedy Product', 'UK', now()), +(9627, 'Morris Minor''s Marvellous Motors', 'UK', now()), +(9628, 'Mostly Maynard', 'UK', now()), +(9629, 'Mr Justice Duncannon', 'UK', now()), +(9630, 'Mr Little At Large', 'UK', now()), +(9631, 'Mr Majeika', 'UK', now()), +(9632, 'My Dead Dad', 'UK', now()), +(9633, 'My Husband And I (1956)', 'UK', now()), +(9634, 'My Life as a Popat', 'UK', now()), +(9635, 'My Man Joe', 'UK', now()), +(9636, 'My Pal Bob', 'UK', now()), +(9637, 'My Wife And I', 'UK', now()), +(9638, 'My Wife Jacqueline', 'UK', now()), +(9639, 'My Wife''s Sister / Our Dora', 'UK', now()), +(9640, 'The Main Attraction', 'UK', now()), +(9641, 'The Mad Death', 'UK', now()), +(9642, 'The Marti Caine Show', 'UK', now()), +(9643, 'The Mating Machine', 'UK', now()), +(9644, 'A Dorothy L Sayers Mystery', 'UK', now()), +(9645, 'The Max Wall Show', 'UK', now()), +(9646, 'The Mike And Bernie Show', 'UK', now()), +(9647, 'The Mike Harding Show', 'UK', now()), +(9648, 'The Mike Reid Show', 'UK', now()), +(9649, 'The Molly Wopsies', 'UK', now()), +(9650, 'The Morwenna Banks Show', 'UK', now()), +(9651, 'The Most Likely Girl', 'UK', now()), +(9652, 'The Mrs Merton Show', 'UK', now()), +(9653, 'Tanoshii Moomin Ikka', 'JP', now()), +(9654, 'The Hades Factor', 'US', now()), +(9655, 'Noble and Silver: Get Off Me!', 'UK', now()), +(9656, 'N.U.T.S.', 'UK', now()), +(9657, 'Naked Video', 'UK', now()), +(9658, 'New Look', 'UK', now()), +(9659, 'Nathaniel Titlark', 'UK', now()), +(9660, 'News At Twelve', 'UK', now()), +(9661, 'Nice Time', 'UK', now()), +(9662, 'Night Beat News', 'UK', now()), +(9663, 'No Strings (1989)', 'UK', now()), +(9664, 'No Sweat', 'UK', now()), +(9665, 'Nobody Does It Like Marti', 'UK', now()), +(9666, 'Nobody Is Norman Wisdom', 'UK', now()), +(9667, 'Norman', 'UK', now()), +(9668, 'Not So Much A Programme More A Way Of Life', 'UK', now()), +(9669, 'Now - Something Else', 'UK', now()), +(9670, 'The National Theatre Of Brent Presents...', 'UK', now()), +(9671, 'The New Statesman (1984)', 'UK', now()), +(9672, 'The Norman Evans Show', 'UK', now()), +(9673, 'The Norman Vaughan Show', 'UK', now()), +(9674, 'The Norman Wisdom Show', 'UK', now()), +(9675, 'O.T.T.', 'UK', now()), +(9676, 'Off Beat...', 'UK', now()), +(9677, 'Oh In Colour', 'UK', now()), +(9678, 'On The Bright Side', 'UK', now()), +(9679, 'On The Margin', 'UK', now()), +(9680, 'On The Rocks', 'UK', now()), +(9681, 'On With The Show', 'UK', now()), +(9682, 'Gambit', 'US', now()), +(9683, 'One Night In Lincoln', 'UK', now()), +(9684, 'Game Show Moments Gone Bananas', 'US', now()), +(9685, 'One-Upmanship', 'UK', now()), +(9686, 'Games People Play', 'US', now()), +(9687, 'Only An Excuse', 'UK', now()), +(9688, 'Games World', 'UK', now()), +(9689, 'Ooh La La!', 'UK', now()), +(9690, 'The Galaxy Goof-Ups', 'US', now()), +(9691, 'The Gangster Chronicles', 'US', now()), +(9692, 'Gardens of the World', 'US', now()), +(9693, 'Gangsters', 'UK', now()), +(9694, 'Gardens Through Time', 'UK', now()), +(12149, 'Tuesday Night Book Club', 'US', now()), +(9696, 'Our Kid', 'UK', now()), +(9697, 'Mi destino eres tú', 'MX', now()), +(9698, 'Paging You', 'UK', now()), +(9699, 'Percy Ponsonby...', 'UK', now()), +(9700, 'Pinwright''s Progress', 'UK', now()), +(9701, 'Por un beso', 'MX', now()), +(9702, 'Ginga Nagareboshi Gin', 'JP', now()), +(9703, 'Temptation 2006', 'AU', now()), +(9704, 'The 2006 Commonwealth Games (UK)', 'AU', now()), +(9705, '2006 Winter Olympics Roundup', 'IT', now()), +(9706, 'The Dream', 'AU', now()), +(9707, 'The Dream In Athens', 'AU', now()), +(9708, 'Battle B''Daman (AU)', 'AU', now()), +(9709, 'Tusenbröder', 'SE', now()), +(9710, 'Palace Hill', 'UK', now()), +(9711, 'Pallas', 'UK', now()), +(9712, 'Paradise Island', 'UK', now()), +(9713, 'Paramount City', 'UK', now()), +(9714, 'Pardon My Genie', 'UK', now()), +(9715, 'Parent-craft', 'UK', now()), +(9716, 'Patter Merchants', 'UK', now()), +(9717, 'Paul Merton - The Series', 'UK', now()), +(9718, 'Paul Squire, Esq', 'UK', now()), +(9719, 'Pauline''s Quirkes', 'UK', now()), +(9720, 'People Like Us (1957)', 'UK', now()), +(9721, 'Personal Appearance', 'UK', now()), +(9722, 'Pet Pals', 'UK', now()), +(9723, 'Peter Cavanagh', 'UK', now()), +(9724, 'Peter''s Troubles', 'UK', now()), +(9725, 'Phil Cool', 'UK', now()), +(9726, 'Phil Kay Feels...', 'UK', now()), +(9727, 'Pickersgill People', 'UK', now()), +(9728, 'Pigsty', 'UK', now()), +(9729, 'Pirates', 'UK', now()), +(9730, 'Planet Mirth', 'UK', now()), +(9731, 'Playing For Real', 'UK', now()), +(9732, 'Plum''s Plots And Plans', 'UK', now()), +(9733, 'The 2006 Commonwealth Games Highlights', 'AU', now()), +(9734, 'Polterguests', 'UK', now()), +(9735, 'Pookiesnackenburger In...', 'UK', now()), +(9736, 'Potter''s Picture Palace', 'UK', now()), +(9737, 'PS It''s Paul Squire', 'UK', now()), +(9738, 'Psst!', 'UK', now()), +(9739, 'Pulp Video', 'UK', now()), +(9740, 'Pyjamarama', 'UK', now()), +(9741, 'The Pall Bearer''s Revue', 'UK', now()), +(9742, 'The Pink Medicine Show', 'UK', now()), +(9743, 'The Punch Review', 'UK', now()), +(9744, 'The Murdoch Mysteries', 'CA', now()), +(9745, 'Blood Ties', 'CA', now()), +(9746, 'Across the River to Motor City', 'CA', now()), +(9747, 'A Touch Of The Norman Vaughans', 'UK', now()), +(9748, 'Tarbuck At The Prince Of Wales', 'UK', now()), +(9749, 'Tarbuck - And All That!', 'UK', now()), +(9750, 'Tarbuck''s Luck', 'UK', now()), +(9751, 'Television''s Christmas Party', 'UK', now()), +(9752, 'Tell Tarby', 'UK', now()), +(9753, 'Tess And Jim', 'UK', now()), +(9754, 'That''s Life, Says Max Wall', 'UK', now()), +(9755, 'The Ted Ray Show', 'UK', now()), +(9756, 'The Tommy Cooper Hour', 'UK', now()), +(9758, 'Thirty Minutes Worth', 'UK', now()), +(9759, 'Those Two Fellers', 'UK', now()), +(9760, 'Together Again', 'UK', now()), +(9761, 'Tom O''Connor (1984)', 'UK', now()), +(9762, 'Twice A Fortnight', 'UK', now()), +(9763, 'Trinder Box', 'UK', now()), +(9764, 'Took And Co', 'UK', now()), +(9765, 'Radio Roo', 'UK', now()), +(9766, 'El Manantial', 'MX', now()), +(9767, 'Raise Your Glasses', 'UK', now()), +(9768, 'Re-Turn It Up!', 'UK', now()), +(9769, 'Reg Varney', 'UK', now()), +(9770, 'Revolting Women', 'UK', now()), +(9771, 'Rich Hall''s Fishing Show', 'UK', now()), +(9772, 'La Usurpadora', 'MX', now()), +(9773, 'Richard Digance', 'UK', now()), +(9774, 'Right Charlie', 'UK', now()), +(9775, 'Rita Rudner', 'UK', now()), +(9776, 'Roamin'' Holiday', 'UK', now()), +(9777, 'Robert''s Robots', 'UK', now()), +(9778, 'Rock With Laughter', 'UK', now()), +(9779, 'Room At The Bottom (1966)', 'UK', now()), +(9780, 'Room At The Bottom (1964)', 'UK', now()), +(9781, 'Rory Bremner', 'UK', now()), +(9782, 'Rory Bremner...Who Else?', 'UK', now()), +(9783, 'Rumpus Point', 'UK', now()), +(9784, 'Running Wild (1954)', 'UK', now()), +(9785, 'Rushton''s Illustrated', 'UK', now()), +(9786, 'Russ Abbot''s Madhouse', 'UK', now()), +(9787, 'The Randall Touch', 'UK', now()), +(9788, 'Ryan And Ronnie', 'UK', now()), +(9789, 'The Real Mike Yarwood?', 'UK', now()), +(9790, 'The Reg Varney Revue', 'UK', now()), +(9791, 'The Richard Blackwood Show', 'UK', now()), +(9792, 'The Robert Dhéry Show', 'UK', now()), +(9793, 'The Robinsons', 'UK', now()), +(9794, 'The Ronnie Corbett Show', 'UK', now()), +(9795, 'The Ronnie Corbett Specials', 'UK', now()), +(9796, 'The Rory Bremner Show', 'UK', now()), +(9797, 'The Rough With The Smooth', 'UK', now()), +(9798, 'The Roy Castle Show', 'UK', now()), +(9799, 'The Roy Hudd Show', 'UK', now()), +(9800, 'The Russ Abbot Show', 'UK', now()), +(9801, 'A Slight Case Of...', 'UK', now()), +(9802, 'S And M', 'UK', now()), +(9803, 'Saturday Live (1985)', 'UK', now()), +(9804, 'Saturday Gang', 'UK', now()), +(9805, 'Saturday Live (1996)', 'UK', now()), +(9806, 'Saturday Stayback', 'UK', now()), +(9807, 'Scoop (UK)', 'UK', now()), +(9808, 'Scotch And Wry', 'UK', now()), +(9809, 'Scully', 'UK', now()), +(9810, 'Seaview', 'UK', now()), +(9811, 'Second City Reports', 'UK', now()), +(9812, 'The Jack Carter Show', 'US', now()), +(9813, 'Jack Hanna''s Animal Adventures', 'US', now()), +(9814, 'The Jack Paar Tonight Show', 'US', now()), +(9815, 'The Jack Paar Show', 'US', now()), +(9816, 'Jack the Ripper', 'UK', now()), +(9817, 'Jackie Gleason and His American Scene Magazine', 'US', now()), +(9818, 'The Jackie Gleason Show', 'US', now()), +(9819, 'The Jacksons', 'US', now()), +(9820, 'The Dr. Seuss Show', 'US', now()), +(9821, 'Around the World in 80 Treasures', 'UK', now()), +(9822, 'Torchy the Battery Boy', 'UK', now()), +(9823, 'Four Feather Falls', 'UK', now()), +(9824, 'Black Jack (JP)', 'JP', now()), +(9825, 'Sermon From St Albion''s', 'UK', now()), +(9826, 'Set Of Six', 'UK', now()), +(9827, 'Shut That Door!!', 'UK', now()), +(9828, 'Sin With Bruce Morton', 'UK', now()), +(9829, 'Slapstick And Old Lace', 'UK', now()), +(9830, 'Small Potatoes', 'UK', now()), +(9831, 'Smith And Goody', 'UK', now()), +(9832, 'Smith And Jones', 'UK', now()), +(9833, 'Smith And Jones In Small Doses', 'UK', now()), +(9834, 'Snap (UK)', 'UK', now()), +(9835, 'Spin Off', 'US', now()), +(9836, 'Spacevets', 'UK', now()), +(9837, 'The Diamond Brothers - South By South-East', 'UK', now()), +(9838, 'Something For The Weekend', 'UK', now()), +(9839, 'Some Matters Of Little Consequence', 'UK', now()), +(9840, 'Snug And Cozi', 'UK', now()), +(9841, 'Spoons', 'UK', now()), +(9842, 'Squawkie Talkie', 'UK', now()), +(9843, 'Stand Up', 'UK', now()), +(9844, 'Stand Up Britain', 'UK', now()), +(9845, 'Stand Up Jim Davidson', 'UK', now()), +(9846, 'Stop That Laughing At The Back', 'UK', now()), +(9847, 'Stuff The Week', 'UK', now()), +(9848, 'Such Is Life', 'UK', now()), +(9849, 'Supergran', 'UK', now()), +(9850, 'Sykes And A Big, Big Show', 'UK', now()), +(9851, 'The Setbacks', 'UK', now()), +(9852, 'The Sharp End', 'UK', now()), +(9853, 'The Slightly Filthy Show', 'UK', now()), +(9854, 'The Small World Of Samuel Tweet', 'UK', now()), +(9855, 'The Smell Of Reeves And Mortimer', 'UK', now()), +(9856, 'The Square Leopard', 'UK', now()), +(9857, 'The Staggering Stories Of Ferdinand De Bargos', 'UK', now()), +(9858, 'The Stand Up Show', 'UK', now()), +(9859, 'The Stanley Baxter Picture Show', 'UK', now()), +(9860, 'The Stanley Baxter Series', 'UK', now()), +(9861, 'The Summer Show', 'UK', now()), +(9862, '291 Club', 'UK', now()), +(14758, 'MTV Exposed', 'US', now()), +(9864, 'Lady Killers', 'UK', now()), +(9865, 'Land of Hope', 'AU', now()), +(9866, 'Take The Mike', 'UK', now()), +(9867, 'LAPD', 'US', now()), +(9868, 'Tales From A Long Room', 'UK', now()), +(9869, 'Tales From The Poop Deck', 'UK', now()), +(9870, 'Tales Of The Rodent Sherlock Holmes', 'UK', now()), +(9871, 'Tarby And Friends', 'UK', now()), +(9872, 'Teach Yourself Gibberish', 'UK', now()), +(9873, 'Lanigan''s Rabbi', 'US', now()), +(9874, 'Teliffant', 'UK', now()), +(9875, 'That Beryl Marston...!', 'UK', now()), +(9876, 'The Telegoons', 'UK', now()), +(9877, 'The Thoughts Of Chairman Alf', 'UK', now()), +(9878, 'The Trouble With Lilian', 'UK', now()), +(9879, 'The True Adventures Of Christopher Columbus', 'UK', now()), +(9880, 'Them', 'UK', now()), +(9881, 'Thicker Than Water (1980)', 'UK', now()), +(9882, 'Thicker Than Water (1968)', 'UK', now()), +(9883, 'Bod', 'UK', now()), +(9884, 'The Buddha of Suburbia', 'UK', now()), +(16585, 'Un paso adelante (IT)', 'ES', now()), +(9886, 'The Mackinnons', 'UK', now()), +(9887, 'The Magnificent Marble Machine', 'US', now()), +(9888, 'Thingumybob', 'UK', now()), +(9889, 'This Morning With Richard Not Judy', 'UK', now()), +(9890, 'Those Kids', 'UK', now()), +(9891, 'Three Of A Kind (1967)', 'UK', now()), +(9892, 'Three Piece Suite', 'UK', now()), +(9893, 'Magpie', 'UK', now()), +(9894, 'Make Me Laugh (US)', 'US', now()), +(9895, 'Majority Rule', 'US', now()), +(9896, 'Make Room for Granddaddy', 'US', now()), +(9897, 'Make the Connection', 'US', now()), +(9898, 'Making Out', 'UK', now()), +(9899, 'Malibu U.', 'US', now()), +(9900, 'The Mallens', 'UK', now()), +(9901, 'Mama', 'US', now()), +(9902, 'Mama Rosa', 'US', now()), +(9903, 'The Astronut Show', 'US', now()), +(9904, 'Yes, It''s The Cathode-Ray Tube Show!', 'UK', now()), +(9905, 'You''d Never Believe It', 'UK', now()), +(9906, 'Young And Foolish', 'UK', now()), +(9907, 'The Wayne And Shuster Hour', 'CA', now()), +(9908, 'The World Of Beachcomber', 'UK', now()), +(9909, 'Wayne And Shuster', 'CA', now()), +(9910, 'We Have Ways Of Making You Laugh', 'UK', now()), +(9911, 'Welsh Rarebit', 'UK', now()), +(9912, 'What Are You Doing After The Show?', 'UK', now()), +(9913, 'Skinnamarink TV', 'CA', now()), +(9914, 'What''s On Next?', 'UK', now()), +(9915, 'Where Was Spring?', 'UK', now()), +(9916, 'With Bird Will Travel', 'UK', now()), +(9917, 'World In Ferment', 'UK', now()), +(9918, 'Uchu Kubo Blue Noah', 'JP', now()), +(9919, 'Tickets For The Titanic', 'UK', now()), +(9920, 'Tom O''Connor (1977)', 'UK', now()), +(9921, 'Tom, Dick And Harry', 'UK', now()), +(9922, 'Tonight With Dave Allen', 'UK', now()), +(9923, 'Tottenham 2', 'UK', now()), +(9924, 'Tottering Towers', 'UK', now()), +(9925, 'Trev And Simon''s Transmission Impossible', 'UK', now()), +(9926, 'Tricky Business', 'UK', now()), +(9927, 'Tropic', 'UK', now()), +(9928, 'Trouble For Two', 'UK', now()), +(9929, 'Gideon Oliver', 'US', now()), +(9930, 'Turnbull''s Finest Half-Hour', 'UK', now()), +(9931, 'TV Offal', 'UK', now()), +(9932, 'TV Squash', 'UK', now()), +(9933, 'TvGoHome', 'UK', now()), +(9934, 'Two D''s And A Dog', 'UK', now()), +(9935, 'Two''s Company (1956)', 'UK', now()), +(9936, 'The Up And Down, In And Out, Roundabout Man', 'UK', now()), +(9937, 'Uncle Jack...', 'UK', now()), +(9938, 'Uncut Funk', 'UK', now()), +(9939, 'Under And Over', 'UK', now()), +(9940, 'Union Castle', 'UK', now()), +(9941, 'Up Our Street', 'UK', now()), +(9942, 'Up Sunday', 'UK', now()), +(9943, 'Up The Junction', 'UK', now()), +(9944, 'Up To Something', 'UK', now()), +(9945, 'Türkisch für Anfänger', 'DE', now()), +(9946, '!Viva Cabaret!', 'UK', now()), +(9947, 'The Valiant Varneys', 'UK', now()), +(9948, 'Vic Reeves Big Night Out', 'UK', now()), +(9949, 'Yo! Diary', 'UK', now()), +(9950, 'You Can''t Be Serious', 'UK', now()), +(9951, 'You Gotta Be Jokin''', 'UK', now()), +(9952, 'You Must Be Joking!', 'UK', now()), +(9953, 'You''re Only Young Twice (1971)', 'UK', now()), +(9954, 'Your Mother Wouldn''t Like It', 'UK', now()), +(9955, 'MTV Sports', 'US', now()), +(9956, 'Tonight with Jonathan Ross', 'UK', now()), +(9957, 'The Brighter Day', 'US', now()), +(9958, 'Bright Promise', 'US', now()), +(9959, 'The Catlins', 'US', now()), +(10309, 'New Love, American Style', 'US', now()), +(9961, 'Brave King GaoGaiGar Final Grand Glorious Gathering', 'JP', now()), +(9962, 'Bubblegum Crisis: Tokyo 2040 (JP)', 'JP', now()), +(9963, 'See It Now', 'US', now()), +(9964, 'Person To Person', 'US', now()), +(9965, 'To Tell The Truth (1956)', 'US', now()), +(9966, 'Number Please', 'US', now()), +(9967, 'About Faces', 'US', now()), +(9968, 'Abracadabra', 'UK', now()), +(9969, 'Across The Board', 'US', now()), +(9970, 'A Word With Alf', 'UK', now()), +(9971, 'A World Of His Own', 'UK', now()), +(9972, 'The Adventure Game', 'UK', now()), +(9973, 'The Walrus And The Carpenter', 'UK', now()), +(9974, 'The Wayne And Shuster Show', 'UK', now()), +(9975, 'The Ad Libbers', 'US', now()), +(9976, 'The Wolvis Family', 'UK', now()), +(9977, 'The World According To Smith And Jones', 'UK', now()), +(9978, 'The World Of Lee Evans', 'UK', now()), +(9979, 'All About You', 'UK', now()), +(9980, 'All Clued Up', 'UK', now()), +(9981, 'All in the Game (1976)', 'UK', now()), +(9982, 'We Know Where You Live', 'UK', now()), +(9983, 'What The Public Wants', 'UK', now()), +(9984, 'All In The Mind', 'UK', now()), +(9985, 'Where Do I Sit?', 'UK', now()), +(9986, 'Who Do You Do?', 'UK', now()), +(9987, 'Who Is Sylvia?', 'UK', now()), +(9988, 'All Over The Shop', 'UK', now()), +(9989, 'Will The Real Mike Yarwood Stand Up?', 'UK', now()), +(9990, 'All Star Secrets', 'UK', now()), +(9991, 'Worzel Gummidge Turns Detective', 'UK', now()), +(9992, 'WYSIWYG', 'UK', now()), +(9993, 'Almost Anything Goes (US)', 'US', now()), +(9994, 'Almost Anything Goes (AU)', 'AU', now()), +(9995, 'The Alphabet Game', 'UK', now()), +(9996, 'The Amateur''s Guide To Love', 'US', now()), +(9997, 'Americana', 'US', now()), +(9998, 'Amoebas To Zebras', 'UK', now()), +(9999, 'Ampol Stamp Quiz', 'AU', now()), +(10000, 'Animal Crack-Ups', 'US', now()), +(10001, 'Animal, Vegetable, Mineral?', 'UK', now()), +(10002, 'Anybody Can Play', 'US', now()), +(10003, 'Anyone Can Win', 'US', now()), +(10004, 'Anything For Money', 'UK', now()), +(10005, 'Anything Goes', 'UK', now()), +(10006, 'Anything You Can Cook', 'UK', now()), +(10007, 'The Art Ford Show', 'US', now()), +(10008, 'The Art Linkletter Show', 'US', now()), +(10009, 'Are You Positive?', 'US', now()), +(10010, 'Ask Me Another (US)', 'US', now()), +(10011, 'Ask Me Another (UK)', 'UK', now()), +(10012, 'Ask The Family (UK)', 'UK', now()), +(10013, 'Ask No Questions', 'UK', now()), +(10014, 'Babble', 'UK', now()), +(10015, 'Back To The Present', 'UK', now()), +(10016, 'Balance Your Budget', 'US', now()), +(10017, 'Baren', 'SE', now()), +(10018, 'Bargain Hunt', 'UK', now()), +(10019, 'Battle Of The Ages', 'US', now()), +(10020, 'Beat The Crusher', 'UK', now()), +(10021, 'Best Inventions', 'UK', now()), +(10022, 'Bid ''n'' Buy', 'US', now()), +(10023, 'Big Break', 'UK', now()), +(10024, 'Blankety Blank', 'UK', now()), +(10025, 'Blankety Blanks (AU)', 'AU', now()), +(10026, 'Bob''s Full House', 'UK', now()), +(10027, 'Bob''s Your Uncle', 'UK', now()), +(10028, 'Bognor Or Bust', 'UK', now()), +(10029, 'The Brain Drain', 'UK', now()), +(10030, 'Brain Of Britain', 'UK', now()), +(10031, 'The Brains Trust', 'UK', now()), +(10032, 'Bring Me The Head Of Light Entertainment', 'UK', now()), +(10033, 'Britain''s Brainiest', 'UK', now()), +(10034, 'Britain''s Sexiest', 'UK', now()), +(10035, 'Burgo''s Catchphrase', 'AU', now()), +(10036, 'Bullionaire', 'UK', now()), +(10037, 'The Bus', 'ES', now()), +(10038, 'Busman''s Holiday', 'UK', now()), +(10039, 'Buzzer Beater', 'JP', now()), +(10040, 'Pilot Candidate (JP)', 'JP', now()), +(10041, 'Canvas2 ~Niji-iro no Sketch~', 'JP', now()), +(10042, 'Capeta', 'JP', now()), +(10043, 'Movies That Shook the World', 'US', now()), +(10044, 'Can We Still Be Friends?', 'UK', now()), +(10045, 'Carnal Knowledge', 'UK', now()), +(10046, 'Casting Couch', 'UK', now()), +(10047, 'Catchphrase', 'UK', now()), +(10048, 'The Celebrity Game', 'UK', now()), +(10049, 'Celebrity Squares (UK)', 'UK', now()), +(10050, 'Chains Of Love', 'US', now()), +(10051, 'Challenge Anneka', 'UK', now()), +(10052, 'The Chair (US)', 'US', now()), +(10053, 'The Chair (UK)', 'UK', now()), +(10054, 'Change Of Heart', 'US', now()), +(10055, 'The Charm Offensive', 'UK', now()), +(10056, 'Child''s Play', 'UK', now()), +(10057, 'Class of...', 'UK', now()), +(10058, 'Cluedo (AU)', 'AU', now()), +(10059, 'Colombo Quotes', 'CA', now()), +(10060, 'Communicate', 'CA', now()), +(10061, 'Concentration (UK)', 'UK', now()), +(10062, 'Consequently', 'UK', now()), +(10063, 'The Cooler', 'UK', now()), +(10064, 'Crime Team', 'UK', now()), +(10065, 'Criss Cross Quiz', 'UK', now()), +(10066, 'Cross Wits', 'UK', now()), +(10067, 'Crossword Quiz', 'CA', now()), +(10068, 'Dame Edna''s Neighbourhood Watch', 'UK', now()), +(10069, 'Dealer''s Choice', 'US', now()), +(10070, 'The Desert Forges', 'UK', now()), +(10071, 'Detective Quiz', 'CA', now()), +(10072, 'Didn''t They Do Well!', 'UK', now()), +(10073, 'Dog Eat Dog (UK)', 'UK', now()), +(10074, 'Donna In Need', 'UK', now()), +(10075, 'Don''t Say A Word', 'UK', now()), +(10076, 'Dotto', 'US', now()), +(10077, 'Double Up', 'CA', now()), +(10078, 'Double Cross (2003)', 'UK', now()), +(10079, 'Double Your Money', 'UK', now()), +(10080, 'Do You Trust Your Wife?', 'US', now()), +(10081, 'Earn Your Vacation', 'US', now()), +(10082, 'Endurance UK', 'UK', now()), +(10083, 'Everybody''s Equal', 'UK', now()), +(10084, 'Every Second Counts', 'UK', now()), +(10085, 'Ex-Rated', 'UK', now()), +(10086, 'Teen Choice Awards', 'US', now()), +(10087, 'Brit Awards', 'UK', now()), +(10088, 'Legend of Earthsea', 'US', now()), +(10089, 'Captain Future', 'JP', now()), +(10090, 'Full Circle', 'US', now()), +(10091, 'Creature Comforts (US)', 'US', now()), +(10092, 'Question Time', 'UK', now()), +(10093, 'The Clear Horizon', 'US', now()), +(10113, 'It''s My Life', 'UK', now()), +(10095, 'Shinzo Ningen Casshan', 'JP', now()), +(10096, 'The Hollywood Squares', 'US', now()), +(10097, 'Cat''s Eye', 'JP', now()), +(10098, 'Nightmares & Dreamscapes: From the Stories of Stephen King', 'US', now()), +(10099, 'Lucy, The Daughter of the Devil', 'US', now()), +(10100, 'Saved', 'US', now()), +(10101, 'Panorama', 'UK', now()), +(10102, 'ISU World Figure Skating Championships 2006', 'CA', now()), +(10103, 'Shipwrecked', 'UK', now()), +(10104, 'The Secret of Drawing', 'UK', now()), +(10105, 'Inventions that Changed the World', 'UK', now()), +(10107, 'The Money Programme', 'UK', now()), +(10108, 'The Secret Storm', 'US', now()), +(10109, 'War and Remembrance', 'US', now()), +(10110, 'P.O.V.', 'US', now()), +(10111, 'American Men', 'US', now()), +(10112, 'Pablo y Andrea', 'MX', now()), +(10114, 'Derren Brown: Trick of the Mind', 'UK', now()), +(10115, 'TV Heaven, Telly Hell', 'UK', now()), +(10116, 'Don''t Mess with Miss Beckles', 'UK', now()), +(10117, 'Touch Me, I''m Karen Taylor', 'UK', now()), +(10118, 'Conversations with Michael Eisner', 'US', now()), +(10119, 'American Hot Rod', 'US', now()), +(10120, 'Wrecks to Riches', 'US', now()), +(10121, 'Psychic at Large', 'US', now()), +(10122, 'Dune', 'US', now()), +(10123, 'Captain Flamingo', 'CA', now()), +(10124, 'Access America', 'US', now()), +(10125, 'B.A.D Cats', 'US', now()), +(10126, 'Cannonball Run 2001: Race Across America', 'US', now()), +(10127, 'Dan August', 'US', now()), +(10128, 'E! News', 'US', now()), +(10129, 'F.Y.I.', 'US', now()), +(10130, 'The Gabby Hayes Show', 'US', now()), +(10131, 'Hagen', 'US', now()), +(10132, 'I Can''t Believe You Said That!', 'US', now()), +(10133, 'Jamie (US)', 'US', now()), +(10134, 'The Kallikaks', 'US', now()), +(10135, 'Ladies in Charge', 'UK', now()), +(10136, 'Mama''s Boy', 'US', now()), +(10137, 'Nancy', 'US', now()), +(10138, 'O.K. Crackerby', 'US', now()), +(10139, 'Selling Houses', 'UK', now()), +(10140, 'Alive: Back to the Andes', 'UK', now()), +(10141, 'Cinderella Monogatari', 'JP', now()), +(10142, 'Paradise Bay', 'US', now()), +(10143, 'Paper Moon', 'US', now()), +(10144, 'Real TV', 'US', now()), +(10145, 'Sanchez of Bel Air', 'US', now()), +(10146, 'The Tab Hunter Show', 'US', now()), +(10147, 'Underworld', 'UK', now()), +(10148, 'Vacation Playhouse', 'US', now()), +(10149, 'What''s It Worth', 'US', now()), +(10150, 'Turn Back Time (US)', 'US', now()), +(10151, 'Footballers Wive$ TV', 'UK', now()), +(10152, 'The Krypton Factor', 'UK', now()), +(10153, 'Four Eyes', 'US', now()), +(10154, 'The Morton Downey Jr. Show', 'US', now()), +(10155, 'Hizzonner', 'US', now()), +(10156, 'Lat, The Kampung Boy', 'US', now()), +(21846, 'Hangin'' with Encore', 'US', now()), +(10158, 'Japanorama', 'UK', now()), +(10159, 'J. K. Rowling: The Interview', 'UK', now()), +(10160, 'Morning Star', 'US', now()), +(10161, 'Spider Riders (CA)', 'JP', now()), +(10162, 'I Love the Holidays', 'US', now()), +(10163, 'War Game', 'UK', now()), +(10164, 'Kid''s Choice Awards', 'US', now()), +(10165, 'NCAA Men''s Tournament', 'US', now()), +(10166, 'Peter Loves Mary', 'US', now()), +(10167, 'Pete Kelly''s Blues', 'US', now()), +(10168, 'Pet Shop', 'US', now()), +(10169, 'People Do The Craziest Things', 'US', now()), +(10170, 'People', 'US', now()), +(10171, 'The Pearl Bailey Show', 'US', now()), +(18505, 'Shigurui', 'JP', now()), +(10173, 'A Peaceable Kingdom', 'US', now()), +(10174, 'That''ll Teach ''Em', 'UK', now()), +(21883, 'Isänmaan toivot', 'FI', now()), +(10176, 'Kodiak', 'US', now()), +(10177, 'Saint Seiya (US)', 'AJ', now()), +(10178, 'Portia Faces Life', 'US', now()), +(10179, 'The Paul Dixon Show', 'US', now()), +(10180, 'The Paul Arnold Show', 'US', now()), +(10181, 'Party Line', 'US', now()), +(10182, 'From These Roots', 'US', now()), +(10183, 'Company Town', 'US', now()), +(10184, 'The Paranormal Borderline', 'US', now()), +(10185, 'The Parent Game', 'US', now()), +(10186, 'Partners In Crime', 'US', now()), +(10187, 'S.O.P. (Sobrang Okey Pare)', 'PH', now()), +(10188, 'Air Crash Investigation', 'CA', now()), +(10189, 'Flipside (PH)', 'PH', now()), +(10190, 'Yo Momma', 'US', now()), +(10191, 'xxxHOLiC', 'JP', now()), +(10192, 'Divorce Court (1957)', 'US', now()), +(10193, 'Divorce Court (1986)', 'US', now()), +(10194, 'Divorce Court (1999)', 'US', now()), +(10195, 'Power Of Attorney', 'US', now()), +(10196, 'The Men''s Room', 'US', now()), +(10197, 'Bubble Gang', 'PH', now()), +(10198, 'I''ve Got a Secret (2006)', 'US', now()), +(10199, 'The Naked Trucker & T-Bones Show', 'US', now()), +(10201, 'Kodocha (US)', 'AJ', now()), +(10202, 'Denim Blues', 'CA', now()), +(10203, 'Pinoy Pop Superstar', 'PH', now()), +(10204, 'XPW Wrestling', 'US', now()), +(10205, 'SoapTalk', 'US', now()), +(10206, 'The British Academy Film and Television Arts Awards', 'UK', now()), +(10207, 'The Cosmopolitan Prayers', 'JP', now()), +(10208, 'Golden Windows', 'US', now()), +(10209, 'British Book Awards', 'UK', now()), +(10210, 'César Awards', 'FR', now()), +(10211, 'Ariel Awards', 'MX', now()), +(10212, 'Football Night in America', 'US', now()), +(10213, 'Hidden Faces', 'US', now()), +(10214, 'Drama Connections', 'UK', now()), +(10215, 'The Weekend', 'US', now()), +(10216, 'Pyramid (2002)', 'US', now()), +(10217, 'School''s Out', 'UK', now()), +(10218, 'The New Paul O''Grady Show', 'UK', now()), +(10219, 'The Bennetts', 'US', now()), +(10220, 'Girl Racers', 'CA', now()), +(10221, 'Cluster Edge', 'JP', now()), +(10222, 'Coji-Coji', 'JP', now()), +(10223, 'Chuck Norris: Karate Kommandos', 'US', now()), +(10224, 'The Road Of Life', 'US', now()), +(10225, 'Lonesome Dove', 'US', now()), +(10226, 'Bands on the Run', 'US', now()), +(10227, 'Outrageous and Contagious Viral Videos', 'US', now()), +(10228, 'NWA Pay-Per-View', 'US', now()), +(10229, 'Cosmic Slop', 'US', now()), +(10230, 'Comedy Club (US)', 'US', now()), +(10231, 'Jimmy Durante Presents the Lennon Sisters', 'US', now()), +(10232, 'Property Ladder (US)', 'US', now()), +(10233, 'Protagonistas de novela 2', 'US', now()), +(10234, 'Viltu vinna milljón?', 'IS', now()), +(10235, 'Who Wants to Be a Millionaire (PH)', 'PH', now()), +(10237, 'Cocktail Kings', 'US', now()), +(10238, 'Back on Campus', 'US', now()), +(10239, 'Today Is Ours', 'US', now()), +(10240, 'Bamzooki', 'UK', now()), +(10241, 'Rap City', 'US', now()), +(10242, 'Video Soul', 'US', now()), +(10243, 'Valiant Lady', 'US', now()), +(10244, 'Hard Knocks', 'US', now()), +(22582, 'Sinatra', 'US', now()), +(10246, '10 Days That Unexpectedly Changed America', 'US', now()), +(10247, 'Pantomime Quiz', 'US', now()), +(10248, 'Celebrity Cooking Showdown', 'US', now()), +(10249, 'Iketeru Futari', 'JP', now()), +(10250, 'Cosmic Baton Girl Comet-san', 'JP', now()), +(10251, 'Palmerstown, U.S.A.', 'US', now()), +(10252, 'The Reality Show', 'US', now()), +(10253, 'The Queen''s Castle', 'UK', now()), +(10254, 'The Vise', 'UK', now()), +(10255, 'Seconds from Disaster', 'US', now()), +(10256, 'My Ex Life', 'US', now()), +(10257, 'Drive', 'US', now()), +(14750, 'Challenge Anneka (2006)', 'UK', now()), +(10259, 'Raising Miranda', 'US', now()), +(10260, 'Decoy', 'US', now()), +(10261, 'Seven Periods With Mr Gormsby', 'NZ', now()), +(10262, 'The Hamptons', 'US', now()), +(10271, 'I Love the ''70s: Volume 2', 'US', now()), +(10264, 'The Schools Lottery', 'UK', now()), +(10265, 'WWF Prime Time Wrestling', 'US', now()), +(10266, 'Honey We''re Killing the Kids! (US)', 'US', now()), +(10267, 'Shalom in the Home', 'US', now()), +(10268, 'Follow Your Heart', 'US', now()), +(10269, 'De Parelvissers', 'BE', now()), +(10270, 'Stellvia', 'JP', now()), +(10272, 'Great British Menu', 'UK', now()), +(10308, 'The Howard Stern Show', 'US', now()), +(10274, 'The Greatest Gift', 'US', now()), +(10275, 'Mahou no Tenshi Creamy Mami', 'JP', now()), +(10276, 'Cromartie High School (JP)', 'JP', now()), +(10277, 'The Egg And I', 'US', now()), +(10278, 'Abroad Again in Britain', 'UK', now()), +(10279, 'Art Crime', 'UK', now()), +(10280, 'Adam and Joe Go Tokyo!', 'UK', now()), +(10281, 'The Test', 'US', now()), +(10282, 'Celebrity Eye Candy', 'US', now()), +(10283, 'Player$', 'US', now()), +(10284, 'Gokinjo Monogatari', 'JP', now()), +(10285, 'That''ll Test ''Em', 'UK', now()), +(10286, 'Cutey Honey Flash', 'JP', now()), +(10287, 'Bonds on Bonds', 'US', now()), +(10288, 'Classmates', 'US', now()), +(10289, 'The Tim Conway Show (1980)', 'US', now()), +(10290, 'The Tim Conway Comedy Hour', 'US', now()), +(10291, 'The Best Of Everything', 'US', now()), +(10292, 'The Street', 'UK', now()), +(10293, 'The Queen At 80', 'UK', now()), +(10294, 'The Lost World Of Friese-Greene', 'UK', now()), +(10295, 'The Tim Conway Show (1970)', 'US', now()), +(10296, 'Howard Stern', 'US', now()), +(10297, 'Daisuki! Bubu- Chacha', 'JP', now()), +(10298, 'Mai-Otome', 'JP', now()), +(14663, 'Confessions', 'UK', now()), +(10300, 'Tuckerville', 'US', now()), +(10301, 'A Time To Live', 'US', now()), +(10302, 'Geraldo', 'US', now()), +(10303, 'Ippatsu Kiki Musume', 'JP', now()), +(10304, 'O Canada', 'CA', now()), +(10305, 'Brother, Dear Brother', 'JP', now()), +(10310, 'Can''t Get a Date', 'US', now()), +(10311, 'Brazil''s Roswell', 'US', now()), +(10312, 'Ann Jillian', 'US', now()), +(10313, 'The First Hundred Years', 'US', now()), +(10314, 'Skag', 'US', now()), +(10315, 'Garbage Pail Kids', 'US', now()), +(10316, 'Gear Fighter Dendoh', 'JP', now()), +(15214, 'The Likeaballs', 'UK', now()), +(10318, 'CNET Central', 'US', now()), +(10319, 'Totally Hidden Video', 'US', now()), +(10320, 'The New Edge', 'US', now()), +(10321, 'Transylvania Pet Shop', 'UK', now()), +(10322, 'Miss Susan', 'US', now()), +(10323, 'Guardian Angels, MD', 'US', now()), +(10324, 'Rurouni Kenshin (US)', 'AJ', now()), +(10325, 'Boys Will Be Girls', 'UK', now()), +(10326, 'Girls Aloud: Off the Record', 'UK', now()), +(10327, 'Vroom Vroom', 'UK', now()), +(10328, 'Chantelle''s Dream Dates', 'UK', now()), +(10329, 'Vorderman''s Big Brain Game', 'UK', now()), +(10330, 'Second Chance (1977)', 'US', now()), +(10331, 'Ellis Island', 'US', now()), +(10332, 'Our Time', 'US', now()), +(10333, 'Ideon', 'JP', now()), +(10334, 'Legendary Brave Da Garn', 'JP', now()), +(10335, 'A Perfect Spy', 'UK', now()), +(10336, 'Moment Of Truth (US)', 'CA', now()), +(10337, 'Kannazuki no Miko', 'JP', now()), +(10338, 'Talk Show with Spike Feresten', 'US', now()), +(10339, 'Much Music VJ Search: The Series', 'CA', now()), +(10340, 'The Winjin'' Pom', 'UK', now()), +(10710, 'Belonging', 'UK', now()), +(10342, 'Seeing Stars', 'US', now()), +(10343, 'The John Gary Show', 'US', now()), +(10344, 'Devilman', 'JP', now()), +(10345, 'Our Five Daughters', 'US', now()), +(10346, 'Argaï: La prophétie', 'FR', now()), +(10347, 'The Face Is Familiar', 'US', now()), +(10348, 'Face To Face', 'US', now()), +(10349, 'Families At War', 'UK', now()), +(10350, 'Family Bowl Quiz', 'AU', now()), +(10351, 'The Family Game', 'AU', now()), +(10352, 'Fifteen To One', 'UK', now()), +(10353, 'Film Buff Of The Year', 'UK', now()), +(10354, 'Flying Start (UK)', 'UK', now()), +(10355, 'Friends Like These', 'UK', now()), +(10356, 'Full House (1999)', 'UK', now()), +(10357, 'Fun & Games', 'UK', now()), +(10358, 'Game For A Laugh', 'UK', now()), +(10359, 'Garry Bushell Reveals All', 'UK', now()), +(10360, 'The Generation Game', 'UK', now()), +(10361, 'Guess My Story (CA)', 'CA', now()), +(10362, 'God''s Gift', 'UK', now()), +(10363, 'The Golden Shot', 'UK', now()), +(10364, 'Grand Slam (UK)', 'UK', now()), +(10365, 'The Greatest Man On Earth', 'US', now()), +(10366, 'The Great House Game', 'UK', now()), +(10367, 'Grudge Match', 'UK', now()), +(10368, 'Guess My Story (UK)', 'UK', now()), +(10369, 'Guess What (US)', 'US', now()), +(10370, 'Guilty Or Not Guilty', 'CA', now()), +(10371, 'Headliners', 'UK', now()), +(10372, 'The Heat Is On', 'UK', now()), +(10373, 'High Rollers (US)', 'US', now()), +(10374, 'The Honeymoon Race', 'US', now()), +(10375, 'Up Canada', 'CA', now()), +(10376, 'Up, Up And Away', 'CA', now()), +(10378, 'VIP', 'CA', now()), +(10379, 'Whistle Town', 'CA', now()), +(10380, 'The Whiteoaks Of Jaina', 'CA', now()), +(10381, 'Zap', 'BE', now()), +(10382, 'Bill and Ben', 'UK', now()), +(10383, 'Blue Ribbon', 'US', now()), +(10385, 'Seaway', 'CA', now()), +(10387, 'Skipper And Co', 'CA', now()), +(10388, 'Skullduggery', 'CA', now()), +(10389, 'Space Command', 'CA', now()), +(10390, 'STRAIGHT UP', 'CA', now()), +(10391, 'Talking To A Stranger (CA)', 'CA', now()), +(10392, '10-07: L''affaire Zeus', 'CA', now()), +(10393, 'Tidewater Tramp', 'CA', now()), +(10394, 'Toby', 'CA', now()), +(10395, 'Up At Ours', 'CA', now()), +(10396, 'Action In The Afternoon', 'US', now()), +(15231, 'Yes', 'UK', now()), +(10398, 'Paul Bernard, Psychiatrist', 'CA', now()), +(10399, 'Pieces Of Eight', 'CA', now()), +(11045, 'The Dating Game', 'US', now()), +(10401, 'UFO''s What You Didn''t Know', 'US', now()), +(10402, 'Three Steps To Heaven', 'US', now()), +(10403, 'Один за всіх', 'UA', now()), +(10404, 'Misguided Angels', 'CA', now()), +(10405, 'Piffle And Co', 'CA', now()), +(10406, 'Planet Toley', 'CA', now()), +(10407, 'Playdate', 'CA', now()), +(10408, 'America''s Got Talent', 'US', now()), +(10409, 'The Play''s The Thing (CA)', 'CA', now()), +(10410, 'Playtime With Jerry', 'CA', now()), +(10411, 'Program X', 'CA', now()), +(10412, 'Purple Playhouse', 'CA', now()), +(10413, 'R.C.M.P', 'CA', now()), +(10414, 'Radisson', 'CA', now()), +(10415, 'Ritter''s Cove', 'CA', now()), +(10416, 'Royal Suite', 'CA', now()), +(10417, 'My Boys', 'US', now()), +(10418, '10 Items or Less', 'US', now()), +(10419, 'The Company', 'US', now()), +(10420, 'A Little Princess Sara', 'JP', now()), +(10421, 'Takarajima', 'JP', now()), +(10422, 'Newfoundland Holiday', 'CA', now()), +(10423, 'Nic And Pic', 'CA', now()), +(10424, 'Norman Corwin Presents', 'CA', now()), +(10425, 'Nursery School Time', 'CA', now()), +(10426, 'Old Testament Tales', 'CA', now()), +(10427, 'On Camera', 'CA', now()), +(10428, 'The Other Man', 'CA', now()), +(10429, 'The Littlest Hobo (1963)', 'CA', now()), +(10430, 'Search For the Funniest Mom in America', 'US', now()), +(10431, 'Dark Towers', 'UK', now()), +(10432, 'Cavegirl', 'UK', now()), +(10433, 'Decades', 'UK', now()), +(10434, 'The Trouble With Gay Men', 'UK', now()), +(10435, 'The Smith & Jones Sketchbook', 'UK', now()), +(10436, 'Robin Hood', 'UK', now()), +(10437, 'Interceptor', 'UK', now()), +(10438, 'In The Dark With Julian Clary', 'UK', now()), +(10439, 'IslanDares', 'AU', now()), +(10440, 'It''s A Knockout', 'UK', now()), +(10441, 'I''ve Got A Secret (UK)', 'UK', now()), +(10442, 'Jokers Wild', 'UK', now()), +(10443, 'Jumpers For Goalpoasts', 'UK', now()), +(10444, 'Juke Box Jury (UK)', 'UK', now()), +(10445, 'Just A Minute', 'UK', now()), +(10446, 'Ken & Jonathan', 'AU', now()), +(10447, 'Kidnapped (2002)', 'US', now()), +(10448, 'Laugh Line', 'US', now()), +(10449, 'Liar', 'UK', now()), +(10450, 'Lie Detector (UK)', 'UK', now()), +(10451, 'Life''s A Punt', 'UK', now()), +(10452, 'Loft Story', 'FR', now()), +(10453, 'Love''s Like A Dog', 'UK', now()), +(10454, 'Lucky Numbers', 'UK', now()), +(10455, 'The Mad Dash', 'CA', now()), +(10456, 'Made In America (1964)', 'US', now()), +(10457, 'Make Me Laugh (UK)', 'UK', now()), +(10458, 'Make My Day', 'US', now()), +(10459, 'Man O Man (UK)', 'UK', now()), +(10460, 'Mark & Lard''s Pop Upstairs Downstairs', 'UK', now()), +(10461, 'Masterchef (UK)', 'UK', now()), +(10462, 'Mastermind (UK)', 'UK', now()), +(10463, 'Michael Barrymore''s My Kind Of Music', 'UK', now()), +(10464, 'Mr. & Mrs. (1972)', 'UK', now()), +(10465, 'Mr. & Mrs. (1999)', 'UK', now()), +(10466, 'The Mole (UK)', 'UK', now()), +(10467, 'The Moment Of Truth (UK)', 'UK', now()), +(10468, 'The Money Game', 'AU', now()), +(10469, 'Mother''s Day', 'US', now()), +(10470, 'Move On Up', 'UK', now()), +(10471, 'CD USA', 'US', now()), +(10472, 'The Mac Davis Show', 'US', now()), +(10473, 'Totally Doctor Who', 'UK', now()), +(10474, 'Let''s Call The Whole Thing Off', 'CA', now()), +(10475, 'Limboland', 'CA', now()), +(10476, 'Live A Borrowed Life', 'CA', now()), +(10477, 'The Lively Arts', 'CA', now()), +(10478, 'The Long Journey Of Lukas B.', 'CA', now()), +(10479, 'Look Who''s Here', 'CA', now()), +(10480, 'Maggie Muggins', 'CA', now()), +(10481, 'Make A Match', 'CA', now()), +(10482, 'Mallets And Brass', 'CA', now()), +(10483, 'The Man From Tomorrow', 'CA', now()), +(10484, 'The Manipulators', 'CA', now()), +(10485, 'Marc''s Grab Bag', 'CA', now()), +(10486, 'Marquee', 'CA', now()), +(10487, 'Married Life', 'CA', now()), +(10488, 'McQueen', 'CA', now()), +(10489, 'Midnight Zone', 'CA', now()), +(10490, 'A Midsummer Theater', 'CA', now()), +(10491, 'Minnow On The Say', 'CA', now()), +(10492, 'Mr Fixit', 'CA', now()), +(10493, 'Mr Showbusiness', 'CA', now()), +(10494, 'Moonlight Bay', 'CA', now()), +(10495, 'Mount Royal', 'CA', now()), +(10496, 'My Kind Of Country', 'CA', now()), +(10497, 'The Mystery Maker', 'CA', now()), +(10498, 'Hatch''s Mill', 'CA', now()), +(10499, 'A Hatful Of Music', 'CA', now()), +(10500, 'Here To Stay', 'CA', now()), +(10501, 'Here''s Duffy', 'CA', now()), +(10502, 'Hey, Taxi', 'CA', now()), +(10503, 'Hi Diddle Day', 'CA', now()), +(10504, 'Homemade TV', 'CA', now()), +(10505, 'Hometown', 'CA', now()), +(10506, 'House Of Pride', 'CA', now()), +(10507, 'House Party', 'CA', now()), +(10508, 'Hudson''s Bay', 'CA', now()), +(10509, 'In Person', 'CA', now()), +(10510, 'In The Mood', 'CA', now()), +(10511, 'In The Storybook', 'CA', now()), +(10512, 'Irish Coffee', 'CA', now()), +(10513, 'It''s Our Stuff', 'CA', now()), +(10514, 'It''s Your Choice', 'CA', now()), +(10515, 'Jack London''s Tales Of The Klondike', 'CA', now()), +(10516, 'The Joan Fairfax Show', 'CA', now()), +(10517, 'The John Allan Cameron Show', 'CA', now()), +(10518, 'Juliette And Friends', 'CA', now()), +(10519, 'Junior Magazine', 'CA', now()), +(10520, 'Junior Television Club', 'CA', now()), +(10521, 'Just Ask, Inc.', 'CA', now()), +(10522, 'Just For Fun', 'CA', now()), +(10523, 'The King''s Cupboard', 'CA', now()), +(10524, 'Krazy House', 'CA', now()), +(10525, 'Fables Of La Fontaine', 'CA', now()), +(10526, 'The Family (CA)', 'CA', now()), +(10527, 'Family Court', 'CA', now()), +(10528, 'Festival', 'CA', now()), +(10529, 'Romeo no Aoi Sora', 'JP', now()), +(10711, 'Bagatelle', 'CA', now()), +(10531, 'Spider Riders (JP)', 'JP', now()), +(10532, 'TV’s TOP Tunes', 'US', now()), +(10533, 'Our Secret Weapon: The Truth', 'US', now()), +(10534, 'Our Times With Bill Moyers', 'US', now()), +(10535, 'Nick News with Linda Ellerbee', 'US', now()), +(10536, 'Ozark Jubilee', 'US', now()), +(10537, 'Thank God You''re Here', 'AU', now()), +(10538, 'Concerning Miss Marlowe', 'US', now()), +(10539, 'Dirty Pair (JP)', 'JP', now()), +(10540, '55 North Maple', 'CA', now()), +(10541, 'First Performance', 'CA', now()), +(10542, 'Forest Rangers', 'CA', now()), +(10543, 'Friday Island', 'CA', now()), +(10544, 'Front And Centre', 'CA', now()), +(10545, 'Fun Time', 'CA', now()), +(10546, 'The Galloping Gourmet', 'US', now()), +(10547, 'Gene And Jodie', 'CA', now()), +(10548, 'General Motors Presents', 'CA', now()), +(10549, 'General Motors Theatre', 'CA', now()), +(10550, 'Gerry And Ziz', 'CA', now()), +(10551, 'The Golden Age Players', 'CA', now()), +(10552, 'The Good Company', 'CA', now()), +(10553, 'The Group (CA)', 'CA', now()), +(10554, 'Guest Stage', 'CA', now()), +(10555, 'Dancing Storybook', 'CA', now()), +(10556, 'Dateline (CA)', 'CA', now()), +(10557, 'The David Clayton-Thomas Show', 'CA', now()), +(10558, 'Delilah', 'CA', now()), +(10559, 'The Denny Vaughan Show', 'CA', now()), +(10560, 'Outside The Lines Nightly', 'US', now()), +(10561, 'Merlin''s Apprentice', 'UK', now()), +(10562, 'The Ray Anthony Show', 'US', now()), +(10563, 'Quite Frankly with Stephen A. Smith', 'US', now()), +(10564, 'Manchester Passion', 'UK', now()), +(10565, 'Stump the Schwab', 'US', now()), +(10566, 'Mike & Mike in the Morning', 'US', now()), +(10567, 'Where''s Raymond?', 'US', now()), +(10568, 'To Tell the Truth (2000)', 'US', now()), +(10569, 'The Ray Milland Show', 'US', now()), +(10570, 'Ray Scherer''s Sunday Report', 'US', now()), +(10571, 'Real Life With Jane Pauley', 'US', now()), +(10572, 'Real People', 'US', now()), +(10573, 'Rebound', 'US', now()), +(10574, 'Red Barber''s Corner', 'US', now()), +(10575, 'Reckoning', 'US', now()), +(10576, 'The Red Buttons Show', 'US', now()), +(10577, 'Redd Foxx', 'US', now()), +(10578, 'GTO: Great Teacher Onizuka', 'JP', now()), +(10579, 'Carl Squared (Carl²)', 'CA', now()), +(10580, 'Gimik', 'PH', now()), +(10581, 'America''s Test Kitchen', 'US', now()), +(10582, 'Simply Ming', 'US', now()), +(10583, 'Redhanded', 'US', now()), +(10584, 'The Reel Game', 'US', now()), +(10585, 'Reggie', 'US', now()), +(10586, 'Rehearsal Call', 'US', now()), +(10587, 'Woman With A Past', 'US', now()), +(10588, 'Sons of Butcher', 'CA', now()), +(10589, 'Denny''s Sho*', 'CA', now()), +(10590, 'The Diane Stapley Show', 'CA', now()), +(10591, 'Dianne', 'CA', now()), +(10592, 'Discoveries', 'CA', now()), +(10593, 'Distinguished Canadians', 'CA', now()), +(10594, 'Dr Simon Locke', 'CA', now()), +(10595, 'Dr Zonk And The Zunkins', 'CA', now()), +(10596, 'Don Messer''s Jubilee', 'CA', now()), +(10597, 'Dorchester Theater', 'CA', now()), +(10598, 'The Doug Crosley Show', 'CA', now()), +(10599, 'Down Home Country', 'CA', now()), +(10600, 'Ed And Ross', 'CA', now()), +(10601, 'The Ed Evanko Show', 'CA', now()), +(10602, 'Ed McCurdy', 'CA', now()), +(10603, 'Ed''s Place', 'CA', now()), +(10604, 'Ekhaya - A Family Chronicle', 'CA', now()), +(10605, 'Eleanor', 'CA', now()), +(10606, 'Encounter', 'CA', now()), +(10607, 'The Explorers', 'CA', now()), +(10608, 'Popworld', 'UK', now()), +(10609, 'The Suze Orman Show', 'US', now()), +(10610, 'Hospital Central', 'ES', now()), +(10611, 'The Ultimate Coyote Ugly Search', 'US', now()), +(10612, 'Rendezvous', 'UK', now()), +(10613, 'Rendezvous With Music', 'US', now()), +(10614, 'Report Card For Parents', 'US', now()), +(10615, 'Report From...', 'US', now()), +(10616, 'Report On...', 'US', now()), +(10617, 'The Reporter', 'US', now()), +(10618, 'The Reporters (US)', 'US', now()), +(10619, 'Rescue 8', 'US', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(10620, 'The Seeking Heart', 'US', now()), +(10621, 'En Fråga Om Liv Och Död', 'SE', now()), +(10622, 'FutureWeapons', 'US', now()), +(10623, 'Super Humans', 'US', now()), +(10624, 'Tiara Girls', 'US', now()), +(10625, 'Sexiest', 'US', now()), +(10626, 'Vital Signs', 'UK', now()), +(10627, 'Murder Squad', 'UK', now()), +(10628, 'Douglas Fairbanks, Jr., Presents', 'UK', now()), +(10629, 'Kyle XY', 'US', now()), +(10630, 'Cabaret (CA)', 'CA', now()), +(10631, 'Call For Music', 'CA', now()), +(10632, 'Canadian Stars', 'CA', now()), +(10633, 'Caravan', 'CA', now()), +(10634, 'Cariboo Country', 'CA', now()), +(10635, 'Carica Tours', 'CA', now()), +(10636, 'Cartoon Party', 'CA', now()), +(10637, 'A Case For The Court', 'CA', now()), +(10638, 'Catch A Rising Star', 'CA', now()), +(10639, 'Catch Up', 'CA', now()), +(10640, 'CBC Concert Hour', 'CA', now()), +(10641, 'The C.G.E Show', 'CA', now()), +(10642, 'Charcoal Chefs', 'CA', now()), +(10643, 'Charlie Had One But He Didn''t Like It So He Gave It To Us', 'CA', now()), +(10644, 'Chasing Rainbows', 'CA', now()), +(10645, 'Chez Helene', 'CA', now()), +(10646, 'Chrysler Festival', 'CA', now()), +(10647, 'Club O''Connor', 'CA', now()), +(10648, 'Club 6', 'CA', now()), +(10649, 'Come Fly With Me', 'CA', now()), +(10650, 'Comedy Cafe', 'CA', now()), +(10651, 'Coming Attractions', 'CA', now()), +(10652, 'Corwin', 'CA', now()), +(10653, 'Country Club', 'CA', now()), +(10654, 'Country Hoedown', 'CA', now()), +(10655, 'Country Joy', 'CA', now()), +(10656, 'Country Roads', 'CA', now()), +(10657, 'Cover Me', 'CA', now()), +(10658, 'Revlon Mirror Theatre', 'US', now()), +(10659, 'The Revlon Revue', 'US', now()), +(10660, 'The Rhinemann Exchange', 'US', now()), +(10661, 'Rhythm Rodeo', 'US', now()), +(10662, 'The Rich Little Show', 'US', now()), +(10663, 'Wonder Pets', 'US', now()), +(10664, 'The Riker', 'US', now()), +(10666, 'Shops, Robbers & Videotape', 'UK', now()), +(10667, 'Save Lullingstone Castle', 'UK', now()), +(10668, 'Eggheads', 'UK', now()), +(10670, 'Teammates', 'US', now()), +(15582, 'Cooking In The Danger Zone', 'UK', now()), +(10672, 'Hatching, Matching & Dispatching', 'US', now()), +(10673, 'Divine Design', 'US', now()), +(10674, 'Hostal Royal Manzanares', 'ES', now()), +(10675, 'Naked Elvis', 'UK', now()), +(10676, 'Naked Jungle', 'UK', now()), +(10677, 'Name That Tune (1953)', 'US', now()), +(10678, 'Name That Tune (1984)', 'US', now()), +(10679, 'Needlematch', 'UK', now()), +(10680, 'The Neighbors', 'US', now()), +(10681, 'Night Fever', 'UK', now()), +(10682, 'Now Get Out Of That', 'UK', now()), +(10683, 'Now You See It', 'UK', now()), +(10684, 'Oblivious (UK)', 'UK', now()), +(10685, 'Odd One Out', 'UK', now()), +(10686, 'One False Move', 'UK', now()), +(10687, 'One Man And His Dog', 'UK', now()), +(10688, 'One To Win', 'UK', now()), +(10689, 'Only Joking', 'UK', now()), +(10690, 'The Other Half (UK)', 'UK', now()), +(10691, 'Passport', 'UK', now()), +(10692, 'Pass The Buck (1986)', 'UK', now()), +(10693, 'Pass The Buck (1998)', 'UK', now()), +(10694, 'Pass The Buck (AU)', 'AU', now()), +(10695, 'Perfect Match (AU)', 'AU', now()), +(10696, 'Perfect Match (UK)', 'UK', now()), +(10697, 'Play Your Cards Right', 'UK', now()), +(10698, 'Poparound', 'UK', now()), +(10699, 'Pop Quest', 'UK', now()), +(10700, 'Popped In, Crashed Out', 'UK', now()), +(10701, 'Pop Quiz', 'UK', now()), +(10702, 'Pop The Question (1965)', 'UK', now()), +(10703, 'Pop The Question (1985)', 'UK', now()), +(10704, 'Prickly Heat', 'UK', now()), +(10705, 'Punchlines', 'UK', now()), +(10706, 'The Pyramid Game', 'UK', now()), +(10707, 'A Question Of EastEnders', 'UK', now()), +(10708, 'A Question Of Pop', 'UK', now()), +(10709, 'Ben Jerrod', 'US', now()), +(10712, 'The Bananas', 'CA', now()), +(10713, 'Barney''s Gang', 'CA', now()), +(10714, 'Barris And Company', 'CA', now()), +(10715, 'The Barris Beat', 'CA', now()), +(10716, 'The Big Revue', 'CA', now()), +(10717, 'The Bill Kenny Show', 'CA', now()), +(10718, 'Bim Bam Boom', 'CA', now()), +(10719, 'The Billy O''Connor Show', 'CA', now()), +(10720, 'The Bob McLean Show', 'CA', now()), +(10721, 'Bonjour, Bon Jour', 'CA', now()), +(10722, 'Burns Chuckwagon From The Stampede Coral', 'CA', now()), +(10723, 'Butternut Square', 'CA', now()), +(10724, 'About Canada', 'CA', now()), +(10725, 'Ad And Lib', 'CA', now()), +(10726, 'Adderley', 'CA', now()), +(10727, 'Adieu Alouette', 'CA', now()), +(10728, 'The Adventures Of Chich', 'CA', now()), +(10729, 'The Adventures Of Tugboat Annie', 'CA', now()), +(10730, 'Adventure Time (CA)', 'CA', now()), +(10731, 'After Four', 'CA', now()), +(10732, 'Afternoon Delight', 'CA', now()), +(10733, 'The Age Of Uncertainty', 'CA', now()), +(10734, 'A Is For Aardvark', 'CA', now()), +(10735, 'Al Oeming - Man Of The North', 'CA', now()), +(10736, 'Albert''s Place', 'CA', now()), +(10737, 'The Amazing World Of Kreskin', 'CA', now()), +(10738, 'Applause, Applause', 'CA', now()), +(10739, 'Arts', 'CA', now()), +(10740, 'Ark On The Move', 'CA', now()), +(10741, 'As Time Goes By (CA)', 'CA', now()), +(10742, 'Aubrey And Gus', 'CA', now()), +(10743, 'Audubon Wildlife Theatre', 'CA', now()), +(10744, 'Don''t Leave Me Alone, Daisy', 'JP', now()), +(10745, 'Skater Boys', 'US', now()), +(10746, 'Meet Mister Mom', 'US', now()), +(10747, 'Lovers And Friends', 'US', now()), +(10748, 'Economy Class', 'AU', now()), +(10749, 'New Street Law', 'UK', now()), +(10750, 'The Impressionists', 'UK', now()), +(10751, 'Home Again', 'UK', now()), +(10752, 'Jane Eyre (2006)', 'UK', now()), +(10753, 'Sinchronicity', 'UK', now()), +(10754, 'Weekend Outlook', 'US', now()), +(10755, 'Weekend View', 'US', now()), +(10756, 'Weekend Planner', 'US', now()), +(10757, 'Weekend Now', 'US', now()), +(10758, 'For Richer, For Poorer', 'US', now()), +(10759, 'Gang Busters', 'US', now()), +(10760, 'NANA', 'JP', now()), +(10761, 'Rush Limbaugh', 'US', now()), +(10762, 'Ojamajo Doremi', 'JP', now()), +(10763, 'Dororo', 'JP', now()), +(10764, 'Silenci?', 'ES', now()), +(10765, 'Canada Russia 1972', 'CA', now()), +(10766, 'E''s Otherwise (US)', 'AJ', now()), +(10767, 'Eat-Man', 'JP', now()), +(10768, 'Sarutobi Ecchan', 'JP', now()), +(10769, 'Fight Klub', 'US', now()), +(10770, 'Animal Cops: Detroit', 'US', now()), +(10771, 'This Job''s a Trip', 'US', now()), +(10772, 'Edokko Boy: Gatten Taro', 'JP', now()), +(10773, 'Ehrgeiz', 'JP', now()), +(10774, 'Ten Days that Made the Queen', 'UK', now()), +(10775, 'Nanatsu no Umi no Tico', 'JP', now()), +(10776, 'NBA Finals', 'US', now()), +(10777, 'Great Performances', 'US', now()), +(10778, 'Eurovision Song Contest', 'eu', now()), +(10779, 'The Girl Who Would Be Queen', 'UK', now()), +(10780, 'Little Einsteins', 'US', now()), +(10781, 'El Juego de la Vida', 'MX', now()), +(10782, 'Agujetas de Color de Rosa', 'MX', now()), +(10783, 'Alps no Shoujo Heidi', 'JP', now()), +(10784, 'Locura de Amor', 'MX', now()), +(10785, 'Jane And The Dragon', 'CA', now()), +(10786, 'Love in a Cold Climate (2001)', 'UK', now()), +(10787, 'El Hazard: The Wanderers', 'JP', now()), +(14661, 'American Gangster', 'US', now()), +(10790, '10.5: Apocalypse', 'US', now()), +(10791, 'How Do You Solve A Problem Like Maria?', 'UK', now()), +(10792, 'Not Going Out', 'UK', now()), +(10793, 'Jam & Jerusalem', 'UK', now()), +(10794, 'Up For Parole', 'UK', now()), +(10795, 'Beau Brummell', 'UK', now()), +(10796, 'My Generation (1998)', 'US', now()), +(10797, 'Fire Station', 'UK', now()), +(10798, 'After You''ve Gone', 'UK', now()), +(10799, 'The Omid Djalili Show', 'UK', now()), +(15725, 'He Said, She Said (1969)', 'US', now()), +(10802, 'Sorted', 'UK', now()), +(10803, 'Sweeney Todd', 'UK', now()), +(10804, 'Roman Mysteries', 'UK', now()), +(10805, 'I Spy (UK)', 'UK', now()), +(10806, 'Summerhill', 'UK', now()), +(10807, 'Young Dracula', 'UK', now()), +(10808, 'Desperados', 'UK', now()), +(10809, 'RU Game?', 'UK', now()), +(10810, '101 Things To Do With Ice Cream', 'UK', now()), +(10811, 'Beat The Boss', 'UK', now()), +(10812, 'Tronji', 'UK', now()), +(10813, 'In The Night Garden', 'UK', now()), +(10814, 'Me Too!', 'UK', now()), +(10815, 'The Great Music Show', 'UK', now()), +(10816, 'Never Mind The Full Stops', 'UK', now()), +(10817, 'VM Show Vol. 2', 'ES', now()), +(10818, 'Anime Oyako Gekijo', 'JP', now()), +(10819, 'The Soupy Sales Show (1976)', 'US', now()), +(10820, 'The Soupy Sales Show (1959)', 'US', now()), +(10821, 'The Soupy Sales Show (1965)', 'US', now()), +(10822, 'Camp Orange: Slimey Hollow', 'AU', now()), +(10823, 'The World Of Cilla', 'UK', now()), +(10824, 'Mickey Mouse Clubhouse', 'US', now()), +(10825, 'The Andrew Marr Show', 'UK', now()), +(10826, 'Quizball', 'UK', now()), +(10827, 'Remotely Funny', 'UK', now()), +(10828, 'River Deep, Mountain High', 'UK', now()), +(10829, 'Roll With It', 'UK', now()), +(10830, 'Run The Gauntlet', 'UK', now()), +(10831, 'Sale Of The Century (UK)', 'UK', now()), +(10832, 'Say The Word', 'UK', now()), +(10833, 'Scrapheap Challenge', 'UK', now()), +(10834, 'Shafted', 'AU', now()), +(10835, 'Singled Out (US)', 'US', now()), +(10836, 'Singled Out (UK)', 'UK', now()), +(10837, 'Sixth Form Challenge', 'UK', now()), +(10838, 'The 64,000 Question', 'UK', now()), +(10839, 'The Sky''s The Limit', 'UK', now()), +(10840, 'A Slice Of The Action', 'UK', now()), +(10841, 'Small Talk (UK)', 'UK', now()), +(10842, 'Speculate', 'UK', now()), +(10843, 'Sporting Triangles', 'UK', now()), +(10844, 'Spot The Tune', 'UK', now()), +(10845, 'The Staying-In Show', 'UK', now()), +(10846, 'Streetmate (UK)', 'UK', now()), +(10847, 'Strike It Lucky (UK)', 'UK', now()), +(10848, 'Superchefs', 'UK', now()), +(10849, 'Supermarket Sweep (UK)', 'UK', now()), +(10850, 'Supermarket Sweep (US)', 'US', now()), +(10851, 'Superstars', 'UK', now()), +(10852, 'The Sweepstakes Game', 'UK', now()), +(10853, 'The Syndicate', 'UK', now()), +(10854, 'Take A Letter', 'UK', now()), +(10855, 'Take Your Pick', 'UK', now()), +(10856, 'Talkabout', 'UK', now()), +(10857, 'Techno Games', 'UK', now()), +(10858, 'Tell The Truth', 'UK', now()), +(10859, 'Telly Addicts', 'UK', now()), +(10860, 'Tellystack', 'UK', now()), +(10861, 'Test The Nation', 'UK', now()), +(10862, 'Three''s A Crowd (1979)', 'US', now()), +(10863, 'Three, Two, One', 'UK', now()), +(10864, 'Timechase', 'CA', now()), +(10865, 'Today''s The Day', 'UK', now()), +(10866, 'Television Top Of The Form', 'UK', now()), +(10867, 'Trading Up', 'UK', now()), +(10868, 'Treasure Hunt (UK)', 'UK', now()), +(10869, 'Treasure Hunt (2002)', 'UK', now()), +(10870, 'Trivial Pursuit', 'UK', now()), +(10871, 'Truth Or Consequences', 'US', now()), +(10872, 'Twenty Questions', 'UK', now()), +(10873, '2000 To 1', 'UK', now()), +(10874, 'Ultraquiz', 'UK', now()), +(10875, 'Under Offer', 'UK', now()), +(10876, 'University Challenge (1962)', 'UK', now()), +(10877, 'University Challenge Reunited', 'UK', now()), +(10878, 'The Worst Jobs in History', 'UK', now()), +(10879, 'Wanted (UK)', 'UK', now()), +(10880, 'The Waiting Game', 'UK', now()), +(10881, 'We Love TV', 'UK', now()), +(10882, 'Whatever Next', 'UK', now()), +(10883, 'What''s My Line? (UK)', 'UK', now()), +(10884, 'Wheeler Dealers', 'UK', now()), +(10885, 'Win A Job', 'HK', now()), +(10886, 'Win Beadle''s Money', 'UK', now()), +(10887, 'Win, Lose, Or Draw (UK)', 'UK', now()), +(10888, 'Winner Takes All', 'UK', now()), +(10889, 'Wipeout (UK)', 'UK', now()), +(10890, 'Without Prejudice?', 'UK', now()), +(10891, 'The Wizard Of Odds', 'US', now()), +(10892, 'Wowfabgroovy', 'UK', now()), +(10893, 'Wudja? Cudja?', 'UK', now()), +(10894, 'You Bet!', 'UK', now()), +(10895, 'You''re Talking Absolute Football', 'UK', now()), +(10896, 'It Takes Two (1982)', 'US', now()), +(10897, 'La Picara Soñadora', 'MX', now()), +(10898, 'Return Of The Antelope, The', 'UK', now()), +(10899, 'Lo Que Es el Amor', 'MX', now()), +(10900, 'Niño que vino del mar', 'MX', now()), +(10901, 'The Stanley Cup', 'US', now()), +(10902, 'Tenchi Universe', 'JP', now()), +(10903, 'Tenchi in Tokyo', 'JP', now()), +(10904, 'Tenchi Muyo! GXP (JP)', 'JP', now()), +(10905, 'Elemental Gelade', 'JP', now()), +(10907, 'Elite Forces', 'US', now()), +(10909, 'Desire', 'US', now()), +(10910, 'Life in Cold Blood', 'UK', now()), +(10911, 'Man to Man with Dean Learner', 'UK', now()), +(10912, 'World Cup Stories', 'UK', now()), +(10913, 'Dan Cruickshank''s Marvels Of The Modern Age', 'UK', now()), +(11072, 'A World Apart', 'US', now()), +(10915, 'Newsround Investigates', 'UK', now()), +(10916, 'Vodafone TBA', 'UK', now()), +(10917, 'Andes Shonen Pepero no Boken', 'JP', now()), +(10918, 'Comanche Moon', 'US', now()), +(10919, 'Breaking Up with Shannen Doherty', 'US', now()), +(10920, 'UFO Ultramaiden Valkyrie', 'JP', now()), +(10921, 'Arcadia of My Youth: Endless Orbit SSX', 'JP', now()), +(10922, 'Wife Swap: The Aftermath', 'UK', now()), +(10923, 'Tim Lovejoy and the Allstars', 'UK', now()), +(10924, 'Ergo Proxy', 'JP', now()), +(21915, 'Who Gets the Dog?', 'US', now()), +(10926, 'Lucky Louie', 'US', now()), +(10927, 'Amar Otra Vez', 'MX', now()), +(10929, 'Watatatow', 'CA', now()), +(10930, 'A Life of Grime', 'UK', now()), +(10931, 'Traffic Cops', 'UK', now()), +(10932, 'Dispatches', 'UK', now()), +(10933, 'Little Robots', 'UK', now()), +(10934, 'Assy McGee', 'US', now()), +(14557, 'Dark Tales', 'HK', now()), +(10936, 'Judge Mathis', 'US', now()), +(10937, 'Tom and Jerry Tales', 'US', now()), +(10938, 'Empire Square (US)', 'US', now()), +(10939, 'Rivera Live', 'US', now()), +(10940, 'The Road', 'US', now()), +(10941, 'Road Test Magazine', 'US', now()), +(10942, 'The Roar Of the Rails', 'US', now()), +(10943, 'The Robbins Nest', 'US', now()), +(10944, 'Amigas y Rivales', 'MX', now()), +(10945, 'Alguna Vez Tendremos Alas', 'MX', now()), +(10946, 'El Derecho de Nacer', 'MX', now()), +(10947, 'The State Within', 'UK', now()), +(10948, 'The Robert Guillaume Show', 'US', now()), +(10949, 'Robert Klein Time', 'US', now()), +(10950, 'The Robert Q. Lewis Show', 'US', now()), +(10951, 'The Happiness Formula', 'UK', now()), +(10952, 'Holidays in Euroland', 'UK', now()), +(10953, 'Empire Square (UK)', 'UK', now()), +(10954, 'Dragon Flyz', 'US', now()), +(10955, 'Rock and Roll Record Breakers', 'US', now()), +(10956, 'Rock Candy', 'US', now()), +(10957, 'The Rock ''N'' Roll Evening News', 'US', now()), +(10958, 'Rock ''N'' Roll Summer Action', 'US', now()), +(10959, 'Rock Of Ages', 'US', now()), +(10960, 'Rock The House', 'US', now()), +(10961, 'Rockline on MTV', 'US', now()), +(10962, 'Inside Detective', 'US', now()), +(10963, 'Rodeo Drive', 'US', now()), +(10964, 'The Rodman World Tour', 'US', now()), +(10965, 'The Roger Miller Show', 'US', now()), +(10966, 'Roggin''s Heroes', 'US', now()), +(10967, 'Roll Out', 'US', now()), +(10968, 'Roller Derby', 'US', now()), +(10969, 'The Roller Girls', 'US', now()), +(10970, 'Rollin'' On The River', 'US', now()), +(10971, 'Romance (US)', 'US', now()), +(10972, 'The Ron Reagan Show', 'US', now()), +(10973, 'Room For One More', 'US', now()), +(10974, 'Room For Romance', 'US', now()), +(10975, 'Turn Back Your Body Clock', 'UK', now()), +(10976, '1 vs. 100', 'US', now()), +(10977, 'Mahou no Yousei Persia', 'JP', now()), +(10978, 'Excel Saga (JP)', 'JP', now()), +(10979, 'Shaggy & Scooby-Doo Get A Clue!', 'US', now()), +(10980, 'Spawn: The Animation', 'US', now()), +(10981, 'Last Exile (JP)', 'JP', now()), +(10982, 'Ramdam', 'CA', now()), +(10983, 'Roots: The Next Generations', 'US', now()), +(10984, 'Rosetti and Ryan', 'US', now()), +(10985, 'Rotten TV', 'US', now()), +(10986, 'The Round Table', 'US', now()), +(10987, 'The Rounders', 'US', now()), +(10988, 'City Hospital', 'UK', now()), +(10989, 'BBC Proms', 'UK', now()), +(10990, 'Iolo''s Welsh Safari', 'UK', now()), +(10991, 'Roxie', 'US', now()), +(10993, 'The Ruby Wax Show', 'UK', now()), +(10994, 'The Ruggles', 'US', now()), +(10995, 'The Runaways', 'US', now()), +(10996, 'The RuPaul Show', 'US', now()), +(10997, 'The Russ Morgan Show', 'US', now()), +(10998, 'Russ Hodges'' Scoreboard', 'US', now()), +(10999, 'Russell Simmons'' Oneworld Music Beat', 'US', now()), +(11000, 'Ruthie On The Telephone', 'US', now()), +(11001, 'Ryan''s Four', 'US', now()), +(11002, 'Berrenger''s', 'US', now()), +(11003, 'A Date With Life', 'US', now()), +(11004, 'Hotel Cosmopolitan', 'US', now()), +(11005, 'The ChuckleHounds', 'UK', now()), +(11006, 'Cactus Jim', 'US', now()), +(11007, 'Caesar Presents', 'US', now()), +(11008, 'Kocchi Muite Miko', 'JP', now()), +(11009, 'Fantastic Children', 'JP', now()), +(11010, 'Frisky Dingo', 'US', now()), +(11011, 'Caprica', 'US', now()), +(11012, 'Living It Up! With Ali & Jack', 'US', now()), +(11013, 'Cara Sucia', 'VE', now()), +(11014, 'Zombie Hotel', 'UK', now()), +(11015, 'El Club de Los Tigritos', 'VE', now()), +(11016, 'The Saturday Show', 'UK', now()), +(11017, 'Smile', 'UK', now()), +(11018, 'Short Change', 'UK', now()), +(11019, 'The Really Wild Show', 'UK', now()), +(11020, 'Rule the School', 'UK', now()), +(11021, 'Raven (UK)', 'UK', now()), +(11022, 'Capital News', 'US', now()), +(11023, 'Caribe', 'US', now()), +(11024, 'S.O.S. In America', 'US', now()), +(11025, 'S.R.O. Playhouse', 'US', now()), +(11026, 'Safari To Adventure', 'US', now()), +(18393, 'Us and Them', 'AU', now()), +(11028, 'Saints and Sinners', 'US', now()), +(11029, 'Texas Ranch House', 'US', now()), +(11030, 'Backstairs at the White House', 'US', now()), +(11031, 'Housebroken', 'US', now()), +(15477, 'Derrick', 'DE', now()), +(11033, 'Big Brother VIP: México', 'MX', now()), +(11034, 'Baker''s Dozen', 'US', now()), +(11035, 'The Baileys of Balboa', 'US', now()), +(11036, 'My Bare Lady', 'UK', now()), +(11037, 'I''ve Got A Secret (1952)', 'US', now()), +(11038, 'Twenty-One (2000)', 'US', now()), +(11039, 'Comedy Doubles', 'UK', now()), +(11040, 'Street Law', 'UK', now()), +(11041, 'Barney Blake, Police Reporter', 'US', now()), +(11042, 'Behind the Screen', 'US', now()), +(11043, 'Final Fantasy: Unlimited', 'JP', now()), +(11046, 'Mr Wymi', 'UK', now()), +(11047, 'Monster Allergy', 'US', now()), +(11048, 'Soccer Fever', 'JP', now()), +(11049, 'Fighting Beauty Wulong', 'JP', now()), +(11050, 'Expedition Robinson', 'SE', now()), +(11051, 'Gene Simmons Family Jewels', 'US', now()), +(11052, 'Jericho (UK)', 'UK', now()), +(11053, 'Pantoland', 'UK', now()), +(11054, 'Graven', 'SE', now()), +(11055, 'Sally', 'US', now()), +(11056, 'The Sam Levenson Show', 'US', now()), +(11057, 'Final Approach', 'JP', now()), +(11058, 'FireStorm', 'JP', now()), +(11059, 'Fist of the North Star (JP)', 'JP', now()), +(11060, 'The Cookworks', 'US', now()), +(11061, 'Piece of Cake', 'UK', now()), +(11062, 'Bara no Jyujika', 'JP', now()), +(11063, 'Stand Up!!', 'JP', now()), +(11064, 'Steven''s Untitled Rock Show', 'US', now()), +(11065, 'The F List', 'US', now()), +(11066, 'Flint Hammerhead', 'JP', now()), +(11067, 'Hana no Mahou Tsukai Maribell', 'JP', now()), +(11068, 'Biff Baker U.S.A.', 'US', now()), +(11069, 'Big Eddie', 'US', now()), +(11070, 'Big Hawaii', 'US', now()), +(11073, 'Louis Rukeyser''s Wall Street', 'US', now()), +(11074, 'Juanita, la soltera', 'AR', now()), +(11075, 'Annie Duke Takes On The World', 'US', now()), +(11076, 'Eurotrash', 'UK', now()), +(11077, 'The Flying House', 'JP', now()), +(11078, 'Mermaid Forest', 'JP', now()), +(26697, 'Linksmoji šeimynėlė', 'LT', now()), +(11080, 'The Intrepids', 'CA', now()), +(11081, 'Graines de star', 'FR', now()), +(11082, 'The Mint', 'UK', now()), +(11083, 'Countryfile', 'UK', now()), +(11084, 'The Politics Show', 'UK', now()), +(11085, 'Real Story', 'UK', now()), +(11086, 'Season of the Tiger', 'US', now()), +(11087, '3000 Leagues in Search of Mother', 'JP', now()), +(11088, 'Sou Nanda', 'JP', now()), +(11089, '12 Books That Changed the World', 'UK', now()), +(11090, 'Bill & Ted''s Excellent Adventures (1992)', 'US', now()), +(11092, 'Saturday Kitchen', 'UK', now()), +(11093, 'Football Focus', 'UK', now()), +(11094, 'Final Score', 'UK', now()), +(11095, 'Talking Movies', 'UK', now()), +(11096, 'See Hear', 'UK', now()), +(11097, 'Mighty Truck of Stuff', 'UK', now()), +(12759, 'The Man Behind The Badge', 'US', now()), +(11099, 'Sálvame María', 'AR', now()), +(11100, 'G4 Late Night Peep Show', 'US', now()), +(11101, 'Anime Unleashed', 'US', now()), +(11102, 'Holiday Hit Squad', 'UK', now()), +(11103, 'Persons Unknown', 'US', now()), +(11104, 'Billy Boone and Cousin Kib', 'US', now()), +(11105, 'The Bing Crosby Show', 'US', now()), +(11106, 'The Bishop', 'US', now()), +(11107, 'Snap (US)', 'US', now()), +(11108, 'Blink', 'US', now()), +(11109, 'Chariots of the Gods', 'US', now()), +(11110, 'Destination Truth', 'US', now()), +(11111, 'Ground Control', 'US', now()), +(17381, 'All About The Opposite Sex', 'US', now()), +(11113, 'Bash', 'US', now()), +(11115, 'The Newlywed Game', 'US', now()), +(11116, 'The All-New Newlywed Game', 'US', now()), +(11117, 'Angelmouse', 'UK', now()), +(11118, 'Fushigiboshi no Futagohime', 'JP', now()), +(11119, 'Futakoi', 'JP', now()), +(11120, 'Jack Osbourne: Adrenaline Junkie', 'UK', now()), +(11121, 'Nuremberg', 'US', now()), +(11122, 'How to be a Gardener Revisited', 'UK', now()), +(11123, 'Gardeners'' World', 'UK', now()), +(11125, 'All In The Game (2006)', 'UK', now()), +(11126, 'Surviving: Peter Sutcliffe', 'UK', now()), +(11127, 'Unreported World', 'UK', now()), +(11128, 'Nice House... Shame about the Garden', 'UK', now()), +(11129, 'A Showbiz Marriage', 'UK', now()), +(11130, 'Hot Springs Hotel', 'US', now()), +(11131, 'Living with Modernism', 'UK', now()), +(11132, 'House of Horrors', 'UK', now()), +(11133, 'Luton Airport', 'UK', now()), +(11134, 'Indian Finishing School', 'UK', now()), +(11135, 'Three Minute Wonder', 'UK', now()), +(11136, 'House Doctor: Inside and Out', 'UK', now()), +(11137, 'House Doctor: Designs for Living', 'UK', now()), +(11138, 'House of Tiny Tearaways', 'UK', now()), +(11139, 'Three''s Outtakes', 'UK', now()), +(11141, 'University Challenge (NZ)', 'NZ', now()), +(11142, 'University Challenge - The Professionals', 'UK', now()), +(11143, 'The Blue Angels', 'US', now()), +(11144, 'Blondie (1968)', 'US', now()), +(11145, 'R.O.D. - The TV', 'JP', now()), +(11148, 'Colorful!', 'JP', now()), +(11149, 'The Jake Effect', 'US', now()), +(11150, 'Tell Me You Love Me', 'US', now()), +(11151, 'Futakoi Alternative', 'JP', now()), +(11152, 'Futari wa Precure Splash Star', 'JP', now()), +(11153, 'Twin Spica', 'JP', now()), +(11154, 'The Chop Up', 'US', now()), +(11155, 'Kenny and the Chimp', 'US', now()), +(11156, 'If I Had You', 'UK', now()), +(11157, 'The ''60s', 'US', now()), +(11158, 'G-On Riders', 'JP', now()), +(11159, 'GameSpot TV', 'CA', now()), +(11160, 'Extended Play', 'US', now()), +(11161, 'Ett Herrans Liv', 'SE', now()), +(11162, 'The Big Idea with Donny Deutsch', 'US', now()), +(11163, 'Supergroup', 'US', now()), +(11164, 'The Adventures of Batman', 'US', now()), +(11165, 'Wolverine and the X-Men', 'US', now()), +(11166, 'Gad Guard (JP)', 'JP', now()), +(11167, 'Ghost Stories (JP)', 'JP', now()), +(11168, 'Paul Merton''s Silent Clowns', 'UK', now()), +(11169, 'The Line Of Beauty', 'UK', now()), +(11170, 'Then Churchill Said to Me', 'UK', now()), +(11171, 'Beasts', 'UK', now()), +(11173, 'Denis Norden''s Laughter File', 'UK', now()), +(11175, 'The Chase (UK)', 'UK', now()), +(11176, 'Gakuen Heaven', 'JP', now()), +(11177, 'Shingu: Secret of the Stellar Wars', 'JP', now()), +(11178, 'Ginga Hyouryuu Vifam 13', 'JP', now()), +(11179, 'Space Oz no Bouken', 'JP', now()), +(11180, 'I Want it Now', 'UK', now()), +(11181, 'The Curious House Guest', 'UK', now()), +(21901, 'Outlaw Star (US)', 'AJ', now()), +(11183, 'A Woman To Remember', 'US', now()), +(11184, 'Green Green', 'JP', now()), +(11185, 'Tsunami, The Aftermath', 'UK', now()), +(11186, 'Ten Years Younger Bikini Special', 'UK', now()), +(11187, 'Grand Designs', 'UK', now()), +(11188, 'Ed The Sock''s Night Party', 'US', now()), +(11201, 'Friend or Foe?', 'US', now()), +(11190, 'Lovespring International', 'US', now()), +(11191, 'Grand Designs Abroad', 'UK', now()), +(11192, 'Unsung Stories', 'US', now()), +(11193, 'VH1 All Access', 'US', now()), +(11194, 'Angel Falls', 'US', now()), +(11195, 'International Cabaret (UK)', 'UK', now()), +(11196, 'Jackanory', 'UK', now()), +(11197, 'Willo the Wisp', 'UK', now()), +(11198, 'Surviving', 'UK', now()), +(11202, 'The Private Life of Plants', 'UK', now()), +(11203, 'Can''t Cook, Won''t Cook', 'UK', now()), +(11204, 'Week In Rock', 'US', now()), +(11205, 'Style Challenge', 'UK', now()), +(11206, 'The Message', 'UK', now()), +(11207, 'War of the Wives', 'US', now()), +(11208, 'Heads Up', 'US', now()), +(11209, 'The Inn Crowd', 'US', now()), +(11210, 'Top Design', 'US', now()), +(11211, 'Joan Rivers: Can We Dish?', 'US', now()), +(11212, 'Galaxy Express 999', 'JP', now()), +(11213, 'The Galaxy Railways', 'JP', now()), +(11214, 'Thunder Jet', 'JP', now()), +(11215, '30 Rock', 'US', now()), +(11216, 'Cricket AM', 'UK', now()), +(11217, 'Larger than Life', 'UK', now()), +(11218, 'The Trouble with Old People', 'UK', now()), +(11219, 'Movie Lounge', 'UK', now()), +(11220, 'Good Morning With Anne And Nick', 'UK', now()), +(11221, 'Gallery Fake', 'JP', now()), +(11222, 'Gankutsuou: The Count of Monte Cristo', 'JP', now()), +(11223, 'Glass Fleet', 'JP', now()), +(11224, 'Rules of Engagement', 'US', now()), +(11225, 'Futari H - Step Up Love Story', 'JP', now()), +(11226, 'ABC Saturday Night College Football', 'US', now()), +(11227, 'Big Day', 'US', now()), +(11228, 'The Innocence Project', 'UK', now()), +(11229, 'The Knights of Prosperity', 'US', now()), +(11230, 'Angela''s Eyes', 'US', now()), +(11231, 'P.I.', 'US', now()), +(11232, 'The Booze Cruise', 'UK', now()), +(11233, 'Saber Marionette J (JP)', 'JP', now()), +(11234, 'Zatch Bell! (JP)', 'JP', now()), +(11235, 'RHS Chelsea Flower Show', 'UK', now()), +(11236, 'Escape To The Country', 'UK', now()), +(11237, 'Imagine (UK)', 'UK', now()), +(11240, 'SOKO 5113', 'DE', now()), +(11241, 'Soccer Aid', 'UK', now()), +(11242, 'Private Parts', 'UK', now()), +(11243, 'Big Brother''s Big Brain', 'UK', now()), +(11244, 'Terry Jones''s Barbarians', 'UK', now()), +(11245, 'Nice House... Shame about the Garden: Revisited', 'UK', now()), +(11246, 'Captain Mack', 'UK', now()), +(11247, 'Gegege no Kitaro', 'JP', now()), +(11248, 'Happy Hour', 'US', now()), +(13455, 'Love Connection (1983)', 'US', now()), +(11250, 'Empire Road', 'UK', now()), +(11251, 'Rainbow City', 'UK', now()), +(11252, 'X Factor: Battle Of The Stars', 'UK', now()), +(11253, 'Property Developing Abroad', 'UK', now()), +(11254, 'Guystars - Fractions of The Earth', 'JP', now()), +(11255, 'Geneshaft (JP)', 'JP', now()), +(11256, 'Zoo Family', 'AU', now()), +(11257, 'The Yarns Of Billy Borker', 'AU', now()), +(11258, 'The Yellow House', 'AU', now()), +(11259, 'You Can''t See Round Corners', 'AU', now()), +(11260, 'Yoga TV', 'AU', now()), +(11261, 'Young Ramsay', 'AU', now()), +(11262, 'The Young Wife', 'AU', now()), +(11263, 'Your Life On The Lawn', 'AU', now()), +(11264, 'You''ve Got To Be Joking', 'AU', now()), +(11265, 'When The War Came To Australia', 'AU', now()), +(11266, 'Which Way Home', 'AU', now()), +(11267, 'Whose Baby', 'AU', now()), +(11268, 'Whose House Is It Anyway? (AU)', 'AU', now()), +(11269, 'Why Sing Opera', 'AU', now()), +(11270, 'Willing And Abel', 'AU', now()), +(11271, 'Wine Lovers Guide To Australia', 'AU', now()), +(11272, 'The Winning Spirit', 'AU', now()), +(11273, 'Win Roy And H.G''s Money', 'AU', now()), +(11274, 'With Gerald Stone', 'AU', now()), +(11275, 'Wollongong The Brave', 'AU', now()), +(11276, 'Woman In Question', 'AU', now()), +(11277, 'Woman''s World', 'AU', now()), +(11278, 'Women Of The Sun', 'AU', now()), +(11279, 'Woobinda: Animal Doctor', 'AU', now()), +(11280, 'World Of Sport', 'UK', now()), +(11281, 'The Worst Day Of My Life', 'AU', now()), +(11282, 'Would You Believe', 'AU', now()), +(11283, 'Writers''s Playhouse', 'AU', now()), +(11284, 'A Waltz Through The Hills', 'AU', now()), +(11285, 'Wandjina!', 'AU', now()), +(11286, 'Weddings', 'AU', now()), +(11287, 'Wedlocked', 'AU', now()), +(11288, 'Weekend Magazine', 'AU', now()), +(11289, 'The Weekend Starts Here', 'AU', now()), +(11290, 'The Weekly''s War', 'AU', now()), +(11291, 'The Inventors', 'AU', now()), +(11292, 'What''s In The Picture', 'AU', now()), +(11293, 'Vega 4', 'AU', now()), +(11294, 'Verdict', 'AU', now()), +(11295, 'Vietnam', 'AU', now()), +(11296, 'The Violent Earth', 'AU', now()), +(11297, 'Under Capricorn', 'AU', now()), +(11298, 'The Unloved', 'AU', now()), +(11299, 'Tommy Leonetti', 'AU', now()), +(11300, 'Sexual Secrets', 'CA', now()), +(11301, 'Underground Ernie', 'UK', now()), +(11302, 'An Awfully Big Adventure', 'UK', now()), +(11303, 'The Helen Reddy Show', 'US', now()), +(11304, 'Tonight With Bert Newton', 'AU', now()), +(11305, 'Top Mates', 'AU', now()), +(11306, 'Top Of The Class', 'AU', now()), +(11307, 'Top Of The Town', 'AU', now()), +(11308, 'Top Of The World', 'UK', now()), +(11309, 'Torque', 'AU', now()), +(11310, 'A Touch Of Reverence', 'AU', now()), +(11311, 'Touch The Sun', 'AU', now()), +(11312, 'Towards The Year 2000', 'AU', now()), +(11313, 'Town And Country', 'AU', now()), +(11314, 'Tracks Of Glory', 'AU', now()), +(11315, 'Transworld Top Teams', 'AU', now()), +(11316, 'Tribe (AU)', 'AU', now()), +(11317, 'The Truckies', 'AU', now()), +(11318, 'The True Believers', 'AU', now()), +(11319, 'The True Blue Show', 'AU', now()), +(11320, 'Turning On', 'AU', now()), +(11321, 'Tusitala: The Teller Of Tales', 'AU', now()), +(11322, 'TV1 Cash Trivia', 'AU', now()), +(11323, 'Twenty Four Hours', 'AU', now()), +(11324, 'Twenty Good Years (AU)', 'AU', now()), +(11325, 'Twisted', 'AU', now()), +(11326, 'The Two Ronnies In Australia', 'AU', now()), +(11327, 'Typhon''s People', 'AU', now()), +(11328, 'Take That', 'AU', now()), +(11329, 'The Talk Show', 'AU', now()), +(11330, 'Talk To The Animals', 'AU', now()), +(11331, 'Talking Pictures', 'AU', now()), +(11332, 'Tanamera: Lion Of Singapore', 'AU', now()), +(11333, 'The Tarax Happy Show', 'AU', now()), +(11334, 'Target (AU)', 'AU', now()), +(11335, 'A Taste For Blue Ribbons', 'AU', now()), +(11336, 'The Tea Ladies', 'AU', now()), +(11337, 'Ted Hamilton''s Musical World', 'AU', now()), +(11338, 'Teen Scene', 'AU', now()), +(11339, 'Tele-Variety', 'AU', now()), +(11340, 'Telescope', 'AU', now()), +(11341, 'Ten Australians', 'AU', now()), +(11342, 'Ten On The Town', 'AU', now()), +(11343, 'Terry Willesee Tonight', 'AU', now()), +(11344, 'Thank God It''s Friday At The Zoo', 'AU', now()), +(11345, 'Thank Your Lucky Stars', 'UK', now()), +(11346, 'That''s Australia', 'AU', now()), +(11347, 'That''s Dancin''', 'AU', now()), +(11348, 'Theater Sports', 'AU', now()), +(11349, 'Things That Go Bump In The Night', 'AU', now()), +(11350, 'The Third Eye', 'AU', now()), +(11351, 'This Fabulous Century', 'AU', now()), +(11352, 'This Love Affair', 'AU', now()), +(11353, 'This Man...This Woman', 'AU', now()), +(11354, 'A Thousand Skies', 'AU', now()), +(11355, 'The Thursday Creek Mob', 'AU', now()), +(11356, 'Three Men Of The City', 'AU', now()), +(11357, 'The Timeless Land', 'AU', now()), +(11358, 'Sounds Like Us', 'AU', now()), +(11359, 'South Pacific Adventures', 'AU', now()), +(11360, 'Spit MacPhee', 'AU', now()), +(11361, 'Spyforce', 'AU', now()), +(11362, 'Starting Out (AU)', 'AU', now()), +(11363, 'Stormy Petrel', 'AU', now()), +(11364, 'The Story Of Peter Grey', 'AU', now()), +(11365, 'Streetmate (AU)', 'AU', now()), +(11366, 'Stringer', 'AU', now()), +(11367, 'Studio 22', 'AU', now()), +(11368, 'Summer Locke Elliott''s Eden''s Lost', 'AU', now()), +(11369, 'Summer Locke Elliott''s Water Under The Bridge', 'AU', now()), +(11370, 'Sunnyside Up', 'AU', now()), +(11371, 'Supermarket Sweep (AU)', 'AU', now()), +(11372, 'Surf Sound', 'AU', now()), +(11373, 'Surprise Surprise', 'AU', now()), +(11374, 'Surprise Package', 'AU', now()), +(11375, 'Survey', 'AU', now()), +(11376, 'Survival With Johnny Farnum', 'AU', now()), +(11377, 'Swap Shop', 'AU', now()), +(11378, 'Sweat (AU)', 'AU', now()), +(11379, 'Sweat Of The Sun - Tears Of The Moon', 'AU', now()), +(11380, 'Switched On Set', 'AU', now()), +(11381, 'Sword Of Honour', 'UK', now()), +(11382, 'The Shiralee', 'AU', now()), +(11383, 'Shirley Abicair In Australia', 'AU', now()), +(11384, 'A Shit Of A Job', 'AU', now()), +(11385, 'Shout! The Story Of Johnny O''Keefe', 'AU', now()), +(11386, 'Showcase', 'AU', now()), +(11387, 'Silent Number', 'AU', now()), +(11388, 'The Simon Gallagher Show', 'AU', now()), +(11389, 'Singalong', 'AU', now()), +(11390, 'Singapore Sling', 'AU', now()), +(11391, 'Single Girls', 'AU', now()), +(11392, 'Sit Yourself Down, Take A Look Around', 'AU', now()), +(11393, 'Six O''Clock Rock', 'AU', now()), +(11394, '''66 And All That', 'AU', now()), +(11395, 'Slow Boat From Surabaya', 'AU', now()), +(11396, 'The Smallest Room In The House', 'AU', now()), +(11397, 'Snake Gully With Dad ''N'' Dave', 'AU', now()), +(11398, 'Snowy', 'AU', now()), +(11399, 'Sam''s Luck', 'AU', now()), +(11400, 'Saturday At Rick''s', 'AU', now()), +(11401, 'Saturday Date', 'AU', now()), +(11402, 'Saturday Morning Live', 'AU', now()), +(11403, 'Saturday Night Party', 'AU', now()), +(11404, 'Saturday Week', 'AU', now()), +(11405, 'Saturdee', 'AU', now()), +(11406, 'Say It With Music', 'AU', now()), +(11407, 'Say When', 'AU', now()), +(11408, 'Scales Of Justice', 'AU', now()), +(11409, 'Scattergood - Friend Of All', 'AU', now()), +(11410, 'Science Question Time', 'AU', now()), +(11411, 'Scoop (AU)', 'AU', now()), +(11412, 'Scream Test', 'AU', now()), +(11413, 'Search For A Star', 'AU', now()), +(11414, 'Search For A Supermodel', 'AU', now()), +(11415, 'Seasons', 'AU', now()), +(11416, 'Second Chance (AU)', 'AU', now()), +(11417, 'Secrets', 'AU', now()), +(11418, 'Seen But Not Heard', 'AU', now()), +(11419, 'Serpent In The Rainbow', 'AU', now()), +(11420, 'The Seven Ages Of Man', 'AU', now()), +(11421, 'Seven Deadly Sins', 'US', now()), +(11422, 'Seven Little Australians', 'AU', now()), +(11423, 'Shannon''s Mob', 'AU', now()), +(11424, 'Rolf''s Walkabout', 'AU', now()), +(14586, 'Ikiru Tame no Jonetsu Toshite no Satsujin', 'JP', now()), +(11426, 'Rove', 'AU', now()), +(11427, 'The Roy And HG Show', 'AU', now()), +(11428, 'RPA', 'AU', now()), +(11429, 'RPM', 'AU', now()), +(11430, 'Rush (1974)', 'AU', now()), +(11431, 'The Russell Gilbert Show', 'AU', now()), +(11432, 'Russell Gilbert Was Here', 'AU', now()), +(11433, 'Racket', 'AU', now()), +(11434, 'Radio With Pictures', 'AU', now()), +(11435, 'Rafferty''s Rules', 'AU', now()), +(11436, 'Rainbow Serpent', 'AU', now()), +(11437, 'The Ray Martin Show', 'AU', now()), +(11438, 'Red Garter', 'AU', now()), +(11439, 'Redheap', 'AU', now()), +(11440, 'Relative Merits', 'AU', now()), +(11441, 'The Reporters (AU)', 'AU', now()), +(11442, 'Review', 'UK', now()), +(11443, 'Revue 61/62', 'AU', now()), +(11444, 'R.F.D.S.', 'AU', now()), +(11445, 'Ride On Stranger', 'AU', now()), +(11446, 'Risky Business', 'AU', now()), +(11447, 'A River Somewhere', 'AU', now()), +(11448, 'Quality Of Mercy', 'AU', now()), +(11449, 'The Quantum Interviews', 'AU', now()), +(11450, 'Quartet', 'AU', now()), +(11451, 'Quest', 'AU', now()), +(11452, 'Quantum: A Question of Survival', 'AU', now()), +(11453, 'The Quiz Kids', 'AU', now()), +(11454, 'Page One', 'AU', now()), +(11455, 'Palace Of Dreams', 'AU', now()), +(11456, 'The Patriots', 'AU', now()), +(11457, 'Parkinson In Australia', 'AU', now()), +(11458, 'The Party', 'AU', now()), +(11459, 'Perryman On Parade', 'AU', now()), +(11460, 'Personal Best', 'AU', now()), +(11461, 'Personality Squares', 'AU', now()), +(11462, 'Personally Yours', 'AU', now()), +(11463, 'Petals', 'AU', now()), +(11464, 'The Peter Couchman Show', 'AU', now()), +(11465, 'Phoenix Five', 'AU', now()), +(11466, 'Picture Page', 'UK', now()), +(11467, 'The Pied Piper', 'AU', now()), +(11468, 'Pig In A Poke', 'AU', now()), +(11469, 'A Place In The World', 'AU', now()), +(11470, 'The Power, The Passion', 'AU', now()), +(11471, 'Power Without Glory', 'AU', now()), +(11472, 'Premier', 'AU', now()), +(11473, 'Prime Time', 'AU', now()), +(11474, 'Public Eye (AU)', 'AU', now()), +(11475, 'The Pulse', 'AU', now()), +(11476, 'Punishment', 'AU', now()), +(11477, 'The Purple Jacaranda', 'AU', now()), +(11478, 'The Occasional Cook', 'AU', now()), +(11479, 'One Day Miller', 'AU', now()), +(11480, 'One Size Fits All', 'AU', now()), +(11481, 'On The Inside', 'AU', now()), +(11482, 'On The Record (AU)', 'AU', now()), +(11483, 'Open End', 'AU', now()), +(11484, 'Open File', 'AU', now()), +(11485, 'Open House (AU)', 'AU', now()), +(11486, 'Open To Question', 'AU', now()), +(11487, 'Opportunity Knocks (AU)', 'AU', now()), +(11488, 'The Oracle', 'AU', now()), +(11489, 'The Other Side Of Paradise', 'AU', now()), +(11490, 'Otis', 'AU', now()), +(11491, 'Our House (AU)', 'AU', now()), +(11492, 'Our Man In The Company', 'AU', now()), +(11493, 'The Outcasts (AU)', 'AU', now()), +(11494, 'Out Of Love', 'AU', now()), +(11495, 'Out Of The Fiery Furnace', 'AU', now()), +(11496, 'The Outsiders (AU)', 'AU', now()), +(14561, 'Hello, Sucker!', 'US', now()), +(11498, 'Overseas And Undersold', 'AU', now()), +(11499, 'Over There (AU)', 'AU', now()), +(11500, 'The Oz Game', 'AU', now()), +(11502, 'Takin'' Over the Asylum', 'UK', now()), +(11503, 'ES*', 'UK', now()), +(11504, 'ES* After', 'UK', now()), +(11505, 'The Orlando Jones Show', 'US', now()), +(11506, 'The Adventures of Chico & Guapo', 'US', now()), +(11507, 'Detective', 'UK', now()), +(11508, 'The Megan Mullally Show', 'US', now()), +(11509, 'Douglas Edwards With The News', 'US', now()), +(11510, 'Masquerade Party', 'US', now()), +(11511, 'Armstrong By Request', 'US', now()), +(11512, 'CBS Television News', 'US', now()), +(11513, 'Up To The Minute', 'US', now()), +(23102, 'Sex, Lies and Hypnosis', 'UK', now()), +(11515, 'The National', 'CA', now()), +(11516, 'Nationwide', 'UK', now()), +(11517, 'Nature Of Australia', 'AU', now()), +(11518, 'Nest', 'AU', now()), +(11519, 'NevilL Shute''s A Town Like Alice', 'AU', now()), +(11520, 'New Eden', 'AU', now()), +(11521, 'News Free Zone', 'AU', now()), +(11522, 'Nice And Juicy', 'AU', now()), +(11523, 'A Nice Day At The Office', 'AU', now()), +(11524, '1915', 'AU', now()), +(11525, 'The Noise', 'AU', now()), +(11526, 'Nomad', 'AU', now()), +(11527, 'No Man''s Land', 'AU', now()), +(11528, 'No Thanks, I''m On A Diet', 'AU', now()), +(11529, 'The Norman Gunston Show', 'AU', now()), +(11530, 'The Norman Lindsay Festival', 'AU', now()), +(11531, 'Not Suitable For Adults', 'AU', now()), +(11532, 'Now Sound', 'AU', now()), +(11533, 'Now Time', 'AU', now()), +(11534, 'Nurses (AU)', 'AU', now()), +(11535, 'Moment Of Truth (AU)', 'AU', now()), +(11536, 'Money', 'AU', now()), +(11537, 'The Money Or The Gun', 'AU', now()), +(11538, 'The Morning Shift', 'AU', now()), +(11539, 'Motel', 'AU', now()), +(11540, 'Moynihan', 'AU', now()), +(11541, 'Music Hall', 'AU', now()), +(11542, 'My Brother Jack', 'AU', now()), +(11543, 'My Name''s McGooley, What''s Yours?', 'AU', now()), +(11544, 'Mac And Merle', 'AU', now()), +(11545, 'The Maestro''s Company', 'AU', now()), +(11546, 'Magazine', 'AU', now()), +(11547, 'Maggie (AU)', 'AU', now()), +(11548, 'The Magic Boomerang', 'AU', now()), +(11549, 'The Magic Of Music', 'AU', now()), +(11550, 'The Magistrate', 'AU', now()), +(11551, 'The Main Event', 'AU', now()), +(11552, 'Make Ours Music', 'AU', now()), +(11553, 'Making It Together', 'AU', now()), +(11554, 'Man O Man (AU)', 'AU', now()), +(11555, 'Man On The Rim', 'AU', now()), +(11556, 'Marcia''s Music', 'AU', now()), +(11557, 'Marion', 'AU', now()), +(11558, 'Marque:100 Years of Motoring', 'AU', now()), +(11559, 'Marry Me (AU)', 'AU', now()), +(11560, 'Mastermind (AU)', 'AU', now()), +(11561, 'Matchmates', 'AU', now()), +(11562, 'A Matter Of Chance', 'AU', now()), +(11563, 'The Mavis Bramston Show', 'AU', now()), +(11564, 'Meet The Toppanos', 'AU', now()), +(11565, 'Melba', 'US', now()), +(11566, 'Memoirs', 'AU', now()), +(11567, 'Metropolis', 'AU', now()), +(11568, 'The Michael Cole Show', 'AU', now()), +(11569, 'Michael Willesee’s Australians', 'AU', now()), +(11570, 'The Mick Molloy Show', 'AU', now()), +(11571, 'Labor In Power', 'AU', now()), +(11572, 'The Lancaster-Miller Affair', 'AU', now()), +(11573, 'Landscape With Figures', 'AU', now()), +(11574, 'Lane End', 'AU', now()), +(11575, 'Lane''s Look At The League', 'AU', now()), +(11576, 'Last Of The Australians', 'AU', now()), +(11577, 'The Last Outlaw', 'AU', now()), +(11578, 'Late For School', 'AU', now()), +(11579, 'Late Night Australia', 'AU', now()), +(11580, 'Late Night With Jono And Danno', 'AU', now()), +(11581, 'Law Of The Land', 'AU', now()), +(11582, 'Lawson''s Mates', 'AU', now()), +(11583, 'Learners', 'AU', now()), +(11584, 'Leave It To The Girls', 'AU', now()), +(11585, 'Let''s Do Lunch', 'AU', now()), +(11586, 'Let''s Make A Date', 'AU', now()), +(11587, 'Letter Box', 'AU', now()), +(11588, 'Letter Charades', 'AU', now()), +(11589, 'Let The Blood Run Free', 'AU', now()), +(11590, 'Level 23', 'AU', now()), +(11591, 'Levkas Man', 'AU', now()), +(11592, 'Life Be In It', 'AU', now()), +(11593, 'Lift Off', 'AU', now()), +(11594, 'The Little People', 'AU', now()), +(11595, 'Dream West', 'US', now()), +(11596, 'Live And Sweaty', 'AU', now()), +(11597, 'Live This', 'AU', now()), +(11598, 'Living Man', 'AU', now()), +(11599, 'Locusts And Wild Honey', 'AU', now()), +(11600, 'Longplay', 'AU', now()), +(11601, 'Looking Good', 'AU', now()), +(11602, 'The Lorrae Desmond Show', 'AU', now()), +(11603, 'Loss Of Innocence', 'AU', now()), +(11604, 'Love And War', 'AU', now()), +(11605, 'The Love Game', 'AU', now()), +(11606, 'Love Thy Neighbour (AU)', 'AU', now()), +(11607, 'Lucky Colour Blue', 'AU', now()), +(11608, 'Genesis Climber Mospeada', 'JP', now()), +(11609, 'Where My Dogs At?', 'US', now()), +(11610, 'Life on Mars (US)', 'US', now()), +(11611, 'Housecall', 'UK', now()), +(11612, 'American Masters', 'US', now()), +(11613, 'Cory In the House', 'US', now()), +(11614, 'Ground Force (UK)', 'UK', now()), +(11615, 'Tough Crowd with Colin Quinn', 'US', now()), +(11616, 'Kaboodle', 'AU', now()), +(11617, 'Kamahl', 'AU', now()), +(11618, 'Kate Ceberano And Friends', 'AU', now()), +(11619, 'The Keepers', 'AU', now()), +(11620, 'Keep Pace With Harriet', 'AU', now()), +(11621, 'Keynotes', 'AU', now()), +(11622, 'Kicking Around', 'AU', now()), +(11623, 'Kings (AU)', 'AU', now()), +(11624, 'King''s Kitchen', 'AU', now()), +(11625, 'King''s Men', 'AU', now()), +(11626, 'Kirby''s Company', 'AU', now()), +(11627, 'Kittson/Fahey', 'AU', now()), +(11628, 'Jack Thompson Down Under', 'AU', now()), +(11629, 'The James Pegler Show', 'AU', now()), +(11630, 'Jazz', 'AU', now()), +(11631, 'Jazz In Stereo', 'AU', now()), +(11632, 'Jazz Meets Folk', 'AU', now()), +(11633, 'J.C At 8.30 PM', 'AU', now()), +(11634, 'The Jimmy Hannan Show', 'AU', now()), +(11635, 'The Joe Martin Show', 'AU', now()), +(11636, 'Joe Wilson', 'AU', now()), +(11637, 'The John Konrads Show', 'AU', now()), +(11638, 'John Mahon', 'AU', now()), +(11639, 'Johnny Farnum', 'AU', now()), +(11640, 'The Johnny Gredula Show', 'AU', now()), +(11641, 'The Johnny O''Keefe Show', 'AU', now()), +(11642, 'Johnson And Friends', 'AU', now()), +(11643, 'The John St. Peeters Show', 'AU', now()), +(11644, 'Journey Into...', 'AU', now()), +(11645, 'Juke Box Jury (AU)', 'AU', now()), +(11646, 'Junior Cabaret', 'AU', now()), +(11647, 'Just For The Record', 'AU', now()), +(11648, 'I Can Jump Puddles', 'AU', now()), +(11649, 'I Witness Video', 'AU', now()), +(11650, 'If These Walls Could Speak', 'AU', now()), +(11651, 'I Like Music', 'AU', now()), +(11652, 'I''m Alright Now', 'AU', now()), +(11653, 'In Between', 'AU', now()), +(11654, 'In Harmer''s Way', 'AU', now()), +(11655, 'In Key', 'AU', now()), +(11656, 'Inner Space', 'AU', now()), +(11657, 'In-Patient', 'AU', now()), +(11658, 'Inside Running', 'AU', now()), +(11659, 'Inside The Reef', 'AU', now()), +(11660, 'Instant People', 'AU', now()), +(11661, 'International Cabaret (AU)', 'AU', now()), +(11662, 'The Interpretaris', 'AU', now()), +(11663, 'In The Wild', 'AU', now()), +(11664, 'The Investigators (AU)', 'AU', now()), +(11665, 'The Italians', 'AU', now()), +(11666, 'It Pays To Be Funny', 'AU', now()), +(11667, 'It''s Academic', 'AU', now()), +(11668, 'It''s All Happening', 'AU', now()), +(11669, 'I''ve Got A Secret (AU)', 'AU', now()), +(11670, 'I''ve Married A Bachelor', 'AU', now()), +(11671, 'I Cartoni dello Zecchino d''Oro', 'IT', now()), +(11672, 'Going For Gold', 'UK', now()), +(11674, 'Astro Boy (1963) (US Dub)', 'AJ', now()), +(11675, 'Hindsight', 'AU', now()), +(11676, 'Hit Scene', 'AU', now()), +(11677, 'Holiday', 'AU', now()), +(11678, 'Holiday With Bill Peach', 'AU', now()), +(11679, 'The Home Show', 'US', now()), +(11680, 'The Hooley Dooleys', 'AU', now()), +(11681, 'Horizon-5', 'AU', now()), +(11682, 'Horse Talk', 'AU', now()), +(11683, 'Hospital', 'AU', now()), +(11684, 'Hot Auctions', 'AU', now()), +(11685, 'Hot Chips', 'AU', now()), +(11686, 'Howard The Mild Colonial Boy', 'AU', now()), +(11687, 'How Much Do You Love Me', 'AU', now()), +(11688, 'Huey''s TV Dinners', 'AU', now()), +(11689, 'The Hungry Ones', 'AU', now()), +(11690, 'Hunter (AU)', 'AU', now()), +(11691, 'Hybrid Life', 'AU', now()), +(11692, 'Hal Lashwood''s Alabama Jubilee', 'AU', now()), +(11693, 'Hampton Court', 'AU', now()), +(11694, 'Handyman', 'AU', now()), +(11695, 'Happening', 'AU', now()), +(11696, 'Hard Copy', 'US', now()), +(11697, 'A Hard Day''s Week', 'AU', now()), +(11698, 'The Haunted School', 'AU', now()), +(11699, 'C''mon, Have a Go!', 'AU', now()), +(11700, 'Haydaze', 'AU', now()), +(11701, 'Healthy, Wealthy And Wise', 'AU', now()), +(11702, 'Heartline', 'AU', now()), +(11703, 'Heart Of The Country', 'AU', now()), +(11704, 'Hedgerow House', 'AU', now()), +(11705, 'Here''s Dawn', 'AU', now()), +(11706, 'The Heroes', 'AU', now()), +(11707, 'Hey You', 'AU', now()), +(11708, 'High Rollers (AU)', 'AU', now()), +(11709, 'Good News Week', 'AU', now()), +(11710, 'Gordon And The Girls', 'AU', now()), +(11711, 'The Gordon Boyd Show', 'AU', now()), +(11712, 'The Gordon Chater Show', 'AU', now()), +(11713, 'The Graeme Bell Show', 'AU', now()), +(11714, 'The Graham Kennedy Show', 'AU', now()), +(11715, 'The Grass Is Greener', 'AU', now()), +(11716, 'The Great Chase', 'AU', now()), +(11717, 'Great Moments In History', 'AU', now()), +(11718, 'Little House on the Prairie (2005)', 'US', now()), +(11720, 'The Kent Chronicles', 'US', now()), +(11721, 'The Great Outdoors', 'AU', now()), +(11722, 'New World Temptation', 'AU', now()), +(11723, 'The Great TV Game Show', 'AU', now()), +(11724, 'Greed (AU)', 'AU', now()), +(11725, 'The Greek Variety Show', 'AU', now()), +(11726, 'Ground Force (AU)', 'AU', now()), +(11727, 'The Group (AU)', 'AU', now()), +(11728, 'Getting To Know', 'AU', now()), +(11729, 'Guess What (AU)', 'AU', now()), +(11730, 'Guess Who''s Coming To Dinner? (AU)', 'AU', now()), +(11731, 'Gunston''s Australia', 'AU', now()), +(11732, 'A Guy Called Athol', 'AU', now()), +(11733, 'Getaway', 'AU', now()), +(11734, 'The Giant''s Tooth And Other Stories', 'AU', now()), +(11735, 'The Girl From Steel City', 'AU', now()), +(11736, 'Glad Rags', 'AU', now()), +(11737, 'Go!!', 'AU', now()), +(11738, 'The Godfathers', 'AU', now()), +(11739, 'Go Fish Australia', 'AU', now()), +(11740, 'Golden Pennies', 'AU', now()), +(11741, 'Golden Soak', 'AU', now()), +(11742, 'Good Grief...It''s The Twiliters', 'AU', now()), +(11743, 'Flash Nick From Jindavick', 'AU', now()), +(11744, 'Flashez', 'AU', now()), +(11745, 'Flicks', 'AU', now()), +(11746, 'Floorshow', 'AU', now()), +(11747, 'Flying Start (AU)', 'AU', now()), +(11748, 'Focus', 'AU', now()), +(11749, 'Folkmoot', 'AU', now()), +(11750, 'Football Quiz', 'AU', now()), +(11751, 'Ford Superquiz', 'AU', now()), +(11752, 'The 40''s In Swing Time', 'AU', now()), +(11753, 'Forum', 'AU', now()), +(11754, 'Four For The Show', 'AU', now()), +(11755, 'Frank And Francesca', 'AU', now()), +(11756, 'Free For All (AU)', 'AU', now()), +(11757, 'Fresh: Cooking With The Australian Women''s Weekly', 'AU', now()), +(11758, 'Fresh Start', 'AU', now()), +(11759, 'Front Up', 'AU', now()), +(11760, 'Frost Over Australia', 'AU', now()), +(11761, 'The Fugitive (AU)', 'AU', now()), +(11762, 'Funky Squad', 'AU', now()), +(11763, 'Fusions', 'AU', now()), +(11764, 'Fabulous, Famous And Forgotten', 'AU', now()), +(11765, 'Genshi Shonen Ryuu', 'JP', now()), +(11766, 'Face Australia', 'AU', now()), +(11767, 'Faces', 'AU', now()), +(11768, 'Faces In The 1980''s', 'AU', now()), +(11769, 'Faces Of Change', 'AU', now()), +(11770, 'Face The People', 'AU', now()), +(11771, 'Face The Press', 'AU', now()), +(11772, 'The Factory', 'AU', now()), +(11773, 'Falcon Island', 'AU', now()), +(11774, 'Fame And Misfortune', 'AU', now()), +(11775, 'The Family Business', 'AU', now()), +(11776, 'Family Feud (AU)', 'AU', now()), +(11777, 'The Far Country', 'AU', now()), +(11778, 'The Farming Game', 'AU', now()), +(11779, 'Farnham And Byrne', 'AU', now()), +(11780, 'Farson In Australia', 'AU', now()), +(11781, 'The Fast Lane', 'AU', now()), +(11782, 'Father, Dear Father In Australia', 'AU', now()), +(11783, 'Fatty And George', 'AU', now()), +(11784, 'Federal File', 'AU', now()), +(11785, 'Fiesta', 'AU', now()), +(11786, 'Filmstruck', 'AU', now()), +(11787, 'The Finder (AU)', 'AU', now()), +(11788, 'Find The Link', 'AU', now()), +(11789, 'First Appearances', 'AU', now()), +(11790, 'The First Australians', 'AU', now()), +(11791, 'First In Line', 'AU', now()), +(11792, 'Five Times Dizzy', 'AU', now()), +(11793, 'Flashback', 'AU', now()), +(11794, 'Ernie And Denise', 'AU', now()), +(11795, 'The Ernie Sigley Show', 'AU', now()), +(11796, 'Escape (AU)', 'AU', now()), +(11797, 'Everybody', 'AU', now()), +(11798, 'Everybody''s Talking', 'AU', now()), +(11799, 'An Evening With...', 'AU', now()), +(11800, 'The Evie Hayes Show', 'AU', now()), +(11801, 'Extra Dimensions', 'AU', now()), +(11802, 'The Extraordinary', 'AU', now()), +(11803, 'Earthwatch', 'AU', now()), +(11804, 'Edge Of The Wedge', 'AU', now()), +(11805, 'Eggshells', 'AU', now()), +(11806, 'Elephant Boy', 'AU', now()), +(11807, 'Embassy', 'AU', now()), +(11808, 'EMmergency Line', 'AU', now()), +(11809, 'English At Work', 'AU', now()), +(11810, 'The Emigrants', 'AU', now()), +(11811, 'The Entertainers (AU)', 'AU', now()), +(11812, 'Entertaining Friends', 'AU', now()), +(11813, 'Discover Australia''s National Parks', 'AU', now()), +(11814, 'The Di Trask Show', 'AU', now()), +(11815, 'Dog''s Head Bay', 'AU', now()), +(11816, 'A Dog''s Life', 'AU', now()), +(11817, 'Don Lane Presents', 'AU', now()), +(11818, 'The Don Lane Show', 'AU', now()), +(11819, 'Don''t Ask Us', 'AU', now()), +(11820, 'Drama School', 'AU', now()), +(11821, 'The Dream Factory', 'AU', now()), +(11822, 'The Dream With Roy And H.G.', 'AU', now()), +(11823, 'The Dulux Show', 'AU', now()), +(11824, 'The Dunstan Documentaries', 'AU', now()), +(11825, 'Dusty', 'AU', now()), +(11826, 'Dynasty (AU)', 'AU', now()), +(11827, 'Dad, You''re A Square', 'UK', now()), +(11828, 'Open Air', 'UK', now()), +(11829, 'Daytime Live', 'UK', now()), +(11830, 'The Nanette Fabray Show', 'US', now()), +(11831, 'Young Arthur', 'US', now()), +(11832, 'Young Dr. Kildare', 'US', now()), +(21022, 'Guns', 'CA', now()), +(21092, 'Oh So Cosmo', 'CA', now()), +(11835, 'TWF: Thumb Wrestling Federation', 'US', now()), +(11836, 'Wanted: Ted or Alive', 'US', now()), +(11837, 'Pebble Mill', 'UK', now()), +(11838, 'A Dance to the Music of Time', 'UK', now()), +(11839, 'Just Jade', 'UK', now()), +(11840, 'Daily At Dawn', 'AU', now()), +(11841, 'The Damnation Of Harvey McHugh', 'AU', now()), +(11842, 'Dancing Daze', 'AU', now()), +(11843, 'Danger Freaks', 'AU', now()), +(11844, 'The Daryl Somers Show', 'AU', now()), +(11845, 'Dave''s Place', 'AU', now()), +(11846, 'Deadly Australians', 'AU', now()), +(11847, 'Dearest Enemy', 'AU', now()), +(11848, 'The Delo And Daly Show', 'AU', now()), +(11849, 'Delta (AU)', 'AU', now()), +(11850, 'Denise', 'AU', now()), +(11851, 'Denton', 'AU', now()), +(11852, 'The D Generation', 'AU', now()), +(11853, 'Did You Hear The One About?', 'AU', now()), +(11854, 'Dig We Must', 'AU', now()), +(11855, 'The Dingo Principle', 'AU', now()), +(11856, 'Close Up', 'AU', now()), +(11857, 'Clowning Around', 'AU', now()), +(11858, 'Coast To Coast', 'UK', now()), +(11859, 'Cody', 'AU', now()), +(11860, 'The Col Joye Show', 'AU', now()), +(11861, 'The Col''n Carpenter Show', 'AU', now()), +(11862, 'Coles $6,000 Question', 'AU', now()), +(11863, 'Colour In The Creek', 'AU', now()), +(11864, 'The Comedy Game', 'AU', now()), +(11865, 'Come Midnight Monday', 'AU', now()), +(11866, 'The Company Men', 'AU', now()), +(11867, 'Contrabandits', 'AU', now()), +(11868, 'Corelli', 'AU', now()), +(11869, 'Cornflakes For Tea', 'AU', now()), +(11870, 'Corridors Of Power', 'AU', now()), +(11871, 'C/O The Bartons', 'AU', now()), +(11872, 'Couchman Over Australia', 'AU', now()), +(11873, 'Country Call', 'AU', now()), +(11874, 'The Country Music Hour', 'AU', now()), +(11875, 'Country Road', 'AU', now()), +(11876, 'Country Style', 'AU', now()), +(11877, 'The Cowra Breakout', 'AU', now()), +(14555, 'A Tribute to the Likely Lads', 'UK', now()), +(11879, 'The Critics', 'AU', now()), +(11880, 'Crossfire (AU)', 'AU', now()), +(11881, 'The Crowded Years', 'AU', now()), +(11882, 'Cuckoo In The Nest', 'AU', now()), +(11883, 'Cushion Kids', 'AU', now()), +(11884, 'Cabaret (AU)', 'AU', now()), +(11885, 'Cafe Continental', 'AU', now()), +(11886, 'Candid Camera (AU)', 'AU', now()), +(11887, 'Capriccio', 'AU', now()), +(11888, 'The Carleton-Walsh Report', 'AU', now()), +(11889, 'Carrots', 'AU', now()), +(11890, 'Casebook', 'AU', now()), +(11891, 'Case For The Defence', 'AU', now()), +(11892, 'Casino 10', 'AU', now()), +(11893, 'The Castaways', 'AU', now()), +(11894, 'Catch Kandy', 'AU', now()), +(11895, 'Catspaw', 'AU', now()), +(11896, 'CC TV', 'AU', now()), +(11897, 'Celebrity Squares (AU)', 'AU', now()), +(11898, 'Celebrity Tittle Tattle', 'AU', now()), +(11899, 'The Challenge (AU)', 'AU', now()), +(11900, 'Chan Canasta', 'AU', now()), +(11901, 'Changes', 'AU', now()), +(11902, 'The Channel 9 Show', 'AU', now()), +(11903, 'Chequerboard', 'AU', now()), +(11904, 'Children''s Hospital (AU)', 'AU', now()), +(11905, 'Children''s TV Club', 'AU', now()), +(11906, 'City West', 'AU', now()), +(11907, 'Blah Blah Blah', 'AU', now()), +(11908, 'Blind Date (AU)', 'AU', now()), +(11909, 'Blinky Bill', 'AU', now()), +(11910, 'Blockbusters (AU)', 'AU', now()), +(11911, 'The Bluestone Boys', 'AU', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(11912, 'Blue Wilderness', 'AU', now()), +(11913, 'The Bobby Limb Show', 'AU', now()), +(11914, 'The Bob Crosby Show', 'AU', now()), +(11915, 'The Bob Morrison Show', 'AU', now()), +(11916, 'Bobby Limb''s Sound Of Music', 'AU', now()), +(11917, 'Body And Soul (AU)', 'AU', now()), +(11918, 'Bodysurfer', 'AU', now()), +(11919, 'Bordertown (AU)', 'AU', now()), +(11920, 'Breakaway', 'UK', now()), +(11921, 'The Breakaways', 'AU', now()), +(11922, 'The Bryan Davies Show', 'AU', now()), +(11923, 'Burned Bridge', 'AU', now()), +(11924, 'Bushbeat', 'AU', now()), +(11925, 'The Bush Gang 1981', 'AU', now()), +(11926, 'Bush Mechanics', 'AU', now()), +(11927, 'The Bachelor Gaye', 'AU', now()), +(11928, 'Backchat', 'AU', now()), +(11929, 'Bailey''s Bird', 'AU', now()), +(11930, 'Balance Of Power', 'AU', now()), +(11931, 'The Ballad Of Riverboat Bill', 'AU', now()), +(11932, 'The Band', 'AU', now()), +(11933, 'Bang Goes The Budgie', 'AU', now()), +(11934, 'Barbeque', 'AU', now()), +(11935, 'The Barry Creyton Show', 'AU', now()), +(11936, 'The Barry Crocker Show', 'AU', now()), +(11937, 'Beatbox', 'AU', now()), +(11938, 'Beat Of The City', 'AU', now()), +(11939, 'Beautiful Gardens', 'AU', now()), +(11940, 'Behind The Legend', 'AU', now()), +(11941, 'Behind The News', 'AU', now()), +(11942, 'Ben Hall', 'AU', now()), +(11943, 'Bentley''s Bandbox', 'AU', now()), +(11944, 'Bazaar', 'UK', now()), +(11946, 'Be Our Guest', 'US', now()), +(11947, 'The Better Sex', 'US', now()), +(11948, 'Huracán', 'MX', now()), +(11949, 'Beyond the Prairie: The True Story of Laura Ingalls Wilder', 'US', now()), +(11950, 'Between Ourselves', 'AU', now()), +(11951, 'That''s Showbusiness', 'UK', now()), +(11952, 'Beyond Reasonable Doubt', 'AU', now()), +(11953, 'The Big Byte', 'AU', now()), +(11954, 'A Big Country', 'AU', now()), +(11955, 'The Big Gig', 'AU', now()), +(11956, 'Big Nine', 'AU', now()), +(11957, 'The Big Square Eyes', 'AU', now()), +(11958, 'Bill Peach''s High Adventure', 'AU', now()), +(11959, 'Bingles', 'AU', now()), +(11960, 'Birds In The Bush', 'AU', now()), +(11961, 'All The Green Years', 'AU', now()), +(11962, 'Aloha Hawaii', 'AU', now()), +(11963, 'Alpha Scorpio', 'AU', now()), +(11964, 'Alvin Purple', 'AU', now()), +(11965, 'Always Afternoon', 'AU', now()), +(11966, 'And Here Comes Bucknuckle', 'AU', now()), +(11967, 'And The Big Men Fly', 'AU', now()), +(11968, 'Animal Doctor', 'AU', now()), +(11969, 'Animal Park (AU)', 'AU', now()), +(11970, 'The Annette Klooger Show', 'AU', now()), +(11971, 'Anzac', 'AU', now()), +(11972, 'Anzacs', 'AU', now()), +(11973, 'Any Questions', 'AU', now()), +(11974, 'Around The World With Brian Adams', 'AU', now()), +(11975, 'Ask The Family (AU)', 'AU', now()), +(11976, 'Ask The Leyland Brothers', 'AU', now()), +(11977, 'At Home', 'AU', now()), +(11978, 'Attitude', 'AU', now()), +(11979, 'Aussie Jokers', 'AU', now()), +(11980, 'Australia A To Z', 'AU', now()), +(11981, 'Australia At War', 'AU', now()), +(11982, 'Australia Behaving Badly', 'AU', now()), +(11983, 'Australia By Numbers', 'AU', now()), +(11984, 'Australia Unlimited', 'AU', now()), +(11985, 'Australia? You''re Standing In It', 'AU', now()), +(11986, 'Australia''s Funniest Home Videos', 'AU', now()), +(11987, 'Australia''s Most Wanted', 'AU', now()), +(11988, 'Australian Playhouse', 'AU', now()), +(11989, 'Australian Wildlife', 'AU', now()), +(11990, 'The Australians', 'AU', now()), +(11991, 'Australia Talks', 'AU', now()), +(11992, 'The Academy (UK)', 'UK', now()), +(11993, 'The Acid Test', 'AU', now()), +(11994, 'Adams Afternoon', 'AU', now()), +(11995, 'Adventure Unlimited', 'AU', now()), +(11996, 'Aegean Sounds', 'AU', now()), +(11997, 'The Africans', 'AU', now()), +(11998, 'Afternoon', 'AU', now()), +(11999, 'Alan Jones Live', 'AU', now()), +(12000, 'Alcharinga', 'AU', now()), +(12001, 'All About Music', 'AU', now()), +(12002, 'Russell Coight''s All Aussie Adventures', 'AU', now()), +(12003, 'All In A Days Work', 'AU', now()), +(12004, 'Lady Georgie', 'JP', now()), +(12005, 'Tsuyoshi Shikkari Shinasai', 'JP', now()), +(12006, 'Get Ride! Amdriver', 'JP', now()), +(12007, 'The Clothes Show', 'UK', now()), +(12008, 'Orson Welles'' Great Mysteries', 'UK', now()), +(12009, 'China', 'UK', now()), +(12010, 'The Convent', 'UK', now()), +(12011, 'Drop Dead Gorgeous', 'UK', now()), +(12012, 'Don''t Get Done, Get Dom', 'UK', now()), +(12013, 'The Lawrence Welk Show', 'US', now()), +(12014, 'Shakespeare Shorts', 'UK', now()), +(12015, 'How to Get the Guy', 'US', now()), +(12016, 'The Winners', 'CA', now()), +(12017, 'Zoo World', 'CA', now()), +(12018, 'Shoestring Theatre', 'CA', now()), +(12019, 'Sidestreet', 'CA', now()), +(12020, 'Tabloid', 'CA', now()), +(12021, 'The Peppermint Prince', 'CA', now()), +(12022, 'Performance (CAN)', 'CA', now()), +(12023, 'Presenting Barry Morse', 'CA', now()), +(12024, 'Puppets Are Fun', 'CA', now()), +(12025, 'The Price Is Right (UK)', 'UK', now()), +(12026, 'Buildings That Shaped Britain', 'UK', now()), +(12027, 'You''re In The Picture', 'US', now()), +(12028, 'Robert Kennedy & His Times', 'US', now()), +(12029, 'Poor Little Rich Girl: The Barbara Hutton Story', 'US', now()), +(12030, 'Skimo', 'MX', now()), +(12031, 'World Cup Heaven And Hell', 'UK', now()), +(12148, 'Mission: Organization', 'US', now()), +(12033, 'Turkey Television', 'US', now()), +(12034, 'Adventures of the Little Koala', 'JP', now()), +(12035, 'Against the Odds', 'US', now()), +(12036, 'Don''t Just Sit There!', 'US', now()), +(12037, 'Going Great', 'US', now()), +(12038, 'He & She', 'US', now()), +(12039, 'The Thorn Birds', 'US', now()), +(12040, 'Secreto de Amor', 'VE', now()), +(12041, 'This Week (US)', 'US', now()), +(12042, 'The Real Football Factories', 'UK', now()), +(12043, 'Dream Team 80''s', 'UK', now()), +(12044, 'Yu Yu Hakusho: Ghost Files', 'JP', now()), +(12045, 'Nubeluz', 'PE', now()), +(12046, 'Gilgamesh', 'JP', now()), +(12047, 'Musikladen', 'DE', now()), +(12048, 'The Tony Danza Show (1997)', 'US', now()), +(12049, 'NFL Total Access', 'US', now()), +(12050, 'Fast Incorporated', 'US', now()), +(12051, 'Babyfather', 'UK', now()), +(12052, 'Bouquet of Barbed Wire', 'UK', now()), +(12053, 'Ginban Kaleidoscope', 'JP', now()), +(12054, 'Ginga Densetsu Weed', 'JP', now()), +(12055, 'Platinumhugen Ordian', 'JP', now()), +(12056, 'Gintama', 'JP', now()), +(12057, 'American Body Shop', 'US', now()), +(12058, 'Billable Hours', 'CA', now()), +(12059, 'Countdown with Keith Olbermann', 'US', now()), +(12060, 'Ninja Scroll: The Series', 'AJ', now()), +(12061, 'Paula Zahn Now', 'US', now()), +(12062, 'Lou Dobbs Tonight', 'US', now()), +(12063, 'American Morning', 'US', now()), +(12064, 'Delvecchio', 'US', now()), +(12065, 'Griff', 'US', now()), +(12066, 'Kaubôi Bibappu', 'JP', now()), +(12067, 'Hardball with Chris Matthews', 'US', now()), +(12068, 'Ohara', 'US', now()), +(12069, 'The Urban Chef', 'UK', now()), +(12070, 'You Can''t Fire Me, I''m Famous', 'UK', now()), +(12071, 'Meine Liebe', 'JP', now()), +(12072, 'Kakyuusei', 'JP', now()), +(12073, 'Kaze no Naka no Shoujo Kinpatsu no Jeanie', 'JP', now()), +(12074, 'Saturday Superstore', 'UK', now()), +(12075, 'CNN Live From', 'US', now()), +(12076, 'Live Today', 'US', now()), +(12077, 'Korgoth of Barbaria', 'US', now()), +(12078, 'CNN Presents', 'US', now()), +(12079, 'House Call with Dr. Sanjay Gupta', 'US', now()), +(12080, 'Crossfire (US)', 'US', now()), +(12081, 'Girl''s High', 'JP', now()), +(12082, 'Wired for Sex', 'US', now()), +(12083, 'Glass Mask', 'JP', now()), +(12084, 'Foody Call', 'US', now()), +(12085, 'Jim''ll Fix It', 'UK', now()), +(12086, 'Emergency Ward 10', 'UK', now()), +(12087, 'Bird of Prey', 'UK', now()), +(12088, 'In the Secret State', 'UK', now()), +(12089, 'A Very British Coup', 'UK', now()), +(12090, 'The Black and White Minstrel Show', 'UK', now()), +(12091, 'The Family (UK)', 'UK', now()), +(12092, 'Muffin the Mule', 'UK', now()), +(12093, 'Bosco', 'IE', now()), +(12094, '10 Play', 'UK', now()), +(12095, 'Blister', 'US', now()), +(12096, 'G4 Sports', 'US', now()), +(12097, 'Game Gods', 'UK', now()), +(12098, 'Game On', 'US', now()), +(12099, 'Gamer.Tv', 'UK', now()), +(12100, 'Game Sauce', 'JP', now()), +(12101, 'Hi-Score', 'US', now()), +(12102, 'Fresh Gear', 'US', now()), +(12103, 'Glass no Kamen', 'JP', now()), +(12104, 'Shutsugeki! Machine Robo Rescue', 'JP', now()), +(12105, 'ECW', 'US', now()), +(12106, 'I''ll Take Manhattan', 'US', now()), +(12107, 'Morningstar/Eveningstar', 'US', now()), +(12108, 'The Glittering Prizes', 'UK', now()), +(12109, 'Joe''s World', 'US', now()), +(12110, 'Super Task Force', 'JP', now()), +(21899, 'The Cougar', 'US', now()), +(12112, 'Roger Ramjet', 'US', now()), +(12113, 'Live at Gotham', 'US', now()), +(12114, 'The Naked Chef', 'UK', now()), +(12115, 'Jesus of Nazareth', 'UK', now()), +(12116, 'Life on Earth', 'UK', now()), +(12117, 'The Old Grey Whistle Test', 'UK', now()), +(12118, 'Out', 'UK', now()), +(12119, 'Revolver (1978)', 'UK', now()), +(12120, 'Bull Island', 'IE', now()), +(12121, 'Days of Hope', 'UK', now()), +(12122, 'Diary of a Young Man', 'UK', now()), +(12123, 'MTV Movie Awards', 'US', now()), +(12124, 'Goku no Daiboken', 'JP', now()), +(12125, 'The Gokusen', 'JP', now()), +(12126, 'Ogon Bat', 'JP', now()), +(12127, 'Nishi no Yoki Majo - Astraea Testament', 'JP', now()), +(12128, 'Tourgasm', 'US', now()), +(21878, 'Monty Hall''s Great Escape', 'UK', now()), +(12130, 'Future Tense', 'US', now()), +(12131, 'Carol Duvall Show', 'US', now()), +(12132, 'Buy It Now', 'US', now()), +(12133, 'Master of Champions', 'US', now()), +(12134, 'One Ocean View', 'US', now()), +(12135, 'The One: Making a Music Star', 'US', now()), +(12136, 'Summer Exhibition', 'UK', now()), +(12137, 'The Monastery', 'UK', now()), +(12138, 'Man''s First Diet', 'UK', now()), +(12139, 'Hard Times', 'UK', now()), +(12140, 'The Jewel in the Crown', 'UK', now()), +(12141, 'Another Bouquet', 'UK', now()), +(12142, 'Bill Brand', 'UK', now()), +(12143, 'The Wedge', 'AU', now()), +(12144, 'Mars Daybreak', 'JP', now()), +(12145, 'Madoh Oh Granzort', 'JP', now()), +(12150, 'Midori no Makibao', 'JP', now()), +(12151, 'Grenadier', 'JP', now()), +(12152, 'Rave Master (JP)', 'JP', now()), +(12153, 'Red Baron', 'JP', now()), +(12154, 'Summer of...', 'UK', now()), +(12155, 'A House In Florida', 'UK', now()), +(12156, 'Elimi Dating', 'US', now()), +(12157, 'Solitary', 'US', now()), +(12158, 'Britain''s Streets of Debt', 'UK', now()), +(12159, 'The Importance of Being Famous', 'UK', now()), +(12160, 'Springwatch', 'UK', now()), +(12161, 'Wild In Your Garden', 'UK', now()), +(12162, 'Britain Goes Wild with Bill Oddie', 'UK', now()), +(12163, 'Bill Oddie Goes Wild', 'UK', now()), +(12164, 'Eastenders Revealed', 'UK', now()), +(12165, 'The Power of Nightmares', 'UK', now()), +(12166, 'State of the Planet', 'UK', now()), +(12167, 'The Life of Birds', 'UK', now()), +(12168, 'The Wildlife Specials', 'UK', now()), +(12169, 'The Trials of Life', 'UK', now()), +(12170, 'Lost Worlds, Vanished Lives', 'UK', now()), +(12171, 'The First Eden', 'UK', now()), +(12172, 'The Tribal Eye', 'UK', now()), +(12173, 'Wildlife on One', 'UK', now()), +(12174, 'Zoo Quest', 'UK', now()), +(12176, 'Breakfast Time (UK)', 'UK', now()), +(12177, 'Breakfast Time (US)', 'US', now()), +(12178, 'Personal fX', 'US', now()), +(12179, 'The Pet Department', 'US', now()), +(12180, 'Under Scrutiny with Jane Wallace', 'US', now()), +(12181, 'Back Chat', 'US', now()), +(12182, 'Gun Frontier', 'JP', now()), +(12183, 'Gunparade Orchestra', 'JP', now()), +(12184, 'Gun x Sword', 'JP', now()), +(12185, 'GUYVER: The Bioboosted Armor', 'JP', now()), +(12186, 'Hamtaro (JP)', 'JP', now()), +(12187, 'Hana no Ko Lunlun', 'JP', now()), +(12188, 'Hanada Shonen-shi', 'JP', now()), +(12189, 'Hanaukyo Maid Team: La Verite', 'JP', now()), +(12190, 'Hanaukyo Maid-tai', 'JP', now()), +(12191, 'Four Square', 'UK', now()), +(12193, 'North and South (UK)', 'UK', now()), +(12194, 'Rocked with Gina Gershon', 'US', now()), +(12195, 'Where''s Elvis This Week?', 'UK', now()), +(12196, 'Ice Planet', 'CA', now()), +(12327, 'Attacker You!', 'JP', now()), +(12198, 'That''s Life (UK)', 'UK', now()), +(12199, 'Meerkat Manor', 'UK', now()), +(12200, 'Hanbun no Tsuki ga Noboru Sora', 'JP', now()), +(12201, 'The Play''s the Thing (UK)', 'UK', now()), +(12202, 'Tsuki ha Higashi ni Hi ha Nishi ni: Operation Sanctuary', 'JP', now()), +(12203, 'The Mischievous Twins', 'JP', now()), +(12204, 'Happy Seven', 'JP', now()), +(12205, 'Crook & Chase', 'US', now()), +(12206, 'One Man''s Family', 'US', now()), +(12207, 'Hollywood Squares', 'US', now()), +(12208, 'Fox After Breakfast', 'US', now()), +(12209, 'Vicki', 'US', now()), +(12210, 'Weighing In', 'US', now()), +(12211, 'Kick Start', 'UK', now()), +(12212, 'The Movie Game', 'UK', now()), +(12213, 'Pryde of the X-Men', 'US', now()), +(12214, 'Hare Tokidoki Buta', 'JP', now()), +(12215, 'Haré+Guu', 'JP', now()), +(12216, 'Harimogu Harry', 'JP', now()), +(12217, 'Haruba-Ke no Sanninme', 'JP', now()), +(12218, 'Fast Times', 'US', now()), +(12219, 'Harukanaru Toki no Naka de ~Hachiyou Shou~', 'JP', now()), +(12220, 'Heat Guy J (JP)', 'JP', now()), +(12221, 'Tenku Senki Shurato', 'JP', now()), +(12222, 'VeggieTales', 'US', now()), +(12223, 'Birding with Bill Oddie', 'UK', now()), +(12224, 'Only Fools on Horses', 'UK', now()), +(12225, 'Mr. President', 'US', now()), +(12226, 'Amazing Screw-On Head', 'US', now()), +(12227, 'Code R', 'US', now()), +(12228, 'Heavy Metal L-Gaim', 'JP', now()), +(12229, 'The Tomorrow Show', 'US', now()), +(12230, 'Playwrights ''56', 'US', now()), +(12231, 'Circle of Honor', 'US', now()), +(12232, 'Jigoku Sensei Nube', 'JP', now()), +(12233, 'Hello! Lady Lin', 'JP', now()), +(12234, 'The Three-eyed One', 'JP', now()), +(12235, 'The Late Late Show With Tom Snyder', 'US', now()), +(12236, 'God''s Next Army', 'UK', now()), +(12237, 'Me, My Dad and Moorgate', 'UK', now()), +(12238, 'Totally Frank', 'UK', now()), +(12239, 'Transworld Sport', 'UK', now()), +(12240, 'Volcano Alert', 'UK', now()), +(12241, 'Hikari no Densetsu', 'JP', now()), +(12242, 'Hikarian', 'JP', now()), +(12243, 'Legend of Himiko', 'JP', now()), +(12244, 'Anime Himitsu no Hanazono', 'JP', now()), +(12245, 'Full Force Nature', 'UK', now()), +(12246, '99 Most Bizarre', 'UK', now()), +(12247, '.hack//SIGN (US)', 'AJ', now()), +(12248, 'O-bake no... Holly', 'JP', now()), +(12250, 'Britain''s Streets of Vice', 'UK', now()), +(12251, 'Britain''s Streets of Slavery', 'UK', now()), +(12252, 'Britain''s Streets of Booze', 'UK', now()), +(12253, 'Britain''s Streets of Poverty', 'UK', now()), +(12254, 'Britain''s Streets of Crime', 'UK', now()), +(12255, 'Francesco''s Italy: Top to Toe', 'UK', now()), +(12256, 'Best Ever Ads', 'UK', now()), +(12257, 'Homes Under the Hammer', 'UK', now()), +(12258, 'Insider', 'SE', now()), +(12259, 'Efterlyst', 'SE', now()), +(12260, 'Wimbledon', 'UK', now()), +(12261, 'Tim Marlow On...', 'UK', now()), +(12262, 'Binyah''s Pond', 'US', now()), +(12263, 'HARDtalk', 'UK', now()), +(12264, 'HARDtalk Extra', 'UK', now()), +(12265, 'The Film Programme', 'UK', now()), +(12266, '28 Acts In 28 Minutes', 'UK', now()), +(12267, 'BOOKTalk', 'UK', now()), +(12268, 'Thirteen Against Fate', 'UK', now()), +(12269, 'The Trollenberg Terror', 'UK', now()), +(12270, 'Me And The Chimp', 'US', now()), +(12271, 'Max Bygraves Entertains', 'UK', now()), +(12272, 'Matt And Gerry Ltd', 'UK', now()), +(12274, 'Homeroom', 'US', now()), +(12275, 'Bustin Loose', 'US', now()), +(12276, 'Emmas Värld', 'SE', now()), +(12277, 'Supernördarna', 'SE', now()), +(12278, '100 Höjdare!!!', 'SE', now()), +(12279, 'The Singing Estate', 'UK', now()), +(12280, 'Bitte Lachen', 'DE', now()), +(12281, 'Sketch Show, Die', 'DE', now()), +(12282, 'Zibb', 'DE', now()), +(12283, 'E-Force', 'US', now()), +(12284, '2 People', 'NZ', now()), +(12285, 'A 4x4 is Born', 'US', now()), +(12286, '54321', 'US', now()), +(12287, 'Hit wo Nerae!', 'JP', now()), +(12288, 'Ie Naki Ko Remi', 'JP', now()), +(12289, 'Kirby: Right Back At Ya! (JP)', 'JP', now()), +(12290, 'How to Start Your Own Country', 'UK', now()), +(12291, 'Guy''s Big Bite', 'US', now()), +(12292, 'Password Plus', 'US', now()), +(12293, 'Get Christie Love', 'US', now()), +(12294, 'The War of the World', 'UK', now()), +(12295, 'Philip and Elizabeth', 'UK', now()), +(12296, 'My New Home', 'UK', now()), +(12297, 'Colin and Justin''s Wedding Belles', 'UK', now()), +(12298, 'Hidden Treasure Houses', 'UK', now()), +(12299, 'Honey I Ruined the House', 'UK', now()), +(12300, 'Transmission', 'UK', now()), +(12301, 'Lobstermen: Jeopardy at Sea', 'US', now()), +(12302, 'Watashi to Watashi: Futari no Lotte', 'JP', now()), +(15032, 'Rasen', 'JP', now()), +(12304, 'Johnny and the Sprites', 'US', now()), +(12305, 'A House In France', 'IE', now()), +(12306, 'Animal House', 'IE', now()), +(12307, 'Ronin Warriors (JP)', 'JP', now()), +(12308, 'Moomin', 'JP', now()), +(12309, 'Strawberry Marshmallow', 'JP', now()), +(12310, 'Royal Ascot', 'UK', now()), +(12311, 'Backyard Science', 'AU', now()), +(12312, 'Ie Naki Ko', 'JP', now()), +(12313, 'If I See You in my Dreams', 'JP', now()), +(12314, 'Ika no Kabamaru', 'JP', now()), +(12315, 'Kojika Monogatari', 'JP', now()), +(12316, 'Casino Casino', 'UK', now()), +(12317, 'A Dog of Flanders', 'JP', now()), +(12318, 'Sherlock Hound', 'JP', now()), +(12319, 'Jungle Book: Shounen Mowgli', 'JP', now()), +(12320, 'It''s a Big Big World', 'US', now()), +(12321, 'La Seine no Hoshi', 'JP', now()), +(12322, 'Infinite Ryvius (JP)', 'JP', now()), +(12323, 'K9', 'AU', now()), +(12324, 'Inukami!', 'JP', now()), +(12325, 'Kurogane Communication', 'JP', now()), +(12326, 'Sasurai no Taiyou', 'JP', now()), +(12328, 'Kikaider (JP)', 'JP', now()), +(12329, 'Meiken Jolie', 'JP', now()), +(12330, 'Kujira no Josephina', 'JP', now()), +(12331, 'Hey! Bumboo', 'JP', now()), +(12332, 'Witchblade: The Animated Series', 'JP', now()), +(12336, 'Kabutomushi Ouji Mushiking - Mori no Tame no Densetsu', 'JP', now()), +(12337, 'The Baby Mind Reader', 'UK', now()), +(12338, 'Who Gets the Heart?', 'UK', now()), +(12339, 'Sex in the 90s', 'UK', now()), +(12340, 'How to Look Good Naked', 'UK', now()), +(12341, 'Mindshock', 'UK', now()), +(12342, 'Mean Machines of War', 'UK', now()), +(12343, 'Rodzina zastepcza', 'PL', now()), +(12344, 'Rodzina zastepcza plus', 'PL', now()), +(12345, 'W pustyni i w puszczy (2001)', 'PL', now()), +(12346, 'W pustyni i w puszczy (1974)', 'PL', now()), +(12347, 'The Legend of Black Heaven (JP)', 'JP', now()), +(12348, 'Kage Kara Mamoru!', 'JP', now()), +(12349, 'Kagihime Monogatari - Eikyuu Alice Rinbukyoku', 'JP', now()), +(12350, 'Kaiketsu Zorro', 'JP', now()), +(12351, 'Saint Tail (JP)', 'JP', now()), +(12352, 'Kakyuusei 2', 'JP', now()), +(12353, 'Kamisama Kazoku', 'JP', now()), +(12354, 'VC', 'UK', now()), +(12355, 'Elfy Food', 'UK', now()), +(12356, 'Degrassi Tells All', 'US', now()), +(12357, 'Karaoke Senshi Mike-tarou', 'JP', now()), +(12358, 'Lucy of the Southern Rainbow', 'JP', now()), +(12359, 'Kashi no Ki Mokku', 'JP', now()), +(12360, 'Kasimasi - Girl Meets Girl', 'JP', now()), +(12361, 'Kasumin', 'JP', now()), +(12362, 'Smush', 'US', now()), +(12363, 'Space Sentinels', 'US', now()), +(12364, 'Mashin Eiyuden Wataru', 'JP', now()), +(12365, 'House of Boateng', 'US', now()), +(12366, 'Kero Kero Chime', 'JP', now()), +(12367, 'Kiba', 'JP', now()), +(12368, 'G-Force: Guardians Of Space', 'AJ', now()), +(12369, 'Oz & James Big Wine Adventure', 'UK', now()), +(12370, 'Uchu Kaizoku Captain Harlock', 'JP', now()), +(12371, 'Astroboy (1980)', 'JP', now()), +(12373, 'The Dark Side Of The Sun', 'UK', now()), +(12374, 'Jemima Shore Investigates', 'UK', now()), +(12375, 'The Family Tree', 'US', now()), +(12376, 'Eureka 7 (US)', 'AJ', now()), +(12377, 'Kindaichi Shounen no Jikenbo', 'JP', now()), +(12378, 'Kinnikuman', 'JP', now()), +(12379, 'Kirarin Revolution', 'JP', now()), +(12380, 'Demonbane', 'JP', now()), +(12381, 'Ribbon no Kishi', 'JP', now()), +(12382, 'Knights of Ramune & 40', 'JP', now()), +(12383, 'This Ugly Yet Beautiful World', 'JP', now()), +(12384, 'Adventures of Puss-in-Boots', 'JP', now()), +(12385, 'Kurau: Phantom Memory', 'JP', now()), +(12386, 'L/R: Licensed by Royalty', 'JP', now()), +(12387, 'Trisha', 'UK', now()), +(12388, 'Big Brother Diary Room Uncut', 'UK', now()), +(12389, 'Young Black Farmers', 'UK', now()), +(12391, 'Mahou Shoujo Lalabel', 'JP', now()), +(12392, 'Lamune', 'JP', now()), +(12393, 'Peter Pan no Boken', 'JP', now()), +(12394, 'Sougen no Shoujo Laura', 'JP', now()), +(12395, 'Shaman King (JP)', 'JP', now()), +(12396, 'Akagi', 'JP', now()), +(12397, 'Lemon Angel Project', 'JP', now()), +(12398, 'Let''s Dance With Papa', 'JP', now()), +(12399, 'Majokko Tickle', 'JP', now()), +(12400, 'DC Follies', 'US', now()), +(12401, 'Camel News Caravan', 'US', now()), +(12402, 'Huntley-Brinkley Report', 'US', now()), +(12403, 'Keke and Jamal', 'US', now()), +(12404, 'Professional Poker Tour', 'US', now()), +(14611, 'Holmes On Homes', 'CA', now()), +(13207, 'Pataliro Saiyuki!', 'JP', now()), +(12407, 'Tiger Mask', 'JP', now()), +(12408, 'Serial Experiments Lain (JP)', 'JP', now()), +(12409, 'Norakuro-kun', 'JP', now()), +(12410, 'The Adventures of the Little Prince', 'JP', now()), +(12411, 'Boulevard Bio', 'DE', now()), +(12412, 'Mazinger Z', 'JP', now()), +(12413, 'The Dudesons', 'FI', now()), +(12414, 'Raising the Roofs', 'US', now()), +(12415, 'Lime-iro Senkitan', 'JP', now()), +(12416, 'Adventures of Little El Cid', 'JP', now()), +(12417, 'Rascal the Raccoon', 'JP', now()), +(12418, 'Ai no Wakakusa Monogatari', 'JP', now()), +(12419, 'Wanwan Sanjushi', 'JP', now()), +(12420, 'Ocha-ken', 'JP', now()), +(12421, 'Take Home Chef', 'US', now()), +(12422, 'Lost Universe (JP)', 'JP', now()), +(12423, 'Lovege Chu ~Miracle Seiyuu Hakusho~', 'JP', now()), +(12424, 'Loveless', 'JP', now()), +(15156, 'Salaryman Kintaro (2001)', 'JP', now()), +(15571, 'The New Tic Tac Dough', 'US', now()), +(12427, 'Speed Racer (JP)', 'JP', now()), +(12428, 'Ojarumaru', 'JP', now()), +(12429, 'Mahou no Mako-chan', 'JP', now()), +(12430, 'Fashion House', 'US', now()), +(12431, 'Maeterlinck''s Blue Bird', 'JP', now()), +(12432, 'Mahou Tsukai Chappy', 'JP', now()), +(12433, 'Maho no Star Magical Emi', 'JP', now()), +(12434, 'This Is Tom Jones', 'UK', now()), +(12435, 'Magical Kanan', 'JP', now()), +(12436, 'Mahou Shoujo Lyrical Nanoha', 'JP', now()), +(12437, 'Magical Project S', 'JP', now()), +(12438, 'Ouran High School Host Club', 'JP', now()), +(12439, 'Jane Hall', 'UK', now()), +(12665, 'Robonimal Panda-Z: The Robonimation', 'JP', now()), +(12441, 'Rating James', 'US', now()), +(12442, 'TRL Poland', 'PL', now()), +(12443, 'TRL UK', 'UK', now()), +(12444, 'Reading Rainbow', 'US', now()), +(12445, 'Rozmowy w toku', 'PL', now()), +(12446, 'Digimon (JP)', 'JP', now()), +(12447, 'Magical Hat', 'JP', now()), +(12448, 'Maho no Idol Pastel Yumi', 'JP', now()), +(12449, 'Magical Shopping Arcade Abenobashi (JP)', 'JP', now()), +(12450, 'Mahou Tsukai Sally', 'JP', now()), +(12451, 'Oz no Mahou Tsukai', 'JP', now()), +(12452, 'Aoi Blink', 'JP', now()), +(12453, 'Magikano', 'JP', now()), +(12454, 'Renkin 3-kyuu Magical? Pokahn', 'JP', now()), +(12455, 'Cowboy in Africa', 'US', now()), +(12456, 'Treasure Hunt (US)', 'US', now()), +(12457, 'On Trial', 'US', now()), +(12458, 'Jan Murray Time', 'US', now()), +(12459, 'Dollar A Second', 'US', now()), +(12460, 'Meet Your Match', 'US', now()), +(12461, 'Go Lucky', 'US', now()), +(12462, 'Sing It Again', 'US', now()), +(12463, 'The New Treasure Hunt', 'US', now()), +(12464, 'The Cross-Wits', 'US', now()), +(12465, 'Lefties', 'UK', now()), +(12466, 'PokerFace', 'UK', now()), +(12467, 'Bad Lads Army', 'UK', now()), +(12468, 'Celebrity Sweepstakes', 'US', now()), +(12469, 'This Is Your Life (1971)', 'US', now()), +(12470, 'Chain Letter', 'US', now()), +(12471, 'Charge Account', 'US', now()), +(12472, 'Blind Date (1949)', 'US', now()), +(12473, 'Klan', 'PL', now()), +(14612, 'John From Cincinnati', 'US', now()), +(12475, 'Majokko Megu-chan', 'JP', now()), +(12476, 'Makai Senki Disgaea', 'JP', now()), +(12477, 'Mama wa Shougaku Yonnensei', 'JP', now()), +(12478, 'Animation Kikou Marco Polo no Boken', 'JP', now()), +(12479, 'Shinseikiden Mars', 'JP', now()), +(12480, 'Maruboshi Mabochan', 'JP', now()), +(12481, 'Demashitaa! Powerpuff Girls Z', 'JP', now()), +(12482, 'Massugu ni Ikou', 'JP', now()), +(12483, 'Master of Mosquiton ''99', 'JP', now()), +(12484, 'Nekketsu Saikyo Gozaurer', 'JP', now()), +(12485, 'Yamato Takeru', 'JP', now()), +(12486, 'Maze', 'JP', now()), +(12487, 'Gasshin Sentai Mechander Robo', 'JP', now()), +(12488, 'MegaMan NT Warrior (JP)', 'JP', now()), +(12489, 'Fields of Gold', 'UK', now()), +(12490, 'The Debt', 'UK', now()), +(12491, 'Real Men', 'UK', now()), +(12492, 'What''s Your Problem?', 'UK', now()), +(12493, 'Death In Holy Orders', 'UK', now()), +(12494, 'The Melancholy of Haruhi Suzumiya', 'JP', now()), +(12495, 'Ningyo Hime Marina no Boken', 'JP', now()), +(12496, 'Metal Fighter Miku', 'JP', now()), +(12497, 'CBS Views The Press', 'US', now()), +(12498, 'NASCAR: Driven To Win', 'US', now()), +(12499, 'Bio4Kids', 'US', now()), +(12500, 'Today at Wimbledon', 'UK', now()), +(17279, 'Holly And Fearne Go Dating', 'UK', now()), +(14636, 'Single & Fabulous', 'KR', now()), +(12504, 'Ride With Funkmaster Flex', 'US', now()), +(12505, 'Tokyo Mew Mew', 'JP', now()), +(12506, 'Miami Guns', 'JP', now()), +(12507, 'Attack No. 1', 'JP', now()), +(12508, 'Miracle Shoujo Limit-chan', 'JP', now()), +(12509, 'Mister Ajikko', 'JP', now()), +(12510, 'ABC Weekend Specials', 'US', now()), +(12511, 'Menace', 'UK', now()), +(12512, 'Melissa (1974)', 'UK', now()), +(12513, 'The Man Outside', 'UK', now()), +(12514, 'Malice Aforethought', 'UK', now()), +(12515, 'Warship', 'UK', now()), +(12516, 'Sangokushi', 'JP', now()), +(12517, 'Muu no Hakugei', 'JP', now()), +(12518, 'Moero! Top Striker', 'JP', now()), +(12519, 'Higurashi no Naku Koro ni', 'JP', now()), +(12520, 'Momoiro Sisters', 'JP', now()), +(12521, 'Paranoia Agent (JP)', 'JP', now()), +(12522, 'Musashi', 'JP', now()), +(12523, 'Mushi-shi', 'JP', now()), +(12524, 'Muteki Ou Tri-Zenon', 'JP', now()), +(12525, 'Shura no Toki', 'JP', now()), +(12526, 'Welcome to My World', 'UK', now()), +(12527, 'Oku-sama wa Joshi Kousei', 'JP', now()), +(12528, 'MÄR: Märchen Awakens Romance', 'JP', now()), +(12529, 'Seven of Seven', 'JP', now()), +(12530, 'Testament: The Bible in Animation', 'UK', now()), +(12531, 'Tall Hopes', 'US', now()), +(12532, 'Ads Infinitum', 'UK', now()), +(12533, 'Night Flight', 'US', now()), +(12534, 'Totally Outrageous Behavior', 'US', now()), +(12535, 'The Newcomers', 'UK', now()), +(12536, 'Compact', 'UK', now()), +(15689, 'Greg Behrendt''s Wake-Up Call', 'US', now()), +(17280, 'Kapamilya Games Uplate', 'PH', now()), +(15688, 'Coming of Age (US)', 'US', now()), +(12540, 'Nanako SOS', 'JP', now()), +(12541, 'Nanami-chan', 'JP', now()), +(12542, 'Comic Book SuperHeroes: Unmasked', 'US', now()), +(12543, 'The DuPont Show With June Allyson', 'US', now()), +(12544, 'Private Screenings', 'US', now()), +(12545, 'Personality', 'US', now()), +(12546, 'The ABC Saturday Superstar Movies', 'US', now()), +(12547, 'Family Classic Tales', 'US', now()), +(12758, 'Justice (1954)', 'US', now()), +(12549, 'Star Blazers (JP)', 'JP', now()), +(12550, 'Nekojiru Gekijou', 'JP', now()), +(12551, 'Oroshitate Musical Nerima Daikon Brothers', 'JP', now()), +(12552, 'NHK ni Youkoso!', 'JP', now()), +(12553, 'Random Cartoons', 'US', now()), +(12554, 'Mighty B', 'US', now()), +(12555, 'You Asked For It (1971)', 'US', now()), +(12556, 'Big Cat Diary', 'UK', now()), +(12557, 'Excuse My French (UK)', 'UK', now()), +(12558, 'Grumpy Old Holidays', 'UK', now()), +(12559, 'Tribe (UK)', 'UK', now()), +(12560, 'Driving Mum & Dad Mad', 'UK', now()), +(12561, 'Medicine''s Strangest Cases', 'UK', now()), +(12562, 'Are We Being Served?', 'UK', now()), +(12563, 'The Law of the Playground', 'UK', now()), +(14653, 'Off The Record', 'US', now()), +(12565, 'QuizMania', 'UK', now()), +(12566, 'Darlene', 'US', now()), +(12567, 'The Big Knights', 'UK', now()), +(12568, 'Bill the Minder', 'UK', now()), +(12569, 'Binka', 'UK', now()), +(12570, 'Love Story (US)', 'US', now()), +(12571, 'The Nurses', 'US', now()), +(12572, 'Doc (1975)', 'US', now()), +(12573, 'The Miracles of Jesus', 'UK', now()), +(14690, 'Unanimous (UK)', 'UK', now()), +(12575, 'Nils no Fushigi na Tabi', 'JP', now()), +(12576, 'Nintama Rantarou', 'JP', now()), +(12577, 'Ninku', 'JP', now()), +(12578, 'Beach Patrol: Miami Beach', 'US', now()), +(12579, 'World Series of Pop Culture', 'US', now()), +(12580, 'Most Evil', 'US', now()), +(12581, 'Noein - Mou Hitori no Kimi e', 'JP', now()), +(12582, 'Noir (JP)', 'JP', now()), +(12583, 'Trinity Blood (JP)', 'JP', now()), +(12584, 'Nurse Angel Ririka SOS', 'JP', now()), +(12585, 'Commander Castle', 'US', now()), +(12586, 'Teen Girls', 'US', now()), +(12587, 'The Chaser Decides', 'AU', now()), +(12588, 'Behind Bars', 'UK', now()), +(12589, 'The Herbs', 'UK', now()), +(12590, 'The Adventures of Parsley', 'UK', now()), +(12591, 'The Adventures of Sir Prancelot', 'UK', now()), +(12592, 'The Amazing Adrenalini Brothers', 'UK', now()), +(12593, 'The World of Peter Rabbit and Friends', 'UK', now()), +(12594, 'Victor and Maria', 'UK', now()), +(12595, 'Noggin the Nog (1959)', 'UK', now()), +(12596, 'William''s Wish Wellingtons', 'UK', now()), +(12597, 'Wimpole Village', 'UK', now()), +(12598, 'Wolves, Witches and Giants', 'UK', now()), +(12599, 'Meet The Rokers', 'US', now()), +(12600, 'Brainiac''s Test Tube Baby', 'UK', now()), +(12601, 'Christian O''Connell''s Sunday Service', 'UK', now()), +(12602, 'World Cuppa', 'UK', now()), +(12603, 'Here Come the Double Deckers', 'UK', now()), +(12604, 'Hancock (1961)', 'UK', now()), +(12605, 'Happily Ever After', 'UK', now()), +(12606, 'A Time Of Day', 'UK', now()), +(12607, 'Spy Catcher', 'UK', now()), +(12608, 'Private Investigator', 'UK', now()), +(12609, 'The Naked Lady', 'UK', now()), +(12610, 'The Men From Room 13', 'UK', now()), +(12611, 'A Mask For Alexis', 'UK', now()), +(12612, 'Time Trumpet', 'UK', now()), +(12613, 'Death Detective', 'UK', now()), +(12614, 'Sport Relief', 'UK', now()), +(12615, 'Aubrey', 'UK', now()), +(12616, 'Crystal Tipps and Alistair', 'UK', now()), +(12617, 'Doris', 'UK', now()), +(12618, 'Target Luna', 'UK', now()), +(12619, 'Oh Boy!', 'UK', now()), +(12620, 'Outbreak of Murder', 'UK', now()), +(12621, 'Plateau of Fear', 'UK', now()), +(12622, 'Hereward the Wake', 'UK', now()), +(12623, 'The Buccaneers (UK)', 'UK', now()), +(12624, 'The Danny Thomas Hour', 'US', now()), +(12625, 'The Double Life Of Henry Phyfe', 'US', now()), +(12626, 'The Jimmy Dean Show', 'US', now()), +(12627, 'The Dinah Shore Chevy Show', 'US', now()), +(12628, 'The Dick Cavett Show', 'US', now()), +(12629, 'Get It Together', 'US', now()), +(12630, '8th Man', 'JP', now()), +(12631, 'Ochamegami Monogatari Korokoro Poron', 'JP', now()), +(12632, 'Oh! Family', 'JP', now()), +(12633, 'Ohayo Spank!', 'JP', now()), +(12634, 'Kagaku Ninjatai Gatchaman II', 'JP', now()), +(12635, 'Kagaku Ninjatai Gatchaman F', 'JP', now()), +(12636, 'Metalocalypse', 'US', now()), +(12637, 'Legends', 'US', now()), +(12638, 'How the Other Half Learns', 'UK', now()), +(12639, 'Big Ron Manager', 'UK', now()), +(12640, 'Final Chance to Save', 'UK', now()), +(12641, 'Mark Williams'' Big Bangs', 'UK', now()), +(12642, 'Myths & Monsters', 'UK', now()), +(12643, 'Final Days of Planet Earth', 'UK', now()), +(12644, 'The Match', 'UK', now()), +(21880, 'Arga snickaren', 'SE', now()), +(12646, 'ASBO Fever', 'UK', now()), +(12647, 'OAPs on ASBOs', 'UK', now()), +(12648, 'Invasion of the Body Scratchers', 'UK', now()), +(12649, 'Let’s Talk about Sex and the City', 'US', now()), +(12650, 'Shark In the Park', 'NZ', now()), +(12651, 'Perfect Parents', 'UK', now()), +(12652, 'The Prince Of Tennis (US)', 'AJ', now()), +(12653, 'Suspect', 'UK', now()), +(12654, 'Oishinbo', 'JP', now()), +(12655, 'Omishi Magical Theater Risky Safety', 'JP', now()), +(12656, 'Utawarerumono', 'JP', now()), +(12657, 'Onegai my Melody', 'JP', now()), +(12658, 'Ore wa Teppei', 'JP', now()), +(12659, 'Otogi-Jushi Akazukin', 'JP', now()), +(12660, 'Oyayubi Hime', 'JP', now()), +(12661, 'The George Gobel Show', 'US', now()), +(12662, 'True Blood', 'US', now()), +(12663, 'Air', 'JP', now()), +(12667, 'Papuwa', 'JP', now()), +(12668, 'Peacemaker', 'JP', now()), +(12669, 'PetoPeto-san', 'JP', now()), +(12670, 'Aoki Densetsu Shoot!', 'JP', now()), +(12671, 'Prehistoric Park', 'UK', now()), +(12672, 'Ninguém Como Tu', 'PT', now()), +(12673, 'Dei-te Quase Tudo', 'PT', now()), +(12674, 'Fala-me de Amor', 'PT', now()), +(12675, 'Tempo de Viver', 'PT', now()), +(12676, 'Floribella', 'PT', now()), +(12677, 'Phineas and Ferb', 'US', now()), +(12678, 'Rafferty', 'US', now()), +(12679, 'The Andromeda Breakthrough', 'UK', now()), +(19329, 'Criminal Justice', 'UK', now()), +(12681, 'Work Out', 'US', now()), +(12682, 'Platonic Chain', 'JP', now()), +(12683, 'Play Ball', 'JP', now()), +(12684, 'Dr. Rin ni Kiitemite!', 'JP', now()), +(12685, 'Binbou Shimai Monogatari', 'JP', now()), +(13077, 'Amerika', 'US', now()), +(12687, 'Popolocrois Monogatari', 'JP', now()), +(12688, 'Hime-sama Goyojin', 'JP', now()), +(12689, 'Princess Princess', 'JP', now()), +(12690, 'Bosco Daiboken', 'JP', now()), +(12691, 'Arabian Nights Sinbad no Boken', 'JP', now()), +(12692, 'Take Me', 'UK', now()), +(12693, 'My Friends Tigger & Pooh', 'US', now()), +(12694, 'Inside Edition', 'US', now()), +(12695, 'Recovery', 'UK', now()), +(12696, 'Ancient Rome: The Rise and Fall of an Empire', 'UK', now()), +(12697, 'A Child Against All Odds', 'UK', now()), +(12698, 'Celebrity Masterchef', 'UK', now()), +(12699, 'The Great British Summer', 'UK', now()), +(12700, 'The Brain Hospital', 'UK', now()), +(12701, 'Aftersun', 'UK', now()), +(12702, 'Magnolia', 'UK', now()), +(12703, 'Angel Cake', 'UK', now()), +(12704, 'The Good Housekeeping Guide', 'UK', now()), +(12705, 'Berry''s Way', 'UK', now()), +(12706, 'The Armstrong and Miller Show', 'UK', now()), +(12707, '1 vs 100', 'UK', now()), +(12708, 'Animal Warfare', 'UK', now()), +(12709, 'Autumnwatch', 'UK', now()), +(12710, 'Beyond Boundaries', 'UK', now()), +(12711, 'The Choir', 'UK', now()), +(12712, 'The Trap: What Happened to Our Dream of Freedom', 'UK', now()), +(12713, 'Digging Deep', 'UK', now()), +(12714, 'Equator', 'UK', now()), +(12715, 'Fear, Stress And Anger', 'UK', now()), +(12716, 'Galapagos', 'UK', now()), +(12717, 'Heston Blumenthal – In Search Of Perfection', 'UK', now()), +(12718, 'Johnny Kingdom – A Year On Exmoor', 'UK', now()), +(12719, 'Monty Don - Growing Out Of Trouble', 'UK', now()), +(12720, 'Simon Schama''s Power Of Art', 'UK', now()), +(12721, 'Stephen Fry – The Secret Life Of The Manic Depressive', 'UK', now()), +(12722, 'Suez', 'UK', now()), +(12723, 'That Mitchell & Webb Look', 'UK', now()), +(12724, 'Can Gerry Robinson Fix The NHS?', 'UK', now()), +(12725, 'The Nightmare Man', 'UK', now()), +(12726, '1990', 'UK', now()), +(12727, 'Ring ni Kakero', 'JP', now()), +(12728, 'Pugyuru', 'JP', now()), +(12729, 'Rakugo Tennyo Oyui', 'JP', now()), +(12730, 'Tokimeki Tonight', 'JP', now()), +(12731, 'Ray', 'JP', now()), +(12732, 'Entaku no Kishi Monogatari: Moero Arthur', 'JP', now()), +(12733, 'Chouja Reideen', 'JP', now()), +(12734, 'Rerere no Tensai Bakabon', 'JP', now()), +(12735, 'Rokushin Gattai God Mars', 'JP', now()), +(12736, 'The Charlotte Church Show', 'UK', now()), +(12737, 'UFC All Access', 'US', now()), +(12738, 'Play for Tomorrow', 'UK', now()), +(12739, 'Lilies', 'UK', now()), +(12740, 'Castaway', 'UK', now()), +(12741, 'Turn Back Time (UK)', 'UK', now()), +(12742, 'Castle (2003)', 'UK', now()), +(12743, 'Ashita no Joe', 'JP', now()), +(12744, 'Run=Dim', 'JP', now()), +(12745, 'Sabu to Ichi Torimono Hikae', 'JP', now()), +(12746, 'Saint Beast', 'JP', now()), +(12747, 'Komatsu Sakyo Anime Gekijou', 'JP', now()), +(12749, 'Saru! Get You ~ On Air', 'JP', now()), +(12750, 'Sasami: Mahou Shoujo Club', 'JP', now()), +(12751, 'Sasuke', 'JP', now()), +(12752, 'Ai no Gakko Cuore Monogatari', 'JP', now()), +(12753, 'Strictly Confidential', 'UK', now()), +(12754, 'Seton Doubutsuki', 'JP', now()), +(12755, 'Jigsaw John', 'US', now()), +(12756, 'The Great Adventure', 'US', now()), +(12761, 'Norby', 'US', now()), +(12762, 'Man Dog', 'UK', now()), +(12763, 'Seishun Anime Zenshu', 'JP', now()), +(12764, 'Sekushi Commando Gaiden: Sugoiyo! Masaru-san', 'JP', now()), +(12765, 'Sentou Mecha Xabungle', 'JP', now()), +(12766, 'Shakugan no Shana', 'JP', now()), +(12767, 'Shiawase Sou no Okojo-san', 'JP', now()), +(12768, 'Shinigami no Ballad: momo the girl god of death', 'JP', now()), +(12769, 'Shonen Tokugawa Ieyasu', 'JP', now()), +(12770, 'The Indestructibles', 'UK', now()), +(12771, 'Escape To River Cottage', 'UK', now()), +(12772, 'Call Me A Cabbie', 'UK', now()), +(14637, 'Snow White', 'KR', now()), +(14730, 'Rudolph and Frosty''s Christmas in July', 'US', now()), +(12775, 'Rob Brydon''s Annually Retentive', 'UK', now()), +(12776, 'The One Show', 'UK', now()), +(12777, 'I''m With Stupid', 'UK', now()), +(12778, 'Little Miss Jocelyn', 'UK', now()), +(12779, 'Pulling', 'UK', now()), +(12780, 'Dogtown', 'UK', now()), +(14821, 'The Skipper', 'UK', now()), +(12782, 'Say No To The Knife', 'UK', now()), +(23539, 'The 100 Mile Challenge', 'CA', now()), +(12784, 'Sixteen', 'UK', now()), +(12785, 'Grime Scene Investigation', 'UK', now()), +(12786, 'Dog Borstal', 'UK', now()), +(12787, 'Binge Britain', 'UK', now()), +(12788, 'Runaways', 'UK', now()), +(12789, 'Body Image', 'UK', now()), +(12790, 'BBC Children In Need', 'UK', now()), +(12791, 'MOBO Awards', 'UK', now()), +(12792, 'Hunter''s Walk', 'UK', now()), +(12793, 'Tabloid Wars', 'US', now()), +(12794, 'Alive', 'UK', now()), +(12795, 'Sanctuary (UK)', 'UK', now()), +(12796, 'Undermind', 'UK', now()), +(12797, 'Showa ahozoshi akanuke ichiban!', 'JP', now()), +(12798, 'Shuffle!', 'JP', now()), +(12799, 'Simoun', 'JP', now()), +(12800, 'Chiisana Kyojin Microman', 'JP', now()), +(12801, 'Solty Rei', 'JP', now()), +(12802, 'Tentou Mushi no Uta', 'JP', now()), +(12803, 'Starship Girl Yamamoto Yohko', 'JP', now()), +(12804, 'Soul Link', 'JP', now()), +(12805, 'The Good Night Show', 'US', now()), +(12806, 'Modern Toss', 'UK', now()), +(12807, 'ABC Barn Dance', 'US', now()), +(12808, 'ABC Comedy Hour', 'US', now()), +(12809, 'ABC Comedy Special', 'US', now()), +(12810, 'ABC In Concert Country', 'US', now()), +(12811, 'ABC In Concert', 'US', now()), +(12812, 'Oscar', 'UK', now()), +(12813, 'The Standard', 'UK', now()), +(12814, 'Oil Strike North', 'UK', now()), +(12815, 'No Hiding Place', 'UK', now()), +(12816, 'Top Secret', 'UK', now()), +(12817, 'Feasting on Asphalt', 'US', now()), +(12818, 'Celebrity Duets', 'US', now()), +(12819, 'Hawaiian Heat', 'US', now()), +(12820, 'The Lloyd Bridges Show', 'US', now()), +(12821, 'Super Dimensional Cavalry Southern Cross', 'JP', now()), +(12822, 'Uchuu Ace', 'JP', now()), +(12823, 'Space Adventure Cobra', 'JP', now()), +(12824, 'Uchuu no Kishi Tekkaman', 'JP', now()), +(12825, 'Tekkaman Blade', 'JP', now()), +(12826, 'Speed Grapher', 'JP', now()), +(12827, 'Spiral (JP)', 'JP', now()), +(12828, 'One Bad Trip', 'US', now()), +(12829, 'Blizzard: Race To The Pole', 'UK', now()), +(12830, 'Dee Time', 'UK', now()), +(12831, 'Popside', 'UK', now()), +(12832, 'Beat! Beat! Beat!', 'DE', now()), +(12833, 'Dim Dam Dom', 'FR', now()), +(12834, 'Disco', 'DE', now()), +(12835, 'World Series of Poker 2003', 'US', now()), +(12836, 'Starship Operators', 'JP', now()), +(12837, 'Saiunkoku Monogatari', 'JP', now()), +(12838, 'Strange Dawn', 'JP', now()), +(12839, 'Ichigo 100%', 'JP', now()), +(12840, 'Strawberry Panic!', 'JP', now()), +(12841, 'Submarine Super 99', 'JP', now()), +(12842, 'Sue Cat', 'JP', now()), +(12843, 'Sugar Sugar Rune', 'JP', now()), +(12844, 'Sukisho', 'JP', now()), +(12845, 'Dokkoida?!', 'JP', now()), +(14673, 'Michelle And Andy''s Big Day', 'UK', now()), +(12847, 'The Bob Newhart Show (1961)', 'US', now()), +(12848, 'St. Luminous Mission High School', 'JP', now()), +(12849, 'Suzuka', 'JP', now()), +(12850, 'Sweet Valerians', 'JP', now()), +(12851, 'Swiss Family Robinson (JP)', 'JP', now()), +(12852, 'A Beginner''s Guide to Islam', 'UK', now()), +(12853, 'Princess Nikki', 'UK', now()), +(12855, 'The House On High Street', 'US', now()), +(12856, 'Modern Romances', 'US', now()), +(12857, 'Road To Reality', 'US', now()), +(12858, 'Friends (1979)', 'US', now()), +(12859, 'The Steph Show', 'AU', now()), +(12860, 'ABC''s Nightlife', 'US', now()), +(12861, 'Big Bear Week', 'UK', now()), +(12862, 'ABC Rocks', 'US', now()), +(12863, 'AJ After Hours', 'US', now()), +(12864, 'Accent On An American Summer', 'US', now()), +(12865, 'Our Family Honor', 'US', now()), +(12866, 'Our Man Higgins', 'US', now()), +(12867, 'Star Time', 'US', now()), +(12868, 'Starlight Theatre', 'US', now()), +(12869, 'Stars Of Jazz', 'US', now()), +(12870, 'State Trooper', 'US', now()), +(12871, 'Welcome to Orty-Fou', 'UK', now()), +(12872, 'Dziewczyna i Chlopak', 'PL', now()), +(12873, 'Tactical Roar', 'JP', now()), +(12874, 'Tenshi no Shippo Chu!', 'JP', now()), +(12875, 'Tales of Eternia', 'JP', now()), +(12876, 'Rozalka Olaboga', 'PL', now()), +(12877, 'Przygrywka', 'PL', now()), +(12878, 'Rodzina Lesniewskich', 'PL', now()), +(12879, 'Banda Rudego', 'PL', now()), +(14662, 'All Star Family Fortunes', 'UK', now()), +(12881, 'Navy Log', 'US', now()), +(12882, 'Harbor Command', 'US', now()), +(12883, 'The Silent Service', 'US', now()), +(12884, 'Boston Law', 'US', now()), +(12885, 'Spider!', 'UK', now()), +(12886, 'The Forgotten (1995)', 'UK', now()), +(12887, 'I''m Gonna Be An Angel', 'JP', now()), +(12888, 'Tetsujin 28th', 'JP', now()), +(14788, 'Passport To The Sun', 'UK', now()), +(12890, 'The Third', 'JP', now()), +(12891, 'Tide-Line Blue', 'JP', now()), +(12892, 'To Heart', 'JP', now()), +(12893, 'To Heart 2', 'JP', now()), +(12894, 'Mundo Meu', 'PT', now()), +(12895, 'Olá Pai', 'PT', now()), +(12896, 'Inspector Max', 'PT', now()), +(12897, 'Ana e os Sete', 'PT', now()), +(12898, 'Tokko', 'JP', now()), +(12899, 'Tonagura!', 'JP', now()), +(12900, 'Umi no Triton', 'JP', now()), +(12901, 'Tsuyokiss', 'JP', now()), +(12902, 'Yoroshiku Mechadock', 'JP', now()), +(12903, 'Local Flavor with Joan Cusack', 'US', now()), +(12904, 'Mistura Fina', 'PT', now()), +(12905, 'Baía das Mulheres', 'PT', now()), +(12906, 'Ultimate Girls', 'JP', now()), +(12907, 'Damekko Doubutsu', 'JP', now()), +(12908, 'Wakakusa Monogatari Yori Wakakusa no Yon Shimai', 'JP', now()), +(12909, 'Charlotte of the Young Grass', 'JP', now()), +(12910, 'Wan Wan Serebu Soreyuke! Tetsunoshin', 'JP', now()), +(12911, 'Chou Majin Eiyuuden Wataru', 'JP', now()), +(12912, 'What''s Michael?', 'JP', now()), +(12913, 'Yomigaeru Sora - Rescue Wings', 'JP', now()), +(12914, 'Spider''s Silly Show', 'UK', now()), +(12915, 'Skatoony', 'UK', now()), +(12916, 'Anjo Selvagem', 'PT', now()), +(12917, 'Olhos de Água', 'PT', now()), +(12918, 'Queridas Feras', 'PT', now()), +(12919, 'Yoshinaga-san''chi no Gargoyle', 'JP', now()), +(12920, 'Yume Tsukai', 'JP', now()), +(12921, 'Yuusei Shonen Papii', 'JP', now()), +(12922, 'Brave Police J-Decker', 'JP', now()), +(12923, '11 Cameras', 'CA', now()), +(12924, '49th & Main', 'CA', now()), +(12925, 'Zegapain', 'JP', now()), +(12926, 'Zero no Tsukaima', 'JP', now()), +(12927, 'Zettai Seigi Love Pheromone', 'JP', now()), +(12928, 'Zoids/Zero (JP)', 'JP', now()), +(12929, 'Zoids: Fuzors (JP)', 'JP', now()), +(12930, 'H2O: Just Add Water', 'AU', now()), +(12931, 'Shorty McShorts'' Shorts', 'US', now()), +(12932, 'The Tom & Jerry Comedy Show', 'US', now()), +(12933, 'Deep Toscana', 'JP', now()), +(12934, 'Made in LA', 'UK', now()), +(12935, 'The Potter House', 'US', now()), +(12936, 'Second Coming', 'UK', now()), +(12937, 'Traffik', 'UK', now()), +(12938, 'The Fragile Heart', 'UK', now()), +(12939, 'The Big Battalions', 'UK', now()), +(12940, 'Oktober', 'UK', now()), +(12941, 'Head Over Heels (UK)', 'UK', now()), +(12942, 'Every Woman Knows a Secret', 'UK', now()), +(12943, 'All or Nothing At All', 'UK', now()), +(12944, 'Golden Hour', 'UK', now()), +(12945, 'The Lost Prince', 'UK', now()), +(12946, 'Distraction (UK)', 'UK', now()), +(12947, 'The Morning After Show', 'UK', now()), +(12948, 'Vernon Kay''s Gameshow Marathon', 'UK', now()), +(12949, 'The Xtra Factor', 'UK', now()), +(12950, 'Heroes Of History', 'UK', now()), +(12951, 'How Clean is Your House? (UK)', 'UK', now()), +(12952, 'Property Ladder (UK)', 'UK', now()), +(12953, 'The Sex Inspectors', 'UK', now()), +(12954, 'Streets Ahead', 'UK', now()), +(12955, 'New Servants', 'UK', now()), +(12956, 'Sweet Sixteen (2005)', 'UK', now()), +(12957, 'Families Behaving Badly', 'UK', now()), +(12958, 'Rockliffe''s Babies', 'UK', now()), +(12959, 'Apply Immediately', 'UK', now()), +(12960, 'Boxing Academy', 'UK', now()), +(12961, 'The A-Z of Scotland', 'UK', now()), +(12962, 'The A-Z of Wales', 'UK', now()), +(12963, 'Your Money Or Your Life', 'UK', now()), +(12964, 'Would Like to Meet', 'UK', now()), +(12965, 'Merrick & Rosso Unplanned', 'AU', now()), +(12967, 'Whine Gums', 'UK', now()), +(12968, 'The All Star Comedy Show', 'UK', now()), +(12969, 'From Bard to Verse', 'UK', now()), +(12970, 'Monkey Trousers', 'UK', now()), +(12971, 'The Minor Accomplishments of Jackie Woodman', 'US', now()), +(12973, 'King of the Castle', 'UK', now()), +(12974, 'It''s Anybody''s Guess', 'US', now()), +(12975, 'Sports Anorak of the Year', 'UK', now()), +(12976, 'Upshot', 'UK', now()), +(12977, 'The Story of Light Entertainment', 'UK', now()), +(12978, 'National Lottery - In It to Win It', 'UK', now()), +(12979, 'Chopratown', 'UK', now()), +(12980, 'The War Behind The Wire', 'UK', now()), +(12981, 'A Woman''s Guide To Adultery', 'UK', now()), +(12982, 'Intuition', 'UK', now()), +(12983, 'Incognito', 'UK', now()), +(12984, 'Trawlermen', 'UK', now()), +(12985, 'Bosom Pals', 'UK', now()), +(12986, '100%', 'UK', now()), +(12987, 'The Festival', 'US', now()), +(12988, 'The Business', 'US', now()), +(12989, 'Viva Piñata', 'CA', now()), +(12990, 'Wonderful You', 'UK', now()), +(12991, 'The Wacky World Of Jonathan Winters', 'US', now()), +(12992, 'Waiting for the Break', 'US', now()), +(14657, 'Eye To Eye With Connie Chung', 'US', now()), +(12994, 'Zero to Hero', 'UK', now()), +(12995, 'Inocente De Ti', 'MX', now()), +(12996, 'Reckless', 'UK', now()), +(12997, 'La Fea Más Bella', 'MX', now()), +(12998, 'Butterfly Island', 'AU', now()), +(12999, 'Wanpaku Omukashi Kumu Kumu', 'JP', now()), +(13000, 'Sabrina, The Teenage Witch (1971)', 'US', now()), +(13001, 'Ban This Filth', 'UK', now()), +(13002, 'Fast Tracks', 'AU', now()), +(13003, 'Confidence Lab', 'UK', now()), +(13004, 'Little Friends', 'UK', now()), +(13005, 'MechaNick', 'UK', now()), +(13006, 'The Richard Taylor Interviews', 'UK', now()), +(13007, 'Skippy: Adventures in Bushtown', 'AU', now()), +(13008, 'Fox Sports World Report', 'CA', now()), +(13009, 'Vampire Princess Miyu (JP)', 'JP', now()), +(13010, 'The New Breed', 'US', now()), +(13011, 'Charlie Brooker''s Screen Wipe', 'UK', now()), +(13012, 'Cidade dos Homens', 'BR', now()), +(13013, 'Wieczor z Jagielskim', 'PL', now()), +(13014, 'Pan Kleks', 'PL', now()), +(13015, 'Fortune Quest L', 'JP', now()), +(13016, 'Scrapheap Challenge: The Scrappy Races', 'UK', now()), +(13017, 'Theatre Parade', 'UK', now()), +(13018, 'Sports Review', 'UK', now()), +(13019, 'Ann and Harold', 'UK', now()), +(13020, 'Telecrime', 'UK', now()), +(13021, 'The Teen Tamer', 'UK', now()), +(13022, 'Kamichu!', 'JP', now()), +(13023, 'Scarlett (1994)', 'US', now()), +(13024, 'Australia''s Got Talent', 'AU', now()), +(13025, 'Na dobre i na zle', 'PL', now()), +(13026, 'M jak Miłość', 'PL', now()), +(13027, 'Teen Town', 'UK', now()), +(13028, 'Five Days', 'UK', now()), +(13029, 'Hidamari no Ki', 'JP', now()), +(13030, 'Michael Palin: Around the World in 80 Days', 'UK', now()), +(13031, 'Afro Samurai', 'US', now()), +(13032, 'Oban Star-Racers', 'FR', now()), +(13033, 'Chain Reaction', 'US', now()), +(13034, 'Starface', 'US', now()), +(15155, 'Charm School', 'US', now()), +(13036, 'Sasurai no Shoujo Nell', 'JP', now()), +(13037, 'House Of Crime', 'UK', now()), +(13038, 'Blockbusters (US)', 'US', now()), +(13039, 'Crest of the Stars (JP)', 'JP', now()), +(13040, 'The Dark Side of Porn', 'UK', now()), +(13041, 'Respectable', 'UK', now()), +(13042, 'Holding On', 'UK', now()), +(13043, 'And the Beat Goes On', 'UK', now()), +(13044, 'Resort to Murder', 'UK', now()), +(13045, 'Cover Shot', 'US', now()), +(13046, 'Old Dogs, New Tricks', 'UK', now()), +(13047, 'Shop ''Til You Drop', 'US', now()), +(13048, 'Twenty-One (1956)', 'US', now()), +(13049, 'The $1.98 Beauty Show', 'US', now()), +(13050, 'The Victor Borge Show', 'US', now()), +(13051, 'Rumble', 'UK', now()), +(13052, 'Lost Empires', 'UK', now()), +(13053, 'Studs', 'US', now()), +(13054, 'America''s Dumbest Criminals', 'US', now()), +(13055, 'Australian Survivor', 'AU', now()), +(13056, 'Club 60', 'US', now()), +(13057, 'America Tonight', 'US', now()), +(13058, 'David Tench Tonight', 'AU', now()), +(13059, 'Real Stories', 'AU', now()), +(13060, 'Backup', 'UK', now()), +(13061, 'David Copperfield (1974)', 'UK', now()), +(13062, 'Lorna Doone (1976)', 'UK', now()), +(13063, 'If...', 'UK', now()), +(13064, 'The Massingham Affair', 'UK', now()), +(13065, 'Contract to Kill', 'UK', now()), +(13066, 'The Spies', 'UK', now()), +(13067, 'Ransom for a Pretty Girl', 'UK', now()), +(13068, 'Boy Meets Girl', 'UK', now()), +(13069, 'The First Lady', 'UK', now()), +(13070, 'The Main Chance', 'UK', now()), +(13071, 'The Rivals of Sherlock Holmes', 'UK', now()), +(13072, 'Germinal', 'UK', now()), +(13073, 'The Edwardians', 'UK', now()), +(13078, 'In Cold Blood', 'US', now()), +(13079, 'Doctor Zhivago (2002)', 'UK', now()), +(13080, 'To the Ends of the Earth', 'UK', now()), +(13081, 'Mary Bryant', 'AU', now()), +(13082, 'The Little Zoo That Could', 'US', now()), +(13083, 'Lorna Doone (1963)', 'UK', now()), +(13084, 'David Copperfield (1965)', 'IT', now()), +(13085, 'Soreyuke! Gedou Otometai', 'JP', now()), +(13086, 'Shuriken School', 'FR', now()), +(13088, 'Under Fire', 'US', now()), +(13089, 'Two-A-Days', 'US', now()), +(13090, 'The Saturday Early Show', 'US', now()), +(13091, 'CBS This Morning', 'US', now()), +(13092, 'The Morning Program', 'US', now()), +(13093, 'The Morning Show', 'US', now()), +(13094, 'Terry Pratchett’s Hogfather', 'UK', now()), +(13095, 'Ross Kemp on Gangs', 'UK', now()), +(13096, 'Murder or Mutiny', 'UK', now()), +(13097, 'Dracula', 'UK', now()), +(13098, 'Lenny''s Britain', 'UK', now()), +(13099, 'Mission Implausible', 'UK', now()), +(13100, 'The Big Idea', 'UK', now()), +(13101, 'David Copperfield (1966)', 'UK', now()), +(13102, 'TFI Friday', 'UK', now()), +(13103, 'Great Composers', 'UK', now()), +(13104, 'Light Lunch', 'UK', now()), +(13105, 'Churchill', 'UK', now()), +(13106, 'Tussen de sterren', 'NL', now()), +(13107, 'Filmland', 'DK', now()), +(13108, 'Brothers and Sisters (1979)', 'US', now()), +(13109, 'Доктор Живаго (2006)', 'RU', now()), +(13110, 'Vanity Fair (1998)', 'UK', now()), +(13111, 'Vanity Fair (1987)', 'UK', now()), +(13112, 'Vanity Fair (1967)', 'UK', now()), +(13113, 'The Grand', 'UK', now()), +(13114, 'The Barchester Chronicles', 'UK', now()), +(13115, 'The First Churchills', 'UK', now()), +(13116, 'Katy', 'UK', now()), +(13117, 'The Race', 'UK', now()), +(13118, 'Cirque de Celebrité', 'UK', now()), +(13119, 'Three Strikes', 'US', now()), +(13120, 'Academy Theatre', 'US', now()), +(13121, 'Action Autographs', 'US', now()), +(13122, 'Actuality Specials', 'US', now()), +(13123, 'The Admiral Broadway Revue', 'US', now()), +(13124, 'Welcome Aboard', 'US', now()), +(13125, 'Adorn Playhouse', 'US', now()), +(13126, 'Adventure', 'US', now()), +(13127, 'Kitchen', 'UK', now()), +(13128, 'The Rat Catchers', 'UK', now()), +(13129, 'The Shadow of the Tower', 'UK', now()), +(13130, 'The Word (UK)', 'UK', now()), +(13131, 'A Family Of My Own', 'UK', now()), +(13132, 'Bird Bath', 'UK', now()), +(13133, 'Design Star', 'US', now()), +(13134, 'Bognor', 'UK', now()), +(13135, 'Oppenheimer', 'UK', now()), +(13136, 'Frontier (UK)', 'UK', now()), +(13137, 'The Visitors', 'UK', now()), +(13138, 'Man at the Top', 'UK', now()), +(13139, 'The Hanged Man', 'UK', now()), +(13140, 'The Dick Francis Thriller: The Racing Game', 'UK', now()), +(13141, 'Blackmail', 'UK', now()), +(13142, 'The Mask of Janus', 'UK', now()), +(13143, 'The Hidden Truth', 'UK', now()), +(13144, 'An Enemy of the State', 'UK', now()), +(13145, 'The Liars', 'UK', now()), +(13146, 'Everglades', 'US', now()), +(13147, 'Panic!', 'US', now()), +(13148, 'Web', 'UK', now()), +(13149, 'The Grand Jury', 'US', now()), +(13150, 'The Moonstone (1959)', 'UK', now()), +(13151, 'Cameo Theatre', 'US', now()), +(13152, 'Martin Chuzzlewit (1964)', 'UK', now()), +(13153, 'The Big Spender', 'UK', now()), +(13154, 'The Paradise Makers', 'UK', now()), +(13155, 'Brett', 'UK', now()), +(13156, 'Kraft Mystery Theatre', 'US', now()), +(13157, 'Little Women (UK)', 'UK', now()), +(13158, 'Mr. Rose', 'UK', now()), +(13159, 'The Mind of the Enemy', 'UK', now()), +(13160, 'Stryker of the Yard', 'UK', now()), +(13161, 'The Runaway Summer', 'UK', now()), +(13162, 'Ragnarok: The Animation', 'JP', now()), +(13163, 'Country Matters', 'UK', now()), +(13164, 'Wessex Tales', 'UK', now()), +(13165, 'Napoleon and Love', 'UK', now()), +(13166, 'The Moonstone (1972)', 'UK', now()), +(13167, 'Edward the Seventh', 'UK', now()), +(13168, 'The Xtra Factor: Battle of the Stars', 'UK', now()), +(13169, 'Murder of a Moderate Man', 'UK', now()), +(13170, 'The Citadel (1983)', 'UK', now()), +(13171, 'Husbands, Wives & Lovers', 'US', now()), +(13172, 'Kizzy', 'UK', now()), +(13173, 'The Sharon Osbourne Show (UK)', 'UK', now()), +(13174, 'Working Lunch', 'UK', now()), +(13175, 'Hollywood Women', 'UK', now()), +(13176, 'Reverse Anthropology', 'UK', now()), +(14664, 'Barley Charlie', 'AU', now()), +(13178, 'Ace of Cakes', 'US', now()), +(13179, 'The Viaduct', 'UK', now()), +(13180, 'The Phoenix and the Carpet (1976)', 'UK', now()), +(13181, 'Paul Temple', 'UK', now()), +(13182, 'The Man in Room 17', 'UK', now()), +(13183, 'The Emmy Awards', 'US', now()), +(13184, 'The Informer', 'UK', now()), +(13185, 'Shadows of Fear', 'UK', now()), +(13186, 'Andy Robson', 'UK', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(13187, 'The Baskervilles', 'CA', now()), +(13188, 'Noah''s Island', 'UK', now()), +(13189, 'The View from Daniel Pike', 'UK', now()), +(13190, 'Champion House', 'UK', now()), +(13191, 'Moonstrike', 'UK', now()), +(13192, 'Studio 4', 'UK', now()), +(13193, 'A Family Affair', 'UK', now()), +(13194, 'Crying Down the Lane', 'UK', now()), +(13195, 'Bleak House (1985)', 'UK', now()), +(13196, 'Star Maidens', 'UK', now()), +(13197, 'Sherlock Holmes (1965)', 'UK', now()), +(13198, 'The Secret Kingdom', 'UK', now()), +(13199, 'The Long Chase', 'UK', now()), +(13200, 'Late Call', 'UK', now()), +(13201, 'Escape (UK)', 'UK', now()), +(13202, 'Scorpion Tales', 'UK', now()), +(13203, 'The Phoenix and the Carpet (1997)', 'UK', now()), +(13204, 'Radio Phoenix', 'UK', now()), +(13205, 'Animal Ark', 'UK', now()), +(13206, 'Cloud Burst', 'UK', now()), +(13208, 'Charlie', 'UK', now()), +(13209, 'The Citadel (1960)', 'UK', now()), +(13210, 'Curtain of Fear', 'UK', now()), +(13211, 'Somerset Maugham Hour', 'UK', now()), +(13212, 'Starr and Company', 'UK', now()), +(13213, 'The Cazalets', 'UK', now()), +(13214, 'Noah''s Ark', 'US', now()), +(13215, 'Under the Hammer', 'UK', now()), +(13216, 'Lipstick on Your Collar', 'UK', now()), +(13217, 'Summer''s Lease', 'UK', now()), +(13218, 'After the War', 'UK', now()), +(13219, 'Gentlemen and Players', 'UK', now()), +(13220, 'Mr. Palfrey of Westminster', 'UK', now()), +(13221, 'Strangers (UK)', 'UK', now()), +(13222, 'The Devil''s Crown', 'UK', now()), +(13223, 'Follyfoot', 'UK', now()), +(13224, 'No Exit', 'UK', now()), +(13225, 'Tightrope (UK)', 'UK', now()), +(13226, 'The Regiment', 'UK', now()), +(13227, 'Garry Halliday', 'UK', now()), +(13228, 'Virgin of the Secret Service', 'UK', now()), +(13229, 'The Big Pull', 'UK', now()), +(13230, 'It''s Dark Outside', 'UK', now()), +(13231, 'United!', 'UK', now()), +(13232, 'Murder Most English: A Flaxborough Chronicle', 'UK', now()), +(13233, 'Parnell & the Englishwoman', 'UK', now()), +(13234, 'The New Adventures of Charlie Chan', 'UK', now()), +(13235, 'The Magnificent Six and ½', 'UK', now()), +(13236, 'The Word (US)', 'US', now()), +(13237, 'The Manions of America', 'US', now()), +(13238, 'Full Stretch', 'UK', now()), +(13239, 'Martin Chuzzlewit (1994)', 'UK', now()), +(13240, 'TMi', 'UK', now()), +(13241, 'The Old Devils', 'UK', now()), +(13242, 'Maybury', 'UK', now()), +(13243, 'The Mill on the Floss', 'UK', now()), +(13244, 'The Hills of Heaven', 'UK', now()), +(13245, 'Madame Bovary', 'UK', now()), +(13246, 'Sam (UK)', 'UK', now()), +(13247, 'Emma (1972)', 'UK', now()), +(13248, 'Emma (1999)', 'UK', now()), +(13249, 'Emma (2001)', 'CA', now()), +(13250, 'Close Relations', 'UK', now()), +(13251, 'We, the Accused', 'UK', now()), +(13252, 'The Spread of the Eagle', 'UK', now()), +(13253, 'An Age of Kings', 'UK', now()), +(13254, 'O.S.S.', 'UK', now()), +(13255, 'Man from Interpol', 'UK', now()), +(13256, 'Street Gear', 'US', now()), +(13258, 'Weavers Green', 'UK', now()), +(13259, 'African Patrol', 'UK', now()), +(13260, 'Gideon''s Way', 'UK', now()), +(13261, 'Castles', 'UK', now()), +(13262, 'Biker Mice From Mars (2006)', 'US', now()), +(13263, 'Little Grey Rabbit', 'UK', now()), +(13264, 'The Return of the Psammead', 'UK', now()), +(13265, 'The Strange Affair of Adelaide Harris', 'UK', now()), +(13266, 'Jumbo Spencer', 'UK', now()), +(13267, 'Aliens in the Family (UK)', 'UK', now()), +(13268, 'Mahou Sentai Magiranger', 'JP', now()), +(13269, 'Five Children and It', 'UK', now()), +(13270, 'Lizzie Dripping', 'UK', now()), +(13271, 'Carrie''s War', 'UK', now()), +(13272, 'The Country Boy', 'UK', now()), +(13273, 'Tom''s Midnight Garden', 'UK', now()), +(13274, 'The Watch House', 'UK', now()), +(13275, 'White Peak Farm', 'UK', now()), +(13276, 'Dead Entry', 'UK', now()), +(13277, 'All About George', 'UK', now()), +(13278, 'Trinity Tales', 'UK', now()), +(13279, 'Ike', 'US', now()), +(13280, 'Rogues'' Gallery', 'UK', now()), +(13281, 'The Last Man Out', 'UK', now()), +(13282, 'The Children of Green Knowe', 'UK', now()), +(13283, 'The House Under the Water', 'UK', now()), +(13284, 'The Spoils of Poynton', 'UK', now()), +(13285, 'International Detective', 'UK', now()), +(13286, 'The World of Tim Frazer', 'UK', now()), +(13287, 'The Cheaters', 'UK', now()), +(13288, 'The Wilde Alliance', 'UK', now()), +(13289, 'Bat Out of Hell', 'UK', now()), +(13290, 'The Wednesday Thriller', 'UK', now()), +(13291, 'The Scarf', 'UK', now()), +(13292, 'The Company of Five', 'UK', now()), +(13293, 'Moulded in Earth', 'UK', now()), +(13294, 'Ring Out an Alibi', 'UK', now()), +(13295, 'The December Rose', 'UK', now()), +(13296, 'Running Scared', 'UK', now()), +(13297, 'The Cuckoo Sister', 'UK', now()), +(13298, 'Who, Sir? Me, Sir?', 'UK', now()), +(13299, 'Moonfleet', 'UK', now()), +(13300, 'The Box of Delights', 'UK', now()), +(13301, 'The New Adventures of Martin Kane', 'UK', now()), +(13302, 'The Machine Gunners', 'UK', now()), +(13303, 'Jonny Briggs', 'UK', now()), +(13304, 'Schoolgirl Chums', 'UK', now()), +(13305, 'Who Pays the Ferryman?', 'UK', now()), +(13306, 'Leap in the Dark', 'UK', now()), +(13307, 'Multi-Coloured Swap Shop', 'UK', now()), +(13308, 'Telford''s Change', 'UK', now()), +(13309, 'Silent Evidence', 'UK', now()), +(13310, 'Interpol Calling', 'UK', now()), +(13311, 'Jump Start', 'US', now()), +(13312, 'Star Stories', 'UK', now()), +(13313, 'There''s A Viking In My Bed', 'UK', now()), +(13314, '20 To 01', 'AU', now()), +(13315, 'Genie In The House', 'UK', now()), +(13316, 'Swinging', 'UK', now()), +(22176, 'Red Bull X-Fighters', 'US', now()), +(13318, 'The Path to 9/11', 'US', now()), +(13319, 'A Haunting', 'US', now()), +(13320, 'I Know What You Ate Last Summer', 'UK', now()), +(13321, 'Martin Kane, Private Eye', 'US', now()), +(13326, 'The White Rabbit', 'UK', now()), +(13327, 'Blackpool Night Out', 'UK', now()), +(13328, 'The Jo Stafford Show', 'US', now()), +(13329, 'Six Faces', 'UK', now()), +(13330, 'The Further Adventures of the Three Musketeers', 'UK', now()), +(13331, 'The Gold Robbers', 'UK', now()), +(13332, 'Shirley''s World', 'UK', now()), +(13333, 'A Question of Guilt', 'UK', now()), +(13334, 'David Copperfield (1986)', 'UK', now()), +(13335, 'Il Figlio di Sandokan', 'IT', now()), +(13336, 'Quatermass and the Pit', 'UK', now()), +(13337, 'The Quatermass Experiment', 'UK', now()), +(13338, 'Quatermass II', 'UK', now()), +(13339, 'The Motorola Television Hour', 'US', now()), +(13340, 'Late Night Horror', 'UK', now()), +(13341, 'Dinah!', 'US', now()), +(13342, 'The Jackie Mason Show', 'US', now()), +(13343, 'The Adventure of English', 'UK', now()), +(13344, 'Canterbury Tales (1969)', 'UK', now()), +(13345, 'The Crezz', 'UK', now()), +(13346, 'Bekenntnisse des Hochstaplers Felix Krull', 'AT', now()), +(13347, 'A Killing on the Exchange', 'UK', now()), +(13348, 'A Quiet Conspiracy', 'UK', now()), +(13349, 'A Woman Named Jackie', 'US', now()), +(13350, 'Ashenden', 'UK', now()), +(13351, 'Shakespeare: The Animated Tales', 'UK', now()), +(13352, 'Ancient Evidence', 'US', now()), +(13353, 'The Man from Haven', 'UK', now()), +(13354, 'Dial M for Murder', 'UK', now()), +(13355, 'Bedtime Stories (UK)', 'UK', now()), +(13356, 'Connie', 'UK', now()), +(13357, 'London Embassy', 'UK', now()), +(13358, 'Worlds Beyond', 'UK', now()), +(13359, 'Goodbye Cruel World', 'UK', now()), +(13360, 'Growing Rich', 'UK', now()), +(13361, 'The Riff Raff Element', 'UK', now()), +(13362, 'Around the World in 80 Days (1989)', 'US', now()), +(13363, 'A Woman of Substance', 'US', now()), +(13364, 'A Tale of Two Cities (1989)', 'UK', now()), +(13365, 'The Sarah Jane Adventures', 'UK', now()), +(13366, 'The Northern Rock All*Star Cup', 'UK', now()), +(13367, 'The Grove Family', 'UK', now()), +(13368, 'Foxworthy''s Big Night Out', 'US', now()), +(13369, 'Clive Anderson All Talk', 'UK', now()), +(13370, 'Heroes of Comedy', 'UK', now()), +(13371, 'Perfect Scoundrels', 'UK', now()), +(13372, 'FETCH! With Ruff Ruffman', 'US', now()), +(13373, 'Lost Worlds', 'US', now()), +(13374, 'WingNuts', 'US', now()), +(13375, 'Dawn French''s Girls Who Do: Comedy', 'UK', now()), +(13376, 'ALF''s Hit Talk Show', 'US', now()), +(13377, 'The Old Curiosity Shop (UK)', 'UK', now()), +(13378, 'Crime and Punishment (UK)', 'UK', now()), +(13379, 'Tottie: The Story of a Dolls'' House', 'UK', now()), +(13380, 'Shadows', 'UK', now()), +(13381, 'Unnatural Causes', 'UK', now()), +(13382, 'My Kingdom for a Horse', 'UK', now()), +(13383, 'Wokenwell', 'UK', now()), +(13384, 'The Pingwings', 'UK', now()), +(13385, 'Pogles'' Wood', 'UK', now()), +(13386, 'Sailor of Fortune', 'UK', now()), +(13387, 'Dial 999', 'UK', now()), +(13388, 'Betjeman and Me', 'UK', now()), +(13389, 'Return to the Lost Planet', 'UK', now()), +(13390, 'Love for Lydia', 'UK', now()), +(13391, 'The Owl Service', 'UK', now()), +(13392, 'The Midnight Men', 'UK', now()), +(13393, 'Thorndyke', 'UK', now()), +(13394, 'Hit and Run', 'UK', now()), +(13395, 'Riviera Police', 'UK', now()), +(13396, 'The Queen Street Gang', 'UK', now()), +(13397, 'Judge Dee', 'UK', now()), +(13398, 'The Corridor People', 'UK', now()), +(13399, 'Squadron', 'UK', now()), +(13400, 'Night Head Genesis', 'JP', now()), +(13401, 'Persuasion (1971)', 'UK', now()), +(13402, 'Persuasion (1960)', 'UK', now()), +(13403, 'Love Among the Artists', 'UK', now()), +(13404, 'The Villains', 'UK', now()), +(13405, 'This Year Next Year', 'UK', now()), +(13406, 'The Stars Look Down', 'UK', now()), +(32173, 'The Farm Fixer', 'UK', now()), +(13408, 'Kidnapped (1978)', 'FR', now()), +(13409, 'Zastrozzi: A Romance', 'UK', now()), +(13410, 'Time Is the Enemy', 'UK', now()), +(13411, 'King of the River', 'UK', now()), +(13412, 'The Flaxton Boys', 'UK', now()), +(13413, 'Juvies', 'US', now()), +(13414, 'Jennie: Lady Randolph Churchill', 'UK', now()), +(13415, 'The Venturers', 'UK', now()), +(13416, 'Mitch', 'UK', now()), +(13417, 'Smuggler', 'UK', now()), +(13418, 'Mrs Thursday', 'UK', now()), +(13419, 'Rogue Traders', 'UK', now()), +(13473, 'Patent Bending', 'US', now()), +(13422, 'Prairie Giant: The Tommy Douglas Story', 'CA', now()), +(13423, 'The Old Men at the Zoo', 'UK', now()), +(13424, 'Painted Lady', 'UK', now()), +(13425, 'On Home Ground', 'IE', now()), +(13426, 'In a Land of Plenty', 'UK', now()), +(13427, 'A Mug''s Game', 'UK', now()), +(13428, 'Ivor the Engine (1975)', 'UK', now()), +(13429, 'The Befrienders', 'UK', now()), +(13430, 'The Days of Vengeance', 'UK', now()), +(13431, 'Flower of Evil', 'UK', now()), +(13432, 'Sergeant Cork', 'UK', now()), +(13433, 'Crime of Passion', 'UK', now()), +(13434, 'Ein Heim für Tiere', 'DE', now()), +(13435, 'The Sullavan Brothers', 'UK', now()), +(13436, 'Kipps', 'UK', now()), +(13437, 'Haunting Evidence', 'US', now()), +(13438, 'Qpids', 'PH', now()), +(13439, 'Smith (UK)', 'UK', now()), +(13440, 'The Hound of the Baskervilles', 'UK', now()), +(13441, 'Ways with Words', 'UK', now()), +(13442, 'Get Lost!', 'UK', now()), +(13443, 'Mamotte! Lollipop', 'JP', now()), +(13444, 'The Lion, the Witch and the Wardrobe', 'UK', now()), +(13445, 'Terminator: The Sarah Connor Chronicles', 'US', now()), +(13446, 'Adventure Weekly', 'UK', now()), +(13447, 'Flambards', 'UK', now()), +(13448, 'Hideaway', 'UK', now()), +(13449, 'Oliver Twist (1985)', 'UK', now()), +(13450, 'Oliver Twist (1955)', 'BR', now()), +(13451, 'Oliver Twist (1962)', 'UK', now()), +(13452, 'A Year in Provence', 'UK', now()), +(13453, 'The Starter Wife', 'US', now()), +(21055, 'Intensive Care', 'NL', now()), +(13456, 'Let Me Entertain You', 'UK', now()), +(13457, 'By Way of the Stars', 'CA', now()), +(13458, 'A Taste of Shakespeare', 'CA', now()), +(13459, 'Les Amants de rivière rouge', 'FR', now()), +(13460, 'Romance (UK)', 'UK', now()), +(13461, 'Between the Wars', 'US', now()), +(13462, 'Nonni og Manni', 'IS', now()), +(13463, 'The Strauss Family', 'UK', now()), +(13464, 'Bleach (US)', 'AJ', now()), +(13465, 'The Law and Mr. Jones', 'US', now()), +(13466, 'Ivanhoe (1997)', 'UK', now()), +(13467, 'High Chaparall', 'SE', now()), +(13468, 'Grattis Världen', 'SE', now()), +(13469, 'New York', 'US', now()), +(13470, 'Wit And Wisdom', 'UK', now()), +(13471, 'Worzel Gummidge Down Under', 'NZ', now()), +(13472, 'Top Models', 'MX', now()), +(13474, 'Intelligence', 'CA', now()), +(13476, 'Max Magic', 'UK', now()), +(13478, 'Gamezville', 'UK', now()), +(13479, 'Taste', 'UK', now()), +(13480, 'Undercover Magic', 'UK', now()), +(13481, 'Curious George (US)', 'US', now()), +(13482, 'Anna Karenina (1977)', 'UK', now()), +(13483, 'Anna Karenina (2000)', 'UK', now()), +(13484, 'Anna Karenina (1996)', 'PH', now()), +(13485, 'Анна Каренина (2005)', 'RU', now()), +(13486, 'L'' Instit', 'FR', now()), +(13487, 'Frères et flics', 'FR', now()), +(13488, 'Mon meilleur Noël', 'FR', now()), +(13489, 'Orlando', 'UK', now()), +(13490, 'How It''s Made', 'CA', now()), +(13491, 'Big Brother Brasil', 'BR', now()), +(13492, 'Bang Bang', 'BR', now()), +(13493, 'Mundo VIP', 'PT', now()), +(13494, 'The Force: Behind the Line', 'AU', now()), +(13495, 'Pinoy Big Brother: Si kuya, kabarkada mo', 'PH', now()), +(13496, 'Muteki Kanban Musume', 'JP', now()), +(13497, 'D.Gray-Man', 'JP', now()), +(13498, '500 Nations', 'US', now()), +(13499, 'Val Parnell''s Sunday Night at the London Palladium', 'UK', now()), +(13500, 'The Prime of Miss Jean Brodie', 'UK', now()), +(13501, 'Helen: A Woman of Today', 'UK', now()), +(13502, 'Who Dares Wins', 'UK', now()), +(13503, 'The Rich List (US)', 'US', now()), +(13504, 'Talking to a Stranger (UK)', 'UK', now()), +(13505, 'The Lotus Eaters', 'UK', now()), +(13506, 'Au théâtre ce soir', 'FR', now()), +(13507, 'The Carnforth Practice', 'UK', now()), +(13508, 'Jango', 'UK', now()), +(13509, 'An Unofficial Rose', 'UK', now()), +(13510, 'The Gate of Eden', 'UK', now()), +(13511, 'Behaving Badly', 'UK', now()), +(13512, 'My Son, My Son', 'UK', now()), +(13513, 'The Plane Makers', 'UK', now()), +(13514, 'The Aweful Mr. Goodall', 'UK', now()), +(13515, 'The Inheritors', 'UK', now()), +(13516, 'Tipi Tales', 'CA', now()), +(13517, 'Yin Yang Yo!', 'US', now()), +(13518, 'The Complete Guide to Parenting', 'UK', now()), +(13519, 'Rent-a-Goalie', 'CA', now()), +(13520, 'Capitol Cloak Room', 'US', now()), +(13521, 'The Facts We Face', 'US', now()), +(13522, 'Man of the Week', 'US', now()), +(13523, 'The American Week', 'US', now()), +(13524, 'The March of Medicine', 'US', now()), +(13525, 'Conversations with Eric Sevareid', 'US', now()), +(13526, 'Sky Cops', 'UK', now()), +(13634, 'Eye On Research', 'UK', now()), +(13528, 'ATASHIn''CHI', 'JP', now()), +(13529, 'Quest of Eagles', 'UK', now()), +(13530, 'Barriers', 'UK', now()), +(13531, 'Fox', 'UK', now()), +(13532, 'Pinny''s House', 'UK', now()), +(13533, 'Ivanhoe (1970)', 'UK', now()), +(13534, 'My Uncle Silas', 'UK', now()), +(13535, 'The Clangers', 'UK', now()), +(13536, 'The Seal of Neptune', 'UK', now()), +(13537, 'Musical Box', 'UK', now()), +(13538, 'Little Laura', 'UK', now()), +(13539, 'Square Mile of Murder', 'UK', now()), +(13540, 'Intimate Strangers', 'UK', now()), +(13541, 'Spindoe', 'UK', now()), +(13542, 'The Loner (UK)', 'UK', now()), +(13543, 'Trial', 'UK', now()), +(13544, 'Half Hour Story', 'UK', now()), +(13545, 'The Chief', 'UK', now()), +(13546, 'Top Model', 'BR', now()), +(13547, 'The Verdict', 'UK', now()), +(13548, 'Nigella''s Christmas Kitchen', 'UK', now()), +(13549, 'Grass Roots: Young Farmers', 'UK', now()), +(13550, 'Lost Cities of the Ancients', 'UK', now()), +(13551, 'Big Bumper Science Quiz', 'UK', now()), +(13552, 'Officer and Commander', 'UK', now()), +(13553, 'América', 'BR', now()), +(13554, 'Busou Renkin', 'JP', now()), +(13555, 'Death Note', 'JP', now()), +(13556, 'A Tale of Two Cities (2006)', 'UK', now()), +(13557, 'A Tale of Two Pantos', 'UK', now()), +(13558, 'Class Distinction', 'UK', now()), +(13559, 'Craft Traditions', 'UK', now()), +(13560, 'Derek''s Dreams', 'UK', now()), +(13561, 'The Flight of the Earls', 'UK', now()), +(13562, 'On The Air (UK)', 'UK', now()), +(13563, 'Seanchai', 'UK', now()), +(13564, 'Sons of Ulster', 'UK', now()), +(13565, 'Detective Vijay', 'IN', now()), +(13566, 'Waterworld', 'UK', now()), +(13567, 'A Pilgrim''s Progress', 'UK', now()), +(13568, 'Ulster Generals', 'UK', now()), +(13569, 'Wanted: Farmers', 'UK', now()), +(13570, 'Food Jammers', 'CA', now()), +(15034, 'Really Short Report', 'US', now()), +(13572, 'Breaking Point (UK)', 'UK', now()), +(13573, 'Noggin the Nog (1979)', 'UK', now()), +(13632, 'A Wedding', 'UK', now()), +(13575, 'Cram', 'US', now()), +(13576, 'Playmania', 'US', now()), +(13577, 'Rumours', 'CA', now()), +(13578, 'The Joy of Painting', 'US', now()), +(13579, 'Six', 'UK', now()), +(13580, 'Fanny by Gaslight', 'UK', now()), +(13581, 'Treasure Island (1977)', 'UK', now()), +(13582, 'BBC2 Playhouse', 'UK', now()), +(13583, 'Fathers and Sons', 'UK', now()), +(13584, 'Heart of a Poet', 'CA', now()), +(13585, 'Tales of Sherwood Forest', 'UK', now()), +(13586, 'Plotlands', 'UK', now()), +(13587, 'Seaforth', 'UK', now()), +(13588, 'Storyboard', 'UK', now()), +(13589, 'The Fourth Arm', 'UK', now()), +(13590, 'Killers', 'UK', now()), +(13591, 'Life and Death of Penelope', 'UK', now()), +(13592, 'The Mind of Mr. J.G. Reeder', 'UK', now()), +(13593, 'The Beiderbecke Affair', 'UK', now()), +(13594, 'Witch Hunt', 'UK', now()), +(13595, 'Ryan International', 'UK', now()), +(13596, 'Prometheus: The Life of Balzac', 'UK', now()), +(13597, 'Melissa (1964)', 'UK', now()), +(13598, 'Melissa (DE)', 'DE', now()), +(13599, 'Melissa (IT)', 'IT', now()), +(13600, 'Summerton Mill', 'UK', now()), +(13601, 'Fox News Sunday', 'US', now()), +(13602, 'Desert Punk', 'AJ', now()), +(13603, 'Flying Lady', 'UK', now()), +(13604, 'Till We Meet Again', 'US', now()), +(13605, 'Dandelion Dead', 'UK', now()), +(13606, 'Extreme Dreams', 'UK', now()), +(13607, 'Treasure Island (1951)', 'UK', now()), +(13608, 'Gullage''s', 'CA', now()), +(13609, 'Reader, I Married Him', 'UK', now()), +(13610, 'Voyages Of Discovery', 'UK', now()), +(13611, 'Anthropology Season', 'UK', now()), +(13613, 'Tight Spot Season', 'UK', now()), +(13614, 'Love Spell', 'PH', now()), +(13615, 'Super Inggo', 'PH', now()), +(13616, 'Bituing Walang Ningning', 'PH', now()), +(13617, 'Skint', 'UK', now()), +(13618, 'Archer''s Goon', 'UK', now()), +(13619, 'Fair Ground!', 'UK', now()), +(13620, 'Look and Read', 'UK', now()), +(13621, 'Adventure to Order', 'UK', now()), +(13622, 'Neighbours Revealed', 'AU', now()), +(13633, 'T-Bag', 'UK', now()), +(13637, 'Eureka Street', 'UK', now()), +(13638, 'Street Doctor', 'UK', now()), +(13639, 'Nigel’s Vineyard Nightmares', 'UK', now()), +(13640, 'One Summer', 'UK', now()), +(13641, 'Amelia', 'UK', now()), +(13642, 'Crime Sheet', 'UK', now()), +(13643, 'Rachael Ray', 'US', now()), +(13644, 'Hot Property (US)', 'US', now()), +(13645, 'Big Playstation Saturday', 'US', now()), +(13646, 'The Trees That Made Britain', 'UK', now()), +(13647, 'Time Of Your Life (UK)', 'UK', now()), +(13648, 'The Silver Sword', 'UK', now()), +(13649, 'Toy Mountain Christmas Special', 'CA', now()), +(13650, 'Skyport', 'UK', now()), +(13651, 'Murder Bag', 'UK', now()), +(13652, 'Rhodes', 'UK', now()), +(13653, 'The Carruthers Brothers', 'ZA', now()), +(13654, 'The Flying Swan', 'UK', now()), +(13655, 'The Six Proud Walkers', 'UK', now()), +(13656, 'The Royalty', 'UK', now()), +(13657, 'Earthfasts', 'UK', now()), +(13658, 'Century Falls', 'UK', now()), +(13659, 'Pathfinders to Mars', 'UK', now()), +(13660, 'Secret Beneath the Sea', 'UK', now()), +(13661, 'City Beneath the Sea', 'UK', now()), +(13662, 'Barnaby Rudge', 'UK', now()), +(13663, 'Adventures of the Seaspray', 'AU', now()), +(13664, 'Beetle Bailey', 'US', now()), +(13665, 'Abbott & Costello', 'US', now()), +(13666, 'Folktoppen', 'SE', now()), +(13667, 'Kvarteret Skatan', 'SE', now()), +(13668, 'He''s the Mayor', 'US', now()), +(13669, 'Whose Wedding Is It Anyway? (US)', 'US', now()), +(13670, 'Trinity Blood (US)', 'AJ', now()), +(13671, 'A Sort of Innocence', 'UK', now()), +(13672, 'Our John Willie', 'UK', now()), +(13673, 'Spyship', 'UK', now()), +(13674, 'Travis Pastrana''s Baja Diaries', 'US', now()), +(13675, '2006 Enduro at Erzberg', 'US', now()), +(13676, 'Beach Boys', 'JP', now()), +(13677, 'Jewel In The Palace', 'KR', now()), +(13678, 'All In', 'KR', now()), +(13679, 'Ai To Iu Nano Moto Ni', 'JP', now()), +(13680, 'Ace Wo Nerae!', 'JP', now()), +(13681, 'Ai Nante Irane Yo, Natsu', 'JP', now()), +(13682, 'Ai wo Kudasai', 'JP', now()), +(13683, 'Aatantei Jimusho', 'JP', now()), +(13684, 'Aijou Ippon!', 'JP', now()), +(13685, 'Beautiful Days', 'KR', now()), +(13686, 'Liberty!: The American Revolution', 'US', now()), +(13687, 'Instant Beauty Pageant', 'US', now()), +(13688, 'Fugitive Strike Force', 'US', now()), +(13689, 'Advocate', 'KR', now()), +(13690, 'Affection', 'KR', now()), +(13691, 'Age of Heroes', 'KR', now()), +(13692, 'The Age of Warriors', 'KR', now()), +(13693, 'Bodyguard', 'KR', now()), +(13694, 'Antique', 'JP', now()), +(13695, 'Ao no Jidai', 'JP', now()), +(13696, 'Beginner', 'JP', now()), +(13697, 'Spaceballs: The Animated Series', 'US', now()), +(13698, 'Aishiteiru To Itte Kure', 'JP', now()), +(13699, 'Akimahende!', 'JP', now()), +(13700, 'Asunaro Hakusho', 'JP', now()), +(13701, 'At Home Dad', 'JP', now()), +(13702, 'Beautiful Life (JP)', 'JP', now()), +(13703, 'Big Wing', 'JP', now()), +(13704, 'Blackjack ni Yoroshiku', 'JP', now()), +(13705, 'Bijo ka Yajuu', 'JP', now()), +(13706, 'Boku dake no Madonna', 'JP', now()), +(13707, 'Boku no Ikiru Michi', 'JP', now()), +(13708, 'Boku no Mahou Tsukai', 'JP', now()), +(13710, 'Boku ga chikyuu o sukuu', 'JP', now()), +(13711, 'Boku to Kanojo to Kanojo no Ikiru Michi', 'JP', now()), +(13712, 'Bus Stop (JP)', 'JP', now()), +(13713, 'Byoki Wa Nemuranai', 'JP', now()), +(13714, 'Churasan', 'JP', now()), +(13715, 'Chef', 'JP', now()), +(13716, 'Chiipu Rabu', 'JP', now()), +(13717, 'Dekichatta Kekkon', 'JP', now()), +(13718, 'Densetsu no Kyoshi', 'JP', now()), +(13719, 'Dessin', 'JP', now()), +(13720, 'Densetsu no Madam', 'JP', now()), +(13721, 'Diamond Girl', 'JP', now()), +(13722, 'Days', 'JP', now()), +(13723, 'Daiyamondo no Koi', 'JP', now()), +(13724, 'Denchi ga Kireru Made', 'JP', now()), +(13725, 'Designer', 'JP', now()), +(13726, 'Dareka ga Kanojo o Aishiteiru', 'JP', now()), +(13727, 'Dear Woman', 'JP', now()), +(13728, 'Chonan no Yome 1 ~ The Daughter-In-Law', 'JP', now()), +(13729, 'Campus Note', 'JP', now()), +(13730, 'Chakushin Ari', 'JP', now()), +(13731, 'Besuto Patona', 'JP', now()), +(13732, 'Bangaku no Issho', 'JP', now()), +(13733, 'Big Money!', 'JP', now()), +(13735, 'Boy Hunt', 'JP', now()), +(13736, 'Ai wa Douda!', 'JP', now()), +(13737, 'A.D. Boogie', 'JP', now()), +(13738, 'Ai Tokidoki Uso', 'JP', now()), +(13739, 'Aibou', 'JP', now()), +(13740, 'Aji Ichimonme', 'JP', now()), +(13741, 'Akuma no Kiss', 'JP', now()), +(13742, 'Ame to Yume no atoni', 'JP', now()), +(13743, 'Aoi tori', 'JP', now()), +(13744, 'Another Heaven~Eclipse', 'JP', now()), +(13745, 'Ashita ga Arusa', 'JP', now()), +(13746, 'Anego', 'JP', now()), +(13747, 'Atarashii Kaze', 'JP', now()), +(13748, 'Dollhouse (JP)', 'JP', now()), +(13749, 'Hank (1965)', 'US', now()), +(13750, 'Dokushin 3', 'JP', now()), +(13751, 'Dr Koto - Shinryousho', 'JP', now()), +(13752, 'Doctor', 'JP', now()), +(13753, 'Dokushin Seikatsu', 'JP', now()), +(13754, 'Double Kitchen', 'JP', now()), +(13755, 'Dokyuusei', 'JP', now()), +(13756, 'Double Score', 'JP', now()), +(13757, 'The Vampira Show', 'US', now()), +(13758, 'Hombres', 'SE', now()), +(13759, 'Rallarsving', 'SE', now()), +(13760, 'The Brini Maxwell Show', 'US', now()), +(13761, 'Eve ~Santa Claus Dreaming~', 'JP', now()), +(13762, 'Engine', 'JP', now()), +(13763, 'Et Alors', 'JP', now()), +(13764, 'Face', 'JP', now()), +(13765, 'Five', 'JP', now()), +(13766, 'Face ~ Mishiranu Koibito', 'JP', now()), +(13767, 'Fighting Girl', 'JP', now()), +(13768, 'Food Fight (JP)', 'JP', now()), +(13769, 'Fukigen na Jiin', 'JP', now()), +(13770, 'Fire Boys', 'JP', now()), +(13771, 'First Love (JP)', 'JP', now()), +(13772, 'Fugoh Keiji', 'JP', now()), +(13773, 'Furikaereba Yatsu ga Iru', 'JP', now()), +(13774, 'Fuufu', 'JP', now()), +(13775, 'Furuhata Ninzaburo', 'JP', now()), +(13776, 'Futari', 'JP', now()), +(13777, 'Garasu no Kakeratachi', 'JP', now()), +(13778, 'Garasu no Kutsu', 'JP', now()), +(13779, 'Gift (JP)', 'JP', now()), +(13780, 'Gakkou no Sensei', 'JP', now()), +(13781, 'Ginza no Koi', 'JP', now()), +(13782, 'Dallas Cowboys Cheerleaders: Making the Team', 'US', now()), +(13783, 'Good Luck !!', 'JP', now()), +(13784, 'Golden Bowl', 'JP', now()), +(13785, 'Good News (JP)', 'JP', now()), +(13786, 'H2~Kimi to Itahibi', 'JP', now()), +(13787, 'Hachigatsu no Love Song', 'JP', now()), +(13788, 'Happy Mania', 'JP', now()), +(13789, 'Hachiro~Haha no Shi, Chichi no Shi~', 'JP', now()), +(13790, 'Handoku', 'JP', now()), +(13791, 'Harmonia', 'JP', now()), +(13792, 'Hakusen Nagashi', 'JP', now()), +(13793, 'Haru Ranman', 'JP', now()), +(13794, 'Hikeshiya Komachi', 'JP', now()), +(13795, 'Hatachi no Yakusoku', 'JP', now()), +(13796, 'Hero', 'JP', now()), +(13797, 'Haruka 17', 'JP', now()), +(13798, 'Hinata Bokko', 'JP', now()), +(13799, 'Hatsu Taiken', 'JP', now()), +(13800, 'Hikari to Tomo ni', 'JP', now()), +(13801, 'Hito ni Yasashiku', 'JP', now()), +(13802, 'Hitoribocchi no Kimi ni', 'JP', now()), +(13803, 'Home Drama', 'JP', now()), +(13804, 'Hitotsu Yane no Shita 1~2', 'JP', now()), +(13805, 'Homework', 'JP', now()), +(13806, 'Hoshi no Kinka', 'JP', now()), +(13807, 'Hitonatsu no Papa e', 'JP', now()), +(13808, 'Honke no Yome', 'JP', now()), +(13809, 'Home & Away (JP)', 'JP', now()), +(13810, 'Hitonatsu no Puropozu', 'JP', now()), +(13811, 'Hotman', 'JP', now()), +(13812, 'Hyoten 2001', 'JP', now()), +(13813, 'HR', 'JP', now()), +(13814, 'Igi Ari, Onna Bengoshi Oka Norie', 'JP', now()), +(13815, 'Imouto yo', 'JP', now()), +(13816, 'Iguana no Musume', 'JP', now()), +(13817, 'Ii hito', 'JP', now()), +(13818, 'Ichi Ritoru no Namida', 'JP', now()), +(13819, 'IWGP', 'JP', now()), +(13820, 'Imagine (JP)', 'JP', now()), +(13821, 'Itazura na Kiss (1996)', 'JP', now()), +(13822, 'Itsumo futari de', 'JP', now()), +(13823, 'Itoshi Kimie', 'JP', now()), +(13824, 'Celebrity Survivor', 'AU', now()), +(13826, 'Yoshitsune', 'JP', now()), +(13827, 'Toshiie to matsu: kaga hyakumangoku monogatari', 'JP', now()), +(13828, 'Hoteru', 'JP', now()), +(13829, 'Miyamoto Musashi', 'JP', now()), +(13830, 'June Bride', 'JP', now()), +(13831, 'Jinsei wa Joujoda', 'JP', now()), +(13832, 'Joshiana', 'JP', now()), +(13833, 'Juu Nana Sai', 'JP', now()), +(13834, 'Joi', 'JP', now()), +(13835, 'Jyoou no Kyoushitsu', 'JP', now()), +(13836, 'Kabachitare!', 'JP', now()), +(13837, 'Kami wa Saikoro o Furanai~Kimi o Wasurenai~', 'JP', now()), +(13838, 'Kamisama Mou Sukoshi Dake', 'JP', now()), +(13839, 'Kanojotachi no Jidai', 'JP', now()), +(13840, 'Kagayaku Toki no Naka de', 'JP', now()), +(13841, 'Kamen no Onna', 'JP', now()), +(13842, 'Kanojo ga Shinjyatta', 'JP', now()), +(13843, 'Kawaii Dake ja Dame Kashira?', 'JP', now()), +(13844, 'Kao', 'JP', now()), +(13845, 'Keishijyou Kanshiki Hon 2004', 'JP', now()), +(13846, 'Kekkon no Katachi', 'JP', now()), +(13847, 'Keiji Ichiro', 'JP', now()), +(13848, 'Keizoku', 'JP', now()), +(13849, 'Oblivious (US)', 'US', now()), +(13850, 'House of Carters', 'US', now()), +(13851, 'Kekkon Shiyouyo', 'JP', now()), +(13852, 'Kikutei Happyakuzen no Hitobito', 'JP', now()), +(13853, 'Kimi ga omoi de ni Naru Mae ni', 'JP', now()), +(13854, 'Kimi ga Boku wo Wasuretemo', 'JP', now()), +(13855, 'Kimi ga Oshietekureta Koto', 'JP', now()), +(13856, 'Kiken Na Tobira - Ai Wo Tejou De Tunagu Toki', 'JP', now()), +(13857, 'Kimi ga Jinsei no Toki', 'JP', now()), +(13858, 'Kikujiro to Saki', 'JP', now()), +(13859, 'Kimi to Deatte Kara', 'JP', now()), +(13860, 'Kimi to Ita Mirai no Tame ni ~ Airu bi Bakku', 'JP', now()), +(13861, 'Kinjirareta Asobi', 'JP', now()), +(13862, 'Kindaichi Shonen no Jikenbo', 'JP', now()), +(13863, 'Kimi wa Petto', 'JP', now()), +(13864, 'Kin no Tamago', 'JP', now()), +(13865, 'Kira Kira Hikaru', 'JP', now()), +(13866, 'Kisarazu Cat''s Eye', 'JP', now()), +(13867, 'Kochira Hon Ikegami Sho', 'JP', now()), +(13868, 'Koi no Paradise', 'JP', now()), +(13869, 'Koi ni Ochitara ~Boku no Seikou no Himitsu~', 'JP', now()), +(13870, 'Koi no Bakansu', 'JP', now()), +(13871, 'Koi Seyo Otome', 'JP', now()), +(13872, 'Koi suru Top Lady', 'JP', now()), +(13873, 'Koibito yo', 'JP', now()), +(13874, 'Koi wa Tatakai', 'JP', now()), +(13875, 'Koinu no Waltz', 'JP', now()), +(13876, 'Konna Koi no Hanashi', 'JP', now()), +(13877, 'Kono yo no Hate', 'JP', now()), +(13878, 'Koori no Sekai', 'JP', now()), +(13879, 'Koi wo Nan Nen Sundemasu ka?', 'JP', now()), +(13880, 'Kou Kou Kyoushi', 'JP', now()), +(13881, 'Kunimitsu no Matsuri', 'JP', now()), +(13882, 'Kou Kou Kyoushi 2003', 'JP', now()), +(13883, 'Kyohansha', 'JP', now()), +(13884, 'Koufuku no Ouji', 'JP', now()), +(13885, 'Kowloon de Aimashou', 'JP', now()), +(13886, 'Kyoto Chiken no Onna', 'JP', now()), +(13887, 'Kyousoukyoku', 'JP', now()), +(13888, 'Kougen e Irasshai', 'JP', now()), +(13889, 'Kuitan', 'JP', now()), +(13890, 'Kurokawa no Techou', 'JP', now()), +(13891, 'Kyumei Byoto 24 Ji', 'JP', now()), +(13892, 'Le Parfum De La Jaolusie', 'JP', now()), +(13893, 'Long Vacation', 'JP', now()), +(13894, 'Love and Peace', 'JP', now()), +(13895, 'Last Christmas', 'JP', now()), +(13896, 'Love Complex', 'JP', now()), +(13897, 'Let''s Go Nagata-cho', 'JP', now()), +(13898, 'Lipstick', 'JP', now()), +(13899, 'Long Love Letter', 'JP', now()), +(13900, 'Love and Eros', 'JP', now()), +(13901, 'Love Generation', 'JP', now()), +(13902, 'Love Revolution', 'JP', now()), +(13903, 'Love Story (JP)', 'JP', now()), +(13904, 'Lunch no Joou', 'JP', now()), +(13905, 'Live', 'JP', now()), +(13906, 'M no Higeki', 'JP', now()), +(13907, 'Mahiru no Tsuki', 'JP', now()), +(13908, 'Manatsu no Merry Christmas', 'JP', now()), +(13909, 'Manhattan Love Story', 'JP', now()), +(13910, 'Mama Chari Deka', 'JP', now()), +(13911, 'Magari Kado no Kanojyo', 'JP', now()), +(13912, 'Majo no Jouken', 'JP', now()), +(13913, 'Maria', 'JP', now()), +(13914, 'Mayonaka no Ame', 'JP', now()), +(13915, 'Meitantei Hokenshitsu no Obasan', 'JP', now()), +(13916, 'Minamikun no Koibito', 'JP', now()), +(13917, 'G-Men ''75', 'JP', now()), +(13918, 'The Greg Behrendt Show', 'US', now()), +(13919, 'Brainiac: History Abuse', 'UK', now()), +(13920, 'Safari School', 'UK', now()), +(13921, 'Live! Girls! Present Dogtown', 'UK', now()), +(13922, 'Lead Balloon', 'UK', now()), +(13923, 'Trinny and Susannah Undress…', 'UK', now()), +(13924, 'FBI: The Untold Stories', 'US', now()), +(13925, 'The Outsiders (UK)', 'UK', now()), +(13926, 'Medaka', 'JP', now()), +(13927, 'Minikui Ahiru no Ko', 'JP', now()), +(13928, 'Marusa!!', 'JP', now()), +(13929, 'Megami no Koi', 'JP', now()), +(13930, 'Meguri ai', 'JP', now()), +(13931, 'Miseinen', 'JP', now()), +(13932, 'Mother and Lover', 'JP', now()), +(13933, 'Mukodono 2003', 'JP', now()), +(13934, 'Mukodono!', 'JP', now()), +(13935, 'My Little Chef', 'JP', now()), +(13936, 'Narita Rikon', 'JP', now()), +(13937, 'Never Land', 'JP', now()), +(13938, 'Basilisk: The Kouga Ninja Scrolls', 'JP', now()), +(13939, 'Danny Baker''s Sitcom Showdown', 'UK', now()), +(13940, 'Shirts of ''66', 'UK', now()), +(13941, 'Zoe Lucker and Sarah Barrand''s Date with the Dalai', 'UK', now()), +(13942, 'OFI Sunday', 'UK', now()), +(13943, 'Johnny Vegas: 18 Stone of Idiot', 'UK', now()), +(13944, 'School of Hard Knocks', 'UK', now()), +(13945, 'Glory Ball Live', 'UK', now()), +(13947, 'Boys and Girls Friday', 'UK', now()), +(13948, 'Boys and Girls - Do it with Dougie', 'UK', now()), +(13949, 'Live with Chris Moyles', 'UK', now()), +(13950, 'The Genius of Photography', 'UK', now()), +(13951, 'Land Lords', 'UK', now()), +(13952, 'You Don''t Know You''re Born', 'UK', now()), +(13953, 'Surviving the Future', 'UK', now()), +(13954, 'Nemurenu Yoru Wo Daite', 'JP', now()), +(13955, 'Nemureru Mori', 'JP', now()), +(13956, 'News no Onna', 'JP', now()), +(13957, 'Netsuretsu Teki Chuuka Hanten', 'JP', now()), +(13958, 'Ningen Shikkaku', 'JP', now()), +(13959, 'Nurseman ga Yuku', 'JP', now()), +(13960, 'Nyokei Kazoku', 'JP', now()), +(13961, 'Ningen no Shoumei', 'JP', now()), +(13962, 'Nurse no Oshigoto', 'JP', now()), +(13963, 'Ninja Warrior', 'US', now()), +(13964, 'Oatsui no ga osuki?', 'JP', now()), +(13965, 'Odoru Daisousassen', 'JP', now()), +(13966, 'Ohsama no Resutoran', 'JP', now()), +(13967, 'Okaasan to Issho', 'JP', now()), +(13968, 'Okusama wa Majo', 'JP', now()), +(13969, 'Oishii Kankei', 'JP', now()), +(13970, 'Oishii Puropozu', 'JP', now()), +(13971, 'Omae no Yukichi ga Naiteiru', 'JP', now()), +(13972, 'Only You Aisarete', 'JP', now()), +(13973, 'Ooku', 'JP', now()), +(13974, 'Onmyoji Abe no Seimei', 'JP', now()), +(13975, 'Oni no Sumika', 'JP', now()), +(13976, 'Orange Days', 'JP', now()), +(13977, 'Osorubeshi! Otonashi Karensan', 'JP', now()), +(13978, 'Otousan', 'JP', now()), +(13979, 'Over Time', 'JP', now()), +(13980, 'Oyaji', 'JP', now()), +(13981, 'Otona no Otoko', 'JP', now()), +(13982, 'Onsen e Ikou', 'JP', now()), +(13983, 'Fireside Theatre', 'US', now()), +(13984, 'Your Show Time', 'US', now()), +(13985, 'The Woman in White', 'UK', now()), +(13986, 'MTV''s Little Talent Show', 'US', now()), +(13987, 'P.A. Private Actress', 'JP', now()), +(13988, 'Perfect Love', 'JP', now()), +(13989, 'P.S. Genki desu, Shunpei', 'JP', now()), +(13990, 'Pu-Pu-Pu Jump', 'JP', now()), +(13991, 'Papa wa Newscaster', 'JP', now()), +(13992, 'Pretty Girls', 'JP', now()), +(13993, 'Pride', 'JP', now()), +(13994, 'Psychometrer Eiji', 'JP', now()), +(13995, 'Pure', 'JP', now()), +(13996, 'R-17', 'JP', now()), +(13997, 'Rasuto Purezento', 'JP', now()), +(13998, 'Rikon Bengoshi', 'JP', now()), +(13999, 'Randebu', 'JP', now()), +(14000, 'Renai Hensachi', 'JP', now()), +(14001, 'Reikan Bus Guide Jikenbo', 'JP', now()), +(14002, 'Ringu Saishusho', 'JP', now()), +(14003, 'Rinjin wa Hisoki Warau', 'JP', now()), +(14004, 'Risky Game', 'JP', now()), +(14005, 'Risou no Joushi', 'JP', now()), +(14006, 'Ruri no Shima', 'JP', now()), +(14007, 'Risou no Kekkon', 'JP', now()), +(14008, 'Rookie!', 'JP', now()), +(14009, 'On the Record (UK)', 'UK', now()), +(14010, 'Saikou no Koibito', 'JP', now()), +(14011, 'Saabisu', 'JP', now()), +(14012, 'Saimin', 'JP', now()), +(14013, 'Saigo no Koi', 'JP', now()), +(14014, 'Saigo no Bengonin', 'JP', now()), +(14015, 'Saikou no Kataomoi', 'JP', now()), +(14016, 'Salaryman Kintaro', 'JP', now()), +(14017, 'Second Chance (JP)', 'JP', now()), +(14018, 'Sayonara, Ozu Sensei', 'JP', now()), +(14019, 'Seikimatsu no Uta', 'JP', now()), +(14020, 'Sekai de Ichiban Atsui Natsu', 'JP', now()), +(14021, 'Seija no Koushin', 'JP', now()), +(14022, 'Sekai no Chuushin de, Ai wo Sakebu', 'JP', now()), +(14023, 'Shiawase Saita', 'JP', now()), +(14024, 'Sensei Shiranaino?', 'JP', now()), +(14025, 'Shinjuku Boso Kyukyutai', 'JP', now()), +(14026, 'Shiritsu Tantei Hama Mike', 'JP', now()), +(14027, 'Shiroi Kage', 'JP', now()), +(14028, 'Shomuni', 'JP', now()), +(14029, 'Sky High', 'JP', now()), +(14030, 'Sora Kara Furu Ichioku no Hoshi', 'JP', now()), +(14031, 'Sono Ki ni Naru Made', 'JP', now()), +(14032, 'Sore wa, Totsuzen, Arashi no you ni...', 'JP', now()), +(14033, 'Shota no Sushi', 'JP', now()), +(14034, 'Shumatsukon', 'JP', now()), +(14035, 'The New Hollywood Squares', 'US', now()), +(14036, 'The Match Game/Hollywood Squares Hour', 'US', now()), +(14037, 'Stewardess no Koibito', 'JP', now()), +(14038, 'Subarashiki Kana Jinsei', 'JP', now()), +(14039, 'Suika', 'JP', now()), +(14040, 'Suna no Utsuwa (2004)', 'JP', now()), +(14041, 'Straight News', 'JP', now()), +(14042, 'Suiyoubi no Jouji', 'JP', now()), +(14043, 'Sutaa no Koi', 'JP', now()), +(14044, 'S.O.S.', 'JP', now()), +(14045, 'Summer Snow', 'JP', now()), +(14046, 'Sugao no Mama de', 'JP', now()), +(14047, 'Suwiito Debiru', 'JP', now()), +(14048, 'Sweet Home', 'JP', now()), +(14049, 'Sweet Season', 'JP', now()), +(14050, 'Taburoido', 'JP', now()), +(14051, 'Tainted Love Song', 'JP', now()), +(14052, 'Tantei Kazoku', 'JP', now()), +(14053, 'Tengoku e no Kaidan', 'JP', now()), +(14054, 'Tenka', 'JP', now()), +(14055, 'Tatakau Oyomesama', 'JP', now()), +(14056, 'Tengoku ni Ichiban Chikai Otoko', 'JP', now()), +(14057, 'Tenki-yoho no Koibito', 'JP', now()), +(14058, 'Tensai Yanagisawa Kyoju no Seikatsu', 'JP', now()), +(14059, 'Taiyou wa Shizumanai', 'JP', now()), +(14060, 'Tenshi ga Kieta Machi', 'JP', now()), +(14061, 'Tenshi no Oshigoto', 'JP', now()), +(14062, 'Tentai Kanzoku', 'JP', now()), +(14063, 'Tokio~Chichi e no Dengon~', 'JP', now()), +(14064, 'Tokumei Kakaricou Tadano Hitoshi', 'JP', now()), +(14065, 'Tokyo Love Cinema', 'JP', now()), +(14066, 'Tomoko to Tomoko', 'JP', now()), +(14067, 'Toubousha', 'JP', now()), +(14068, 'Tokyo Daigaku Monogatari', 'JP', now()), +(14069, 'Tokyo Love Story', 'JP', now()), +(14070, 'Toumei Ningen', 'JP', now()), +(14071, 'Tokyo Elevator Girl', 'JP', now()), +(14072, 'Tomodachi no Koibito', 'JP', now()), +(14073, 'Toshishita No Otoko', 'JP', now()), +(14074, 'Trick', 'JP', now()), +(14075, 'Tsuhan-Man', 'JP', now()), +(14076, 'Tsumetai Tsuki', 'JP', now()), +(14077, 'Umi Made go Fun', 'JP', now()), +(14078, 'Uso Koi', 'JP', now()), +(14079, 'Utsukushii Hito', 'JP', now()), +(14080, 'Virgin Road', 'JP', now()), +(14081, 'Visual Battle', 'JP', now()), +(14082, 'Zutto Anata ga Suki Datta', 'JP', now()), +(14083, 'Wataru Seiken wa Oni Bakari', 'JP', now()), +(14084, 'Watashi wo Ryokan ni Tsuretete', 'JP', now()), +(14085, 'Wakaba no Koro', 'JP', now()), +(14086, 'Watashi no Aozora 2002', 'JP', now()), +(14087, 'With Love', 'JP', now()), +(14088, 'Wakamono no Subete', 'JP', now()), +(14089, 'Wedding Planner', 'JP', now()), +(14090, 'Watashi no Unmei', 'JP', now()), +(14091, 'Water Boys', 'JP', now()), +(14092, 'Wonderful Life (JP)', 'JP', now()), +(14093, 'Yan Papa', 'JP', now()), +(14094, 'Yasha', 'JP', now()), +(14095, 'Yamada Ikka no Shinbou', 'JP', now()), +(14096, 'Yankee Bokou ni Kaeru', 'JP', now()), +(14097, 'Yellow Card', 'JP', now()), +(14098, 'Yome wa Mitsuboshi', 'JP', now()), +(14099, 'Yamato Nadeshiko', 'JP', now()), +(14100, 'Yoiko no Mikata', 'JP', now()), +(14101, 'Yomigaeru Kinro', 'JP', now()), +(14102, 'Yami no Purple Eye', 'JP', now()), +(14103, 'Yasashii Jikan', 'JP', now()), +(14104, 'Yoisho no Otoko', 'JP', now()), +(14105, 'Yume Mirukoro o Sugitemo', 'JP', now()), +(14106, 'The Mitchell & Webb Situation', 'UK', now()), +(14107, 'All About Eve', 'KR', now()), +(14108, 'Alone in Love', 'KR', now()), +(14109, 'Angel''s Kiss', 'KR', now()), +(14651, 'The Thanksgiving That Almost Wasn''t', 'US', now()), +(14111, 'Autumn Shower', 'KR', now()), +(14112, 'Bad Boys (KR)', 'KR', now()), +(14113, 'Bad Girls (KR)', 'KR', now()), +(14114, 'The Bad Housewife', 'KR', now()), +(14115, 'Be Strong, Geum-soon', 'KR', now()), +(14116, 'The Bean Chaff of My Life', 'KR', now()), +(14117, 'Six Love Stories', 'KR', now()), +(14118, 'Beautiful Life (KR)', 'KR', now()), +(14119, 'Beijing My Love', 'KR', now()), +(14120, 'A Class Apart', 'UK', now()), +(14121, 'Incredible Animal Journeys', 'UK', now()), +(14122, 'Decoding Da Vinci', 'UK', now()), +(14123, 'Beautiful Temptation', 'KR', now()), +(14124, 'Adventures Of Oky Doky', 'US', now()), +(14125, 'Play The Game', 'US', now()), +(14126, 'Small Fry Club', 'US', now()), +(14127, 'The Bizarre Bunch', 'KR', now()), +(14128, 'Cheers for the Women', 'KR', now()), +(14129, 'Cinderella', 'KR', now()), +(14655, 'Love Ride', 'US', now()), +(14131, 'Confession', 'KR', now()), +(14132, 'Country Princess', 'KR', now()), +(14133, 'Strike It Rich', 'US', now()), +(14134, 'Dangerous Love', 'KR', now()), +(14135, 'Doc Corkle', 'US', now()), +(14136, 'BBC News at Ten', 'UK', now()), +(14137, 'Off the Leash', 'US', now()), +(14634, 'Nestor, The Long-Eared Christmas Donkey', 'US', now()), +(14139, 'The Dawn of the Empire', 'KR', now()), +(14140, 'Days in the Sun', 'KR', now()), +(14141, 'Days of Delight', 'KR', now()), +(14572, 'Taming Of The Princess', 'HK', now()), +(14143, '7 Vidas', 'ES', now()), +(14144, 'ProStars', 'US', now()), +(14145, 'Inuyasha (US)', 'AJ', now()), +(14146, 'Did We Really Love', 'KR', now()), +(14147, '18, 29', 'KR', now()), +(14148, 'Emperor of the Sea', 'KR', now()), +(14149, 'End of Love', 'KR', now()), +(14150, 'Everyday With You', 'KR', now()), +(14151, 'Fairy and Swindler', 'KR', now()), +(14152, 'Fashion 70s', 'KR', now()), +(14153, '5th Republic', 'KR', now()), +(14154, 'Fireworks', 'KR', now()), +(14155, 'First Love (KR)', 'KR', now()), +(14156, 'Five Brothers & Sisters', 'KR', now()), +(14157, 'White Boyz in the Hood', 'US', now()), +(14158, 'Flowing River', 'KR', now()), +(14159, 'Forbidden Love', 'KR', now()), +(14160, 'Four Sisters', 'KR', now()), +(14161, 'Fox and Cotton Candy', 'KR', now()), +(14162, 'Full House (KR)', 'KR', now()), +(14163, 'Genghis Khan', 'KR', now()), +(14164, 'Gift (KR)', 'KR', now()), +(14165, 'Girls'' High School People', 'KR', now()), +(14166, 'Glass Shoes', 'KR', now()), +(14167, 'Golden Apple', 'KR', now()), +(14168, 'Hitler''s Holocaust', 'UK', now()), +(14169, 'Dad (2005)', 'UK', now()), +(14170, 'Armenian Genocide', 'FR', now()), +(14171, 'A Good Man', 'KR', now()), +(14172, 'Good News (KR)', 'KR', now()), +(14173, 'Goodbye My Love', 'KR', now()), +(14174, 'Good Bye, Solo', 'KR', now()), +(14175, 'A Farewell to Sorrow', 'KR', now()), +(14176, 'Great Expectations', 'KR', now()), +(14177, 'Great Ambition', 'KR', now()), +(14178, 'Green Rose (KR)', 'KR', now()), +(14179, 'Guardian Angel', 'KR', now()), +(14180, 'Biscuit Teacher and Star Candy', 'KR', now()), +(14181, 'Memories of Bali', 'KR', now()), +(14182, 'Hello! Balbari', 'KR', now()), +(14183, 'Hello, God!', 'KR', now()), +(14184, 'Honest Living', 'KR', now()), +(14185, 'Hong Kong Express', 'KR', now()), +(14186, 'December Fever', 'KR', now()), +(14187, 'Hotelier', 'KR', now()), +(14188, 'Huh Joon', 'KR', now()), +(14189, 'The Truth', 'KR', now()), +(14190, 'Her House', 'KR', now()), +(14191, 'Sorry, I Love You', 'KR', now()), +(14192, 'I Love Hyun-jung', 'KR', now()), +(14193, 'Ice Girl', 'KR', now()), +(14194, 'Ice Flower', 'KR', now()), +(14195, 'Man of the Sun, Lee Je-ma', 'KR', now()), +(14196, 'Immortal Admiral Yi Sun-shin', 'KR', now()), +(14197, 'In Search of Love', 'KR', now()), +(14198, 'Famous Princesses', 'KR', now()), +(14199, 'Inspector Park Moon Soo', 'KR', now()), +(14200, 'Into the Sun', 'KR', now()), +(14201, 'Into the Sunlight', 'KR', now()), +(14202, 'Invisible Man', 'KR', now()), +(14203, 'Ireland', 'KR', now()), +(14204, 'The Late Late Show', 'IE', now()), +(14205, 'Bright Girl’s Success', 'KR', now()), +(14206, 'Undercover Customs', 'UK', now()), +(14208, 'Ju Mong', 'KR', now()), +(14209, 'April Kiss', 'KR', now()), +(14210, 'Ladies of the Palace', 'KR', now()), +(14211, 'The Law of Marriage', 'KR', now()), +(14212, 'Lawyers', 'KR', now()), +(14213, 'Legends of Love', 'KR', now()), +(14214, 'Let''s Go, Sangdoo', 'KR', now()), +(14215, 'Summer Beach', 'KR', now()), +(14216, 'Precious Family', 'KR', now()), +(14217, 'Like Father, Unlike Son', 'KR', now()), +(14218, 'Little Women (KR)', 'KR', now()), +(14219, 'Saul of the Mole Men', 'US', now()), +(14220, 'Wild Thing: I Love You', 'UK', now()), +(14221, 'Race To Dakar', 'UK', now()), +(14222, 'Solitude', 'KR', now()), +(14223, 'Love and Ambition', 'KR', now()), +(14224, 'Love & Success', 'KR', now()), +(14225, 'Love Letter', 'KR', now()), +(14226, 'Love Story in Harvard', 'KR', now()), +(14227, 'A Love to Kill', 'KR', now()), +(14228, 'Loveholic', 'KR', now()), +(14229, 'Lovers', 'KR', now()), +(14230, 'Lovers in Paris', 'KR', now()), +(14231, 'Lovers in Prague', 'KR', now()), +(14232, 'Loving You', 'KR', now()), +(14233, 'Man in Crisis', 'KR', now()), +(14234, 'Man of Autumn', 'KR', now()), +(14235, 'Ad Madness', 'KR', now()), +(14236, 'Marry Me (KR)', 'KR', now()), +(14237, 'Say You Love Me', 'KR', now()), +(14238, 'Medical Center (KR)', 'KR', now()), +(14239, 'Memories (KR)', 'KR', now()), +(14240, 'Off The Hook: Fishing Ventures', 'US', now()), +(14241, 'MIna', 'KR', now()), +(14242, 'Ms. Kim’s Million Dollar Quest', 'KR', now()), +(14243, 'Miss Mermaid', 'KR', now()), +(14244, 'Mom''s Song', 'KR', now()), +(14245, 'More Beautiful Than A Flower', 'KR', now()), +(14246, 'More Than Love', 'KR', now()), +(14247, 'Mr. Duke', 'KR', now()), +(14248, 'Mr. Goodbye', 'KR', now()), +(14249, 'My Girl', 'KR', now()), +(15230, 'The Great British Quiz', 'UK', now()), +(14251, 'My Love Patzzi', 'KR', now()), +(14252, 'My Lovely Sam-Soon', 'KR', now()), +(14253, 'My Name Is Princess', 'KR', now()), +(14254, 'My Lovely Family', 'KR', now()), +(14255, 'Sweet Heart, Sweet Darling', 'KR', now()), +(14256, 'LivePrayer With Bill Keller', 'US', now()), +(14257, 'Breathing Room', 'US', now()), +(14258, 'Ice-T''s Rap School', 'US', now()), +(14259, 'Near to You', 'KR', now()), +(14260, 'Han River Ballad', 'KR', now()), +(14261, 'Oh! Feel Young', 'KR', now()), +(14262, 'My Beloved Sister', 'KR', now()), +(14263, 'On the Prairie', 'KR', now()), +(14264, 'One Fine Day', 'KR', now()), +(14265, 'One Million Roses', 'KR', now()), +(14266, 'Only You', 'KR', now()), +(14267, 'Orient Theatre', 'KR', now()), +(14268, 'Princess Hours', 'KR', now()), +(14269, 'Jade''s P.A.', 'UK', now()), +(14270, 'Goldplated', 'UK', now()), +(14271, 'Pearl Necklace', 'KR', now()), +(14272, 'Phoenix (KR)', 'KR', now()), +(14273, 'Piano (KR)', 'KR', now()), +(14274, 'Come Back Soon-ae!', 'KR', now()), +(14275, 'Popcorn (KR)', 'KR', now()), +(14276, 'Pardon', 'KR', now()), +(14277, 'Pretty Woman', 'KR', now()), +(14278, 'First Love of a Royal Prince', 'KR', now()), +(14279, 'Princess Lulu', 'KR', now()), +(14280, 'Hearts of Nineteen', 'KR', now()), +(14281, 'Pure Heart', 'KR', now()), +(14282, 'Love Truly', 'KR', now()), +(14283, 'The Next', 'KR', now()), +(14284, 'Remember', 'KR', now()), +(14285, 'Revenge (KR)', 'KR', now()), +(14286, 'Rival', 'KR', now()), +(14287, 'Romance (KR)', 'KR', now()), +(14288, 'SCI FI Investigates', 'US', now()), +(14289, 'Rose Fence', 'KR', now()), +(14290, 'My Rosy Life', 'KR', now()), +(14291, 'Rosemary', 'KR', now()), +(14292, 'Roses and Bean Sprouts', 'KR', now()), +(14293, 'Ruler of Your Own World', 'KR', now()), +(14294, 'Breathless', 'KR', now()), +(14295, 'The Wild Days', 'KR', now()), +(14296, 'Sad Love Story', 'KR', now()), +(14297, 'Sassy Girl, Chun-hyang', 'KR', now()), +(14298, 'Save The Last Dance For Me', 'KR', now()), +(14299, 'Match Made in Heaven', 'KR', now()), +(14300, 'Scent of A Man', 'KR', now()), +(14301, 'Screen', 'KR', now()), +(14302, 'Sea of Sisters', 'KR', now()), +(14303, 'A Second Proposal', 'KR', now()), +(14304, 'Secret', 'KR', now()), +(14305, 'A Man and A Woman', 'KR', now()), +(14306, 'Song of the Prince', 'KR', now()), +(14307, 'Seoul 1945', 'KR', now()), +(14308, 'She Is Cool!', 'KR', now()), +(14309, 'She''s the One', 'KR', now()), +(14310, 'Shining Days', 'KR', now()), +(14311, 'Shooting the Star', 'KR', now()), +(14312, 'Side Street People', 'KR', now()), +(14313, 'Since We Met', 'KR', now()), +(14314, 'Smile Again', 'KR', now()), +(15160, 'The Secret Show', 'UK', now()), +(15180, 'Sleep Clinic', 'UK', now()), +(14317, 'Recipe of Love', 'KR', now()), +(14318, 'Splendid Days', 'KR', now()), +(14319, 'Spring Days', 'KR', now()), +(14320, 'Spring Waltz', 'KR', now()), +(14321, 'Stained Glass', 'KR', now()), +(14322, 'Steal My Heart', 'KR', now()), +(14323, 'Summer Scent', 'KR', now()), +(14324, 'Sunflower', 'KR', now()), +(14325, 'Sun-hee and Jin-hee', 'KR', now()), +(14326, 'Sunshine (KR)', 'KR', now()), +(14327, 'Super Rookie', 'KR', now()), +(14328, 'Engineering an Empire', 'US', now()), +(14329, 'Discovery Atlas', 'US', now()), +(14330, 'Caught in the Moment', 'US', now()), +(14331, 'The Terracotta Horse', 'UK', now()), +(14332, 'The Spoils of War', 'UK', now()), +(14333, 'By the Sword Divided', 'UK', now()), +(14334, 'Pathfinders to Venus', 'UK', now()), +(14335, 'Pathfinders in Space', 'UK', now()), +(14336, 'The Racketty Street Gang', 'UK', now()), +(14337, 'El C.I.D.', 'UK', now()), +(14338, 'In Suspicious Circumstances', 'UK', now()), +(14339, 'The Black Tulip', 'UK', now()), +(14340, 'The Smoking Gun', 'US', now()), +(14341, 'Gladiators 2000', 'US', now()), +(14342, 'Team Galaxy', 'FR', now()), +(14343, 'Swan Lake', 'KR', now()), +(14344, 'SWAT Police', 'KR', now()), +(14345, 'Sweet Bear', 'KR', now()), +(14346, 'Sweet Spy', 'KR', now()), +(14347, 'Sweetheart', 'KR', now()), +(14348, 'Terms of Endearment', 'KR', now()), +(14349, 'Thank You, My Life', 'KR', now()), +(14350, 'That Woman', 'KR', now()), +(14351, 'This Is Love', 'KR', now()), +(14352, '3 Leaf Clover', 'KR', now()), +(14353, 'To Be With You', 'KR', now()), +(14354, 'Marrying A Millionaire', 'KR', now()), +(14355, 'Trap of Youth', 'KR', now()), +(14356, 'Trio', 'KR', now()), +(14357, 'TV Novel - Wind Flower', 'KR', now()), +(14358, 'Celebrity Paranormal Project', 'US', now()), +(14359, 'Emperor Wang Gun', 'KR', now()), +(14360, 'The War of Roses', 'KR', now()), +(14361, 'The Boy from Andromeda', 'NZ', now()), +(14362, 'Hunter''s Gold', 'NZ', now()), +(14363, 'John Halifax, Gentleman', 'UK', now()), +(14364, 'Anne of Avonlea', 'CA', now()), +(14365, 'Jane Eyre (1973)', 'UK', now()), +(14366, 'Hawkeye, the Pathfinder', 'UK', now()), +(14367, 'Anne of Green Gables', 'CA', now()), +(14368, 'Dating Now', 'KR', now()), +(14369, 'I Want a Dog for Christmas, Charlie Brown', 'US', now()), +(14370, 'Woodstock', 'UK', now()), +(14623, 'Honesty', 'KR', now()), +(14621, 'Tree in Heaven', 'KR', now()), +(23101, 'Idiot Hall of Fame', 'US', now()), +(23100, 'Popular Science''s Future of', 'US', now()), +(14375, 'You''re in the Super Bowl, Charlie Brown!', 'US', now()), +(14376, 'It''s Christmastime Again, Charlie Brown', 'US', now()), +(14377, 'Lucy Must Be Traded, Charlie Brown', 'US', now()), +(14378, 'It''s Spring Training, Charlie Brown!', 'US', now()), +(14379, 'Snoopy''s Reunion', 'US', now()), +(14380, 'Why, Charlie Brown, Why?', 'US', now()), +(14381, 'It''s the Girl in the Red Truck, Charlie Brown', 'US', now()), +(14382, 'Snoopy: The Musical', 'US', now()), +(14383, 'Happy New Year, Charlie Brown!', 'US', now()), +(14384, 'You''re a Good Man, Charlie Brown (1985)', 'US', now()), +(14385, 'What Have We Learned, Charlie Brown?', 'US', now()), +(14386, 'It''s Flashbeagle, Charlie Brown', 'US', now()), +(14387, 'Is This Goodbye, Charlie Brown?', 'US', now()), +(26901, 'TECX', 'UK', now()), +(14389, 'Wedding', 'KR', now()), +(14390, 'Which Star Are You From', 'KR', now()), +(14391, 'Who''s My Love', 'KR', now()), +(14392, 'Wife', 'KR', now()), +(14393, 'Winter Sonata', 'KR', now()), +(14394, 'Women Next Door', 'KR', now()), +(14395, 'Wonderful Life (KR)', 'KR', now()), +(14396, 'Yellow Ribbon', 'KR', now()), +(14397, 'You and I', 'KR', now()), +(14625, 'Charlie Brown''s All-Stars', 'US', now()), +(14399, 'Someday You''ll Find Her, Charlie Brown', 'US', now()), +(14400, 'It''s Magic, Charlie Brown', 'US', now()), +(21084, 'The Gene Hunters', 'CA', now()), +(14402, 'Life Is a Circus, Charlie Brown', 'US', now()), +(14403, 'She''s a Good Skate, Charlie Brown', 'US', now()), +(14404, 'It''s an Adventure, Charlie Brown', 'US', now()), +(14405, 'You''re the Greatest, Charlie Brown', 'US', now()), +(14406, 'What a Nightmare, Charlie Brown!', 'US', now()), +(14407, 'It''s Your First Kiss, Charlie Brown', 'US', now()), +(14408, 'It''s Arbor Day, Charlie Brown', 'US', now()), +(14409, 'You''re a Good Sport, Charlie Brown', 'US', now()), +(14410, 'Be My Valentine, Charlie Brown', 'US', now()), +(14411, 'It''s the Easter Beagle, Charlie Brown', 'US', now()), +(14412, 'It''s a Mystery, Charlie Brown', 'US', now()), +(14622, 'U218 Videos', 'US', now()), +(14414, 'There''s No Time for Love, Charlie Brown', 'US', now()), +(14415, 'You''re a Good Man, Charlie Brown (1973)', 'US', now()), +(14416, 'You''re Not Elected, Charlie Brown', 'US', now()), +(14417, 'Play It Again, Charlie Brown', 'US', now()), +(14418, 'It Was a Short Summer, Charlie Brown', 'US', now()), +(14419, 'He''s Your Dog, Charlie Brown', 'US', now()), +(14420, 'You''re in Love, Charlie Brown', 'US', now()), +(14421, 'It''s the Great Pumpkin, Charlie Brown', 'US', now()), +(14624, 'A Charlie Brown Christmas', 'US', now()), +(14626, 'Dr. Seuss'' How The Grinch Stole Christmas', 'US', now()), +(14424, 'Super Password', 'US', now()), +(14425, 'Dance Revolution', 'US', now()), +(14426, 'Park Life', 'UK', now()), +(14427, 'Redcoats', 'UK', now()), +(14428, 'Abunai Houkago', 'JP', now()), +(14429, 'The Legend of the Condor Heroes', 'HK', now()), +(14430, 'Africa no Yoru', 'JP', now()), +(14431, 'Ai No Uta', 'JP', now()), +(14432, 'Aishiatteru Kai', 'JP', now()), +(14433, 'Aishi Suginakute Yokatta', 'JP', now()), +(14616, 'Cool', 'KR', now()), +(14435, 'The Life & Adventures of Santa Claus', 'US', now()), +(14436, 'The Leprechaun''s Christmas Gold', 'US', now()), +(14437, 'Pinocchio''s Christmas', 'US', now()), +(14438, 'The Return of the King', 'US', now()), +(21051, 'Eastbound & Down', 'US', now()), +(14440, 'Jack Frost', 'US', now()), +(14631, 'Reservation for Love', 'KR', now()), +(14442, 'Fråga Anders Och Måns', 'SE', now()), +(14443, 'Extra', 'US', now()), +(14444, 'Aruganon ni Hanataba wo', 'JP', now()), +(14445, 'Aqua Heroes', 'HK', now()), +(14446, 'Survivor''s Law', 'HK', now()), +(14447, 'Virtues Of Harmony', 'HK', now()), +(14448, 'Virtues Of Harmony II', 'HK', now()), +(14449, 'A Boy Named Charlie Brown', 'US', now()), +(14619, 'Forever Yours', 'KR', now()), +(14451, 'The Hobbit', 'US', now()), +(14452, 'The Easter Bunny Is Comin'' to Town', 'US', now()), +(14628, 'The Year Without A Santa Claus', 'US', now()), +(14630, 'The Man of the Vineyard', 'KR', now()), +(14632, 'Santa Claus Is Comin'' To Town', 'US', now()), +(14456, 'The First Easter Rabbit', 'US', now()), +(14457, 'The Driving Power', 'HK', now()), +(14458, 'Point of No Return', 'HK', now()), +(14459, 'The Vigilante In the Mask', 'HK', now()), +(14460, 'Summer Heat', 'HK', now()), +(14461, 'Net Deception', 'HK', now()), +(14462, 'In The Realm Of Fancy', 'HK', now()), +(14463, 'Love And Again', 'HK', now()), +(14464, 'Square Pegs (HK)', 'HK', now()), +(14465, 'Lofty Waters Verdant Bow', 'HK', now()), +(14466, 'Fate Twisters', 'HK', now()), +(14467, 'Perish In The Name Of Love', 'HK', now()), +(21908, 'Tough Love', 'US', now()), +(14469, 'Back To Square One', 'HK', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(14470, 'The King Of Yesterday And Tomorrow', 'HK', now()), +(14471, 'Vigilante Force', 'HK', now()), +(14472, 'Life Begins At Forty (HK)', 'HK', now()), +(14473, 'Martha', 'US', now()), +(14474, 'Take My Word For It', 'HK', now()), +(14475, 'Better Halves', 'HK', now()), +(14476, 'Greed Mask', 'HK', now()), +(14477, 'The Legend Of Love', 'HK', now()), +(14478, 'Happy Harmony', 'HK', now()), +(14479, 'Happy Returns', 'HK', now()), +(14480, 'The Legend Of Dik Ching', 'HK', now()), +(14481, 'The Family Squad', 'HK', now()), +(14482, 'Isaac', 'US', now()), +(14483, 'The Best of the Post', 'US', now()), +(14484, 'Filthy Rich (HK)', 'HK', now()), +(14485, 'The W Files', 'HK', now()), +(14486, 'Find The Light', 'HK', now()), +(14487, 'Being Honest', 'HK', now()), +(14488, 'Seed Of Hope', 'HK', now()), +(14489, 'Triumph In The Skies', 'HK', now()), +(14490, 'Not Just A Pretty Face', 'HK', now()), +(14620, 'Finders Keepers (UK)', 'UK', now()), +(14492, '''Twas the Night Before Christmas', 'US', now()), +(14493, 'The Enchanted World of Danny Kaye: The Emperor''s New Clothes', 'US', now()), +(14494, 'Here Comes Peter Cottontail', 'US', now()), +(14618, '50/50', 'UK', now()), +(14496, 'The Reluctant Dragon & Mr. Toad Show', 'US', now()), +(14627, 'The Little Drummer Boy', 'US', now()), +(21093, 'Post-Mortem (2001)', 'CA', now()), +(14499, 'Smokey the Bear', 'US', now()), +(14629, 'Rudolph, The Red-Nosed Reindeer', 'US', now()), +(14501, 'Show Time Blues', 'HK', now()), +(14502, 'Be My Guest', 'HK', now()), +(14503, 'To Love With No Regrets', 'HK', now()), +(14504, 'Riches And Stitches', 'HK', now()), +(14505, 'Wong Fei Hung Returns', 'HK', now()), +(14506, 'Handy Manny', 'US', now()), +(14507, 'Happy Birthday, Charlie Brown', 'US', now()), +(14508, 'Good Grief, Charlie Brown: A Tribute to Charles Schulz', 'US', now()), +(21053, 'Willie''s Wonky Chocolate Factory', 'UK', now()), +(14510, 'Kid Power', 'US', now()), +(14511, 'King Kong', 'US', now()), +(14512, 'Return to Oz', 'US', now()), +(14513, 'The New Adventures of Pinocchio', 'US', now()), +(14515, 'Mouse on the Mayflower', 'US', now()), +(14516, 'The Stingiest Man in Town', 'US', now()), +(14517, 'Puff, the Magic Dragon', 'US', now()), +(14518, 'Puff the Magic Dragon in the Land of the Living Lies', 'US', now()), +(14519, 'Batsu Kare', 'JP', now()), +(14520, 'Beauty 7', 'JP', now()), +(14521, 'Bokura ni ai o!', 'JP', now()), +(14522, 'The New Price Is Right', 'US', now()), +(14523, 'The Story of the First Christmas Snow', 'US', now()), +(14524, 'JK', 'BR', now()), +(14525, 'Doce Fugitiva', 'PT', now()), +(14526, 'Lady Fan', 'HK', now()), +(14527, 'Hard Fate', 'HK', now()), +(14528, 'Fallen', 'US', now()), +(14529, 'Dream Of Colours', 'HK', now()), +(14530, 'The Academy (HK)', 'HK', now()), +(14531, 'Just Love', 'HK', now()), +(14532, 'The Gentle Crackdown', 'HK', now()), +(14533, 'Slap Bang with Ant and Dec', 'UK', now()), +(14534, 'Show Me the Money', 'US', now()), +(14535, 'Rob & Big', 'US', now()), +(14536, 'The Gâteau Affairs', 'HK', now()), +(14537, 'Healing Hands', 'HK', now()), +(14538, 'Angels Of Mission', 'HK', now()), +(14539, 'Blade Heart', 'HK', now()), +(14540, 'A Handful Of Love', 'HK', now()), +(14541, 'Monarch Cove', 'US', now()), +(14542, 'Eien no Ko', 'JP', now()), +(14543, 'To Get Unstuck In Time', 'HK', now()), +(14544, 'To Catch The Uncatchable', 'HK', now()), +(14545, 'Hidden Treasures', 'HK', now()), +(14546, 'War And Beauty', 'HK', now()), +(14547, 'Friends (JP)', 'JP', now()), +(14548, 'Fure Fure Jinsei', 'JP', now()), +(14549, '100 Greatest Songs of the ''80s', 'US', now()), +(14550, 'Tripping Over', 'AU', now()), +(14551, 'Puff and the Incredible Mr. Nobody', 'US', now()), +(14552, 'Popcorn (UK)', 'UK', now()), +(14553, 'Twin Of Brothers', 'HK', now()), +(14554, 'Split Second (HK)', 'HK', now()), +(14556, 'The Ant & Dec Show', 'UK', now()), +(14575, 'Help! (JP)', 'JP', now()), +(14576, 'Nothing To Declare', 'HK', now()), +(14577, 'Once Upon A Time In Shanghai', 'HK', now()), +(14578, 'The Legend Of Master Chai', 'HK', now()), +(14579, '.hack//Roots', 'JP', now()), +(14580, 'Dame Edna''s Hollywood', 'US', now()), +(15248, 'Record Breakers', 'UK', now()), +(14582, 'The Legendary Police Woman', 'KR', now()), +(14583, 'Cat on the Roof', 'KR', now()), +(14584, 'Something About 1%', 'KR', now()), +(14585, 'Snow Flakes', 'KR', now()), +(14587, 'Itsuka mata aeru', 'JP', now()), +(14588, 'File Of Justice', 'HK', now()), +(14589, 'Working Women', 'HK', now()), +(14590, 'Street Stories', 'US', now()), +(14591, 'Classic Concentration', 'US', now()), +(14592, 'Concentration (US)', 'US', now()), +(14593, 'Judge Maria Lopez', 'US', now()), +(15103, 'The King Dae Joyoung', 'KR', now()), +(14595, 'Sweet Buns', 'KR', now()), +(14596, 'Love is All Around', 'KR', now()), +(14633, 'The Little Drummer Boy: Book II', 'US', now()), +(14598, 'Christmas In Rockefeller Center', 'US', now()), +(14599, 'Murder by the Book', 'US', now()), +(14600, 'Klovn', 'DK', now()), +(14601, 'Shin Don', 'KR', now()), +(14602, 'The Youth in Bare Foot', 'KR', now()), +(14603, 'Let''s Get Married', 'KR', now()), +(14604, 'Young-Jae''s Golden Days', 'KR', now()), +(14605, 'Love Can''t Wait', 'KR', now()), +(14606, 'Dan Rather Reports', 'US', now()), +(14607, 'Special of My Life', 'KR', now()), +(14608, 'Dr. Gang', 'KR', now()), +(14609, 'Over the Rainbow (KR)', 'KR', now()), +(14610, 'The People''s Court (1997)', 'US', now()), +(14614, 'Autumn in My Heart', 'KR', now()), +(14615, 'Jessica Novak', 'US', now()), +(14640, 'Frosty the Snowman', 'US', now()), +(14641, 'A Charlie Brown Thanksgiving', 'US', now()), +(14642, 'Frosty Returns', 'US', now()), +(14643, 'Rudolph''s Shiny New Year', 'US', now()), +(14644, 'A Charlie Brown Celebration', 'US', now()), +(14691, 'Is it Real?', 'US', now()), +(14646, 'Charlie Brown''s Christmas Tales', 'US', now()), +(14647, 'A Charlie Brown Valentine', 'US', now()), +(14648, 'MacIntyres.Underworld', 'UK', now()), +(14649, 'Wicked Wicked Games', 'US', now()), +(14650, 'Watch Over Me', 'US', now()), +(14674, 'In The Grid', 'UK', now()), +(14675, 'Mrs. Finnegan', 'AU', now()), +(14676, 'Casualty 1907', 'UK', now()), +(14677, 'Codex', 'UK', now()), +(14678, 'Help Me Help My Child', 'UK', now()), +(14679, 'Vanessa''s Real Lives', 'UK', now()), +(14680, 'Dickinson''s Real Deal', 'UK', now()), +(14681, 'The Secret Millionaire', 'UK', now()), +(14684, 'The Fame Game', 'UK', now()), +(14685, 'The Family Ness', 'UK', now()), +(14686, 'Svensson, Svensson', 'SE', now()), +(14687, 'The Baseball Bunch (2007)', 'US', now()), +(14688, 'The Lost Room', 'US', now()), +(14698, 'Rudolph, the Red-Nosed Reindeer & the Island of Misfit Toys', 'US', now()), +(21896, 'Darwin''s Dangerous Idea', 'UK', now()), +(20797, 'Bromance', 'US', now()), +(14703, 'My Life For Sale', 'UK', now()), +(14704, 'Barely Cooking', 'CA', now()), +(14706, 'Fist of the North Star (US)', 'AJ', now()), +(14707, 'The Family Circle', 'CA', now()), +(14708, 'Fancy Free', 'CA', now()), +(14709, 'The Farmer', 'CA', now()), +(14710, 'Feature Of The Week', 'CA', now()), +(14711, 'Feelin'' Good', 'CA', now()), +(14712, 'Ferment', 'CA', now()), +(14713, 'Fighting Words', 'CA', now()), +(14714, 'The Bad Girls Club', 'US', now()), +(14717, 'Finlay & Company', 'CA', now()), +(14718, 'The First Five Years', 'CA', now()), +(14719, 'Fear Factor (AU)', 'AU', now()), +(14720, 'Wipeout (AU)', 'AU', now()), +(14721, 'Twentyfourseven', 'US', now()), +(14725, 'QuizMaster', 'AU', now()), +(14726, 'Jeopardy! (AU)', 'AU', now()), +(14727, 'Now You See It (AU)', 'AU', now()), +(14728, 'Pick Your Face', 'AU', now()), +(14729, '3001: A Sex Oddity', 'US', now()), +(14733, 'Rita And Wally', 'AU', now()), +(14735, 'The Wind in the Willows', 'UK', now()), +(14736, 'The Jazz Age', 'UK', now()), +(14737, 'Victorian Scandals', 'UK', now()), +(14738, 'Robin Hood (1953)', 'UK', now()), +(14739, 'Heidi', 'DE', now()), +(14740, 'Henry''s Cat', 'UK', now()), +(14742, 'Robo Shark', 'US', now()), +(14743, 'Hickory House', 'UK', now()), +(14744, 'How (UK)', 'UK', now()), +(14745, 'A.D.A.M', 'UK', now()), +(14746, 'Ad-Lib', 'US', now()), +(14747, 'Adventures On Kythera', 'AU', now()), +(14748, 'Naruto: Shippuuden', 'JP', now()), +(14751, 'Fortune: Million Pound Giveaway', 'UK', now()), +(14752, 'Mission Africa', 'UK', now()), +(14753, 'Frontier (AU)', 'AU', now()), +(14754, 'Extinct', 'UK', now()), +(14755, 'One Man''s Family (1954)', 'US', now()), +(14761, 'Daily Cooks', 'UK', now()), +(14762, 'Come Dine With Me', 'UK', now()), +(14763, 'Grow Your Own', 'UK', now()), +(14764, 'Dorothy in the Land of Oz', 'US', now()), +(14765, 'B.C.: The First Thanksgiving', 'US', now()), +(14766, 'Silent Night, Holy Night', 'US', now()), +(14767, 'Ngaio Marsh''s Opening Night', 'NZ', now()), +(14768, 'Heidi (1974)', 'UK', now()), +(14769, 'The Fortunes of Nigel', 'UK', now()), +(14770, 'Pollyanna', 'UK', now()), +(14771, 'The Little Princess (1973)', 'UK', now()), +(14772, 'Cranford (1972)', 'UK', now()), +(14773, 'Tom Brown''s Schooldays', 'UK', now()), +(14774, 'The Silver Sword (1971)', 'UK', now()), +(14775, 'The Last of the Mohicans (1971)', 'UK', now()), +(14776, 'Pegasus', 'UK', now()), +(14777, 'A Handful of Thieves', 'UK', now()), +(14778, 'Triton', 'UK', now()), +(14779, 'Where''s Huddles?', 'US', now()), +(14780, 'Going Bush', 'AU', now()), +(14783, 'Trust Me - I''m A Holiday Rep', 'UK', now()), +(14786, 'Aquí no hay quien viva', 'ES', now()), +(14790, 'Castle In The Country', 'UK', now()), +(14791, 'The Really Useful Show', 'UK', now()), +(14792, 'The General', 'UK', now()), +(14793, 'Good Living', 'UK', now()), +(14794, 'The Vanessa Show', 'UK', now()), +(14797, '1 Leicester Square', 'UK', now()), +(14798, 'The Garden Party', 'UK', now()), +(14799, 'Playing For Time', 'UK', now()), +(14800, 'Fully Booked', 'UK', now()), +(14802, 'Tucker''s Luck', 'UK', now()), +(14803, 'Sudo-Q', 'UK', now()), +(14804, 'Breakfast with the Arts', 'US', now()), +(14805, 'Live At Johnny''s', 'UK', now()), +(14806, 'My Celebrity Home', 'US', now()), +(14807, 'Guess Who''s Coming to Decorate', 'US', now()), +(14808, 'Real Simple', 'US', now()), +(14809, 'When I Was a Girl', 'US', now()), +(14810, 'Wall Street Warriors', 'US', now()), +(14811, 'Dr. Danger', 'US', now()), +(14812, 'Beer Nutz', 'US', now()), +(14813, 'Three Sheets', 'US', now()), +(14814, 'After Hours with Daniel Boulud', 'US', now()), +(14815, 'Full Frontal Fashion', 'US', now()), +(14816, 'Children Of Helen House', 'UK', now()), +(14817, 'The Truth About Food', 'UK', now()), +(14818, 'Holiday On A Shoestring', 'UK', now()), +(14819, 'The Paul Daniels Magic Show', 'UK', now()), +(14820, 'People (UK)', 'UK', now()), +(14822, 'Takeover Bid', 'UK', now()), +(14823, 'The Noel Edmonds Saturday Roadshow', 'UK', now()), +(14824, 'Noel''s Addicts', 'UK', now()), +(14825, 'No Kidding', 'UK', now()), +(14826, 'Funniest Commercials of the Year', 'US', now()), +(14827, 'Smillie''s People', 'UK', now()), +(14828, 'Put It To The Test', 'UK', now()), +(14829, 'Mysteries With Carol Vorderman', 'UK', now()), +(14830, 'Torchwood Declassified', 'UK', now()), +(14831, 'Matchpoint', 'UK', now()), +(21091, 'Love Handles', 'CA', now()), +(14833, 'Late Late Breakfast Show', 'UK', now()), +(14834, 'Gay, Straight or Taken?', 'US', now()), +(14835, 'The Ron White Show', 'US', now()), +(14836, 'The Manhunter', 'US', now()), +(14837, 'Escape (US)', 'US', now()), +(14838, 'Tatort', 'DE', now()), +(14839, 'The Silver Theater', 'US', now()), +(14840, 'The Screen Actors Guild Awards', 'US', now()), +(14841, 'Matt and Jenny', 'CA', now()), +(14842, 'Greatest Heroes of the Bible', 'US', now()), +(14843, 'Testimony of Two Men', 'US', now()), +(14844, 'Bronk', 'US', now()), +(14845, 'Jigsaw', 'US', now()), +(14846, 'Assignment Vienna', 'US', now()), +(14847, 'The News Hour with Jim Lehrer', 'US', now()), +(14848, 'Turnabout (UK)', 'UK', now()), +(14849, 'Mafiosa, Le Clan', 'FR', now()), +(14850, 'Premiere', 'US', now()), +(14851, 'The Saturday Picture Show', 'UK', now()), +(14852, 'Court Martial', 'UK', now()), +(14853, 'Cheggers Plays Pop', 'UK', now()), +(14854, 'On The Waterfront', 'UK', now()), +(14855, 'UP2U', 'UK', now()), +(14856, 'Celebdaq', 'UK', now()), +(14857, 'Come Fly With Me (UK)', 'UK', now()), +(14858, 'The Beachcomber', 'US', now()), +(18235, 'Der Kriminalist', 'DE', now()), +(14860, 'Alcoa-Goodyear Theatre', 'US', now()), +(14861, 'Armed and Famous', 'US', now()), +(14862, 'The Charles Grodin Show', 'US', now()), +(14863, 'The David Niven Show', 'US', now()), +(14864, 'Pursuit', 'US', now()), +(14865, 'Gruen Guild Playhouse', 'US', now()), +(14866, 'Stars Over Hollywood', 'US', now()), +(14867, 'The Movie Game (US)', 'US', now()), +(14868, 'Parallel 9', 'UK', now()), +(14869, 'FBi', 'UK', now()), +(14870, 'Shannon (1981)', 'US', now()), +(14871, 'It''s Wicked', 'UK', now()), +(14872, 'Eggs ''n'' Baker', 'UK', now()), +(14873, 'Stone', 'US', now()), +(14874, 'Samson & Goliath', 'US', now()), +(14875, 'High Maintenance 90210', 'US', now()), +(14876, 'Les Misérables', 'UK', now()), +(14877, 'Broome Stages', 'UK', now()), +(14878, 'The Idiot', 'UK', now()), +(14879, 'A History of Britain', 'UK', now()), +(14880, 'Oliver''s Travels', 'UK', now()), +(14881, 'Chocky''s Children', 'UK', now()), +(14882, 'Whatever You Want', 'UK', now()), +(14883, 'The Unforeseen', 'CA', now()), +(14884, 'San Francisco International Airport', 'US', now()), +(14885, 'Oxford Roadshow', 'UK', now()), +(14886, 'Johnny Vaughan Tonight', 'UK', now()), +(14887, 'Russell Harty', 'UK', now()), +(14888, 'Harty', 'UK', now()), +(14889, 'Shoulder to Shoulder', 'UK', now()), +(14890, 'Out of Hours', 'UK', now()), +(14891, 'The Marksman', 'UK', now()), +(14892, 'Three Comedies of Marriage', 'UK', now()), +(14893, 'Junior Masterchef', 'UK', now()), +(14894, 'Six Days of Justice', 'UK', now()), +(14895, 'Marco Polo', 'US', now()), +(14896, 'The Shields Stories', 'CA', now()), +(14897, 'The Sharing Circle', 'CA', now()), +(14898, 'Ernie In Kovacsland', 'US', now()), +(14899, 'The Ernie Kovacs Show', 'US', now()), +(14900, 'Ernie Kovacs Show', 'US', now()), +(14901, 'Bank of Mum & Dad', 'UK', now()), +(14902, 'Big Black Comedy Show', 'US', now()), +(18343, 'Scope', 'AU', now()), +(14904, 'Lincoln Heights', 'US', now()), +(14905, 'Time for Living', 'CA', now()), +(14906, 'Hine', 'UK', now()), +(14907, 'The Power Game', 'UK', now()), +(14908, 'Omnibus (US)', 'US', now()), +(14909, 'The Ken Murray Show', 'US', now()), +(14910, 'Harty Goes To ...', 'UK', now()), +(14911, 'Saturday Night Clive', 'UK', now()), +(14912, 'Great Ocean Adventure', 'UK', now()), +(14913, 'Man of the World', 'UK', now()), +(14914, 'Beg Borrow Or Steal', 'UK', now()), +(14915, 'Star For A Night', 'UK', now()), +(14916, 'The Loafers', 'UK', now()), +(14917, 'Seaside Special', 'UK', now()), +(14918, 'Living In The Sun', 'UK', now()), +(14919, 'Maternity Hospital', 'UK', now()), +(14921, 'Big City Comedy', 'US', now()), +(14922, 'The Billy Crystal Comedy Hour', 'US', now()), +(26658, 'Ronny och Ragge', 'SE', now()), +(14924, 'Young Comedians', 'US', now()), +(14925, 'Showbiz Today', 'US', now()), +(14926, 'Starveillance', 'US', now()), +(14927, 'Grease: You''re the One that I Want!', 'US', now()), +(14928, 'Accident', 'UK', now()), +(14929, 'Chocky''s Challenge', 'UK', now()), +(14930, 'Activ-8', 'UK', now()), +(14931, 'Bluebell', 'UK', now()), +(14932, 'The Brack Report', 'UK', now()), +(14933, 'A Man of our Times', 'UK', now()), +(14934, 'The Man Who Made Husbands Jealous', 'UK', now()), +(14935, 'Wild Events', 'UK', now()), +(14936, 'The American President', 'US', now()), +(14937, 'Amongst Women', 'UK', now()), +(14938, 'Tinseltown TV', 'UK', now()), +(14939, 'Hothouse', 'US', now()), +(14940, 'Specials', 'UK', now()), +(14941, 'London Bridge', 'UK', now()), +(14942, 'Shalom Salaam', 'UK', now()), +(14943, 'Clayhanger', 'UK', now()), +(14944, 'Boy Dominic', 'UK', now()), +(14945, 'Just Our Luck', 'US', now()), +(14946, 'Love Story', 'UK', now()), +(14947, 'Kaz', 'US', now()), +(14948, 'Behind Closed Doors', 'US', now()), +(14949, 'Bob Says Opportunity Knocks', 'UK', now()), +(14950, 'Summertime Special', 'UK', now()), +(14951, 'Gagtag', 'UK', now()), +(14952, 'Bruce''s Guest Night', 'UK', now()), +(14953, 'Wild World of Spike', 'US', now()), +(14954, 'Comedy Tent at Reading Festival', 'UK', now()), +(14955, 'Lizzie''s Pictures', 'UK', now()), +(14956, 'The Val Doonican Music Show', 'UK', now()), +(14957, 'Gibberish', 'UK', now()), +(14958, 'The Search', 'UK', now()), +(14959, 'Al Murray''s Happy Hour', 'UK', now()), +(14960, 'Celebrity Ready Steady Cook', 'UK', now()), +(14961, 'Granada Reports', 'UK', now()), +(14962, 'The Surreal Life: Fame Games', 'US', now()), +(14963, 'Shooting Sizemore', 'US', now()), +(14964, 'I''m From Rolling Stone', 'US', now()), +(14965, 'Headmaster', 'UK', now()), +(14966, 'The Fellows', 'UK', now()), +(14967, 'Cluff', 'UK', now()), +(14968, 'Second Verdict Great Criminal Mysteries', 'UK', now()), +(14969, 'Kit Curran', 'UK', now()), +(14970, 'Pathfinders', 'UK', now()), +(14971, 'I''m The Answer', 'UK', now()), +(14972, 'Confessions (1995)', 'UK', now()), +(14973, 'Scruples', 'UK', now()), +(14974, 'The Travel Quiz', 'UK', now()), +(14975, 'A Question Of Entertainment', 'UK', now()), +(14976, '60 Minutes II', 'US', now()), +(14977, 'Little Mosque on the Prairie', 'CA', now()), +(14978, 'The Land Before Time', 'CA', now()), +(14979, 'Ellen''s Acres', 'US', now()), +(14980, 'Ego Trip''s White Rapper Show', 'US', now()), +(14981, 'Bindi, the Jungle Girl', 'US', now()), +(21900, 'Entertainment as a Second Language with Carlos', 'US', now()), +(14983, 'Anthony Bourdain: No Reservations', 'US', now()), +(14984, 'That''s So Last Week', 'UK', now()), +(14985, 'The Danny Baker Show', 'UK', now()), +(14986, 'Headjam', 'UK', now()), +(14987, 'Three''s A Crowd (UK)', 'UK', now()), +(14988, 'Liquid Profile', 'UK', now()), +(14989, 'Re:covered', 'UK', now()), +(14990, 'Nuclear Secrets', 'UK', now()), +(14991, 'Code Name: Diamond Head', 'US', now()), +(14992, 'Top Of The Pops Plus', 'UK', now()), +(14993, 'People''s Choice Awards', 'US', now()), +(14994, 'Warrior Nation', 'US', now()), +(14995, 'Take Hart', 'UK', now()), +(14996, 'The Madness Of Modern Families', 'UK', now()), +(14997, 'Wild Caribbean', 'UK', now()), +(14998, 'Nana (UK)', 'UK', now()), +(14999, 'V-Twin TV', 'US', now()), +(15000, 'Designed to Sell', 'US', now()), +(15001, 'Really Big Things', 'US', now()), +(15002, 'Most Deadly', 'US', now()), +(15003, 'Giada''s Weekend Getaways', 'US', now()), +(15004, 'The Riches', 'US', now()), +(15005, 'It Must Be Dusty', 'UK', now()), +(15006, 'My Cousin Rachel', 'UK', now()), +(15007, 'Looking for Clancy', 'UK', now()), +(15008, 'Vienna 1900', 'UK', now()), +(15009, 'Break in the Sun', 'UK', now()), +(15010, 'Masterteam', 'UK', now()), +(15011, 'TV Land Myths & Legends', 'US', now()), +(15012, 'Megabuilders', 'US', now()), +(15013, 'Rock Shrines', 'UK', now()), +(15014, 'Tease', 'US', now()), +(15015, 'China from the Inside', 'US', now()), +(15016, 'Wired Science', 'US', now()), +(15017, 'Science Investigators', 'US', now()), +(15018, '22nd Century', 'US', now()), +(15019, 'Hartbeat', 'UK', now()), +(15020, 'The Artbox Bunch', 'UK', now()), +(15021, 'Smart Hart', 'UK', now()), +(15022, 'Rob & Amber: Against the Odds', 'US', now()), +(15023, 'Poker After Dark', 'US', now()), +(15024, 'Friday People', 'UK', now()), +(15025, 'The Palace', 'UK', now()), +(15026, 'Rolf On Art', 'UK', now()), +(15027, 'Rolf''s Amazing World Of Animals', 'UK', now()), +(15028, 'Trust Me, I''m A Doctor', 'UK', now()), +(15029, 'Code Monkeys', 'US', now()), +(15030, 'Knights of God', 'UK', now()), +(15031, 'I''d Do Anything', 'UK', now()), +(15036, 'Buck Owens'' Ranch Show', 'US', now()), +(15038, 'The Block (US)', 'US', now()), +(15039, 'When Love Comes To Town', 'UK', now()), +(15040, 'Maui Fever', 'US', now()), +(15041, 'Behind The Screen (UK)', 'UK', now()), +(15042, 'Family Matters (UK)', 'UK', now()), +(21046, 'Derde Testament, Het', 'NL', now()), +(21045, 'Triana', 'NL', now()), +(21044, 'Underdog to Wonderdog', 'US', now()), +(21043, 'Wedding SOS', 'US', now()), +(15047, 'Children of the Dust', 'US', now()), +(21042, 'Underworld Histories', 'CA', now()), +(21041, 'Kids'' CBC', 'CA', now()), +(21040, 'Kraft Hockeyville', 'CA', now()), +(21039, 'Zero Hour (2006)', 'CA', now()), +(21038, 'Casualty 1909', 'UK', now()), +(21037, 'Impossible Heists', 'US', now()), +(21036, 'Blueprint for Disaster', 'CA', now()), +(15055, 'Murder In Texas', 'US', now()), +(21035, 'Iron Road', 'CA', now()), +(21052, 'Juliana', 'NL', now()), +(21034, 'Overruled!', 'CA', now()), +(21033, 'Race to Mars', 'CA', now()), +(21032, 'Hart of the Annex', 'US', now()), +(21031, 'The Truth About the Sexes', 'CA', now()), +(15062, 'DanceLife', 'US', now()), +(15065, 'Junior Mastermind', 'UK', now()), +(15066, 'Definitely Maybe', 'US', now()), +(15067, 'Small Sacrifices', 'US', now()), +(15068, 'Jane Eyre (1983)', 'UK', now()), +(15069, 'Tim and Eric Awesome Show, Great Job!', 'US', now()), +(15070, 'Dirty Dancing (2006)', 'US', now()), +(15071, 'Engaged & Underage', 'US', now()), +(15072, 'Bam''s Unholy Union', 'US', now()), +(15073, 'Wrestling Society X', 'US', now()), +(21047, 'In de schaduw van het nieuws', 'NL', now()), +(15075, 'Tracks', 'UK', now()), +(15076, 'Indian Idol', 'IN', now()), +(15077, 'The Person I Love', 'KR', now()), +(15078, 'When Spring Comes', 'KR', now()), +(15079, 'Blissful Woman', 'KR', now()), +(15080, 'Dalja’s Spring', 'KR', now()), +(15082, 'Tony Awards', 'US', now()), +(21027, 'Elvis (1990)', 'US', now()), +(15084, 'TV Land Awards: A Celebration of Classic TV', 'US', now()), +(15085, 'The Phil Donahue Show', 'US', now()), +(15086, 'Bad Woman, Good Woman', 'KR', now()), +(15087, 'ESPY Awards', 'US', now()), +(15088, '200 Greatest Pop Culture Icons', 'US', now()), +(15089, 'ABC''s 50th Anniversary Celebration', 'US', now()), +(15090, 'UFC Fight Night', 'US', now()), +(15091, 'Thieves Like Us', 'UK', now()), +(15092, 'Billie Jean, Look at Me', 'KR', now()), +(15093, 'Snowflower', 'KR', now()), +(15094, 'Queen of the Game', 'KR', now()), +(15095, 'Lovers (2006)', 'KR', now()), +(15096, 'The Snow Queen (KR)', 'KR', now()), +(15097, 'Jamie''s Chef', 'UK', now()), +(15098, 'Benidorm', 'UK', now()), +(15099, 'Bonkers (UK)', 'UK', now()), +(15100, 'Party Animals', 'UK', now()), +(15101, 'My Love', 'KR', now()), +(15216, 'Art School', 'UK', now()), +(15104, 'Hwang Jin-i', 'KR', now()), +(15105, 'Dangerous', 'AU', now()), +(15106, '2057', 'US', now()), +(15107, 'Hollyoaks: In the City', 'UK', now()), +(15108, '90 Days, Time to Love', 'KR', now()), +(15109, 'Couple or Trouble', 'KR', now()), +(15110, 'Cloud Staircase', 'KR', now()), +(15111, 'My Lovely Fool', 'KR', now()), +(15112, 'The Great Hero', 'KR', now()), +(15113, 'Boulevard Of Broken Dreams', 'US', now()), +(15114, 'Skins Redux', 'UK', now()), +(15115, 'Video Justice', 'US', now()), +(15116, 'The Daring Sisters', 'KR', now()), +(15117, 'The 101st Proposal', 'KR', now()), +(15118, 'Crimetime', 'US', now()), +(15119, 'Stranger Than Paradise', 'KR', now()), +(15120, 'Goong S', 'KR', now()), +(15121, 'Foxy Lady!', 'KR', now()), +(15122, 'Comedy Map of Britain', 'UK', now()), +(15123, 'The Sorcerer''s Apprentice', 'UK', now()), +(15124, 'True Dare Kiss', 'UK', now()), +(15125, 'Inspector George Gently', 'UK', now()), +(15126, 'So In Love', 'KR', now()), +(15127, 'Soul Mate', 'KR', now()), +(15128, 'When Will I Be Famous?', 'UK', now()), +(15129, 'Timekeepers', 'UK', now()), +(15130, 'Puzzle Trail', 'UK', now()), +(21911, 'Lou and Lou: Safety Patrol', 'US', now()), +(15132, '1 vs 100 (AUS)', 'AU', now()), +(15133, 'The Naked Brothers Band', 'US', now()), +(15134, 'Meet The Challenge', 'UK', now()), +(15135, 'Hello, Francesca', 'KR', now()), +(15136, 'Rules of Love', 'KR', now()), +(15137, 'Future Car', 'US', now()), +(15138, 'Primeval', 'UK', now()), +(15139, 'Anatomy of a Scene', 'US', now()), +(15140, 'Alfred Jodocus Kwak', 'NL', now()), +(15141, 'The Code: Crime And Justice', 'AU', now()), +(15142, 'What''s Good For You', 'AU', now()), +(15143, 'WAGS Boutique', 'UK', now()), +(15144, 'Single Again', 'KR', now()), +(15145, 'Typhoon In That Summer', 'KR', now()), +(15146, 'Lotus Flower Fairy', 'KR', now()), +(15147, 'No Win No Fee', 'UK', now()), +(15148, 'Beat The Teacher', 'UK', now()), +(15149, 'Rough Diamond', 'UK', now()), +(15150, 'Cranford (2007)', 'UK', now()), +(15151, 'Shear Genius', 'US', now()), +(15153, 'Water Flower', 'KR', now()), +(15154, 'My 19 Years Old Sister In Law', 'KR', now()), +(15157, 'Little Bride', 'KR', now()), +(15158, 'When A Man Loves A Woman', 'KR', now()), +(15159, 'First Love (2003)', 'KR', now()), +(15161, 'A Problem At My Younger Brother’s House', 'KR', now()), +(15162, 'My Fair Lady', 'KR', now()), +(15163, 'PUNCH', 'KR', now()), +(15164, 'Love of Thousands Years', 'KR', now()), +(15165, 'M.I. High', 'UK', now()), +(15166, 'The Quack Chat Show', 'UK', now()), +(15167, 'All Or Nothing', 'UK', now()), +(15168, 'Hangar 17', 'UK', now()), +(15169, 'Star Pets', 'UK', now()), +(15170, 'Going Live', 'UK', now()), +(15171, 'Plunder', 'UK', now()), +(15173, 'The Baby Borrowers', 'UK', now()), +(15174, 'Aussie Millions Poker', 'AU', now()), +(15176, 'Wizards of Waverly Place', 'US', now()), +(15177, 'Secret History of the Freemasons', 'US', now()), +(15178, 'Heaven''s Fate', 'KR', now()), +(15179, 'Escape From Unemployment', 'KR', now()), +(15181, 'The Graham Norton Show', 'UK', now()), +(15182, 'Nature''s Calendar', 'UK', now()), +(15183, 'La Corda D''Oro ~primo passo~', 'JP', now()), +(15184, 'The Retreat', 'UK', now()), +(15185, 'My Life as a Child', 'US', now()), +(15186, 'Reichenbach Falls', 'UK', now()), +(15187, 'Bionic Woman', 'US', now()), +(15188, 'Russell Simmons Presents Def Poetry', 'US', now()), +(15189, 'Journeyman', 'US', now()), +(15190, 'What''s in a name?', 'UK', now()), +(15191, 'Bianca - Wege zum Glück', 'DE', now()), +(15192, 'Incredible Creatures', 'UK', now()), +(15194, 'Mga Kuwento Ni Lola Basyang', 'PH', now()), +(15195, 'The Agency (2007)', 'US', now()), +(15197, 'Badly Dubbed Porn', 'UK', now()), +(15198, 'Wanted Down Under', 'UK', now()), +(15199, 'This Is Genius', 'UK', now()), +(15200, 'ISU World Figure Skating Championships 2007', 'JP', now()), +(15201, 'Marshalls U.S. Figure Skating Showcase', 'US', now()), +(15202, 'Maxwell', 'UK', now()), +(15203, 'Star Trek: Beyond the Final Frontier', 'US', now()), +(15204, 'Utaban', 'JP', now()), +(15205, 'Noel''s Telly Years', 'UK', now()), +(15208, 'Contraption', 'US', now()), +(15209, 'Ink and Paint Club', 'US', now()), +(15210, 'Mousercise', 'US', now()), +(15211, 'Ray Mears''s Bushcraft', 'UK', now()), +(15212, 'Yoko! Jakamoko! Toto!', 'US', now()), +(15213, 'Animal Stories', 'UK', now()), +(15215, 'Night Train to Surbiton', 'UK', now()), +(15217, 'The Great Antiques Hunt', 'UK', now()), +(15218, 'Crash Test Dummies', 'UK', now()), +(15221, 'Best Evidence', 'US', now()), +(15222, 'You Spoof Discovery', 'US', now()), +(15223, 'The Great Egg Race', 'UK', now()), +(15225, 'Saving Babies', 'AU', now()), +(15226, 'Bizarre Foods', 'US', now()), +(15227, 'Fort Alpha', 'NL', now()), +(15228, 'Are You Smarter Than A 5th Grader?', 'US', now()), +(15229, 'Clockwise', 'UK', now()), +(15232, 'Now!', 'UK', now()), +(15233, 'Lynda Lee''s People', 'UK', now()), +(15234, 'Reportage', 'UK', now()), +(15235, 'Fax!', 'UK', now()), +(15236, 'NAACP Image Awards', 'US', now()), +(15237, 'The Spectacular Spider-Man', 'US', now()), +(15238, 'Paradise City', 'US', now()), +(15239, 'Pussycat Dolls Present: Girlicious', 'US', now()), +(15240, 'Dice Undisputed', 'US', now()), +(15242, 'Chegger''s Challenge', 'UK', now()), +(15243, 'Behind The White Tower', 'KR', now()), +(15244, 'Salt Doll', 'KR', now()), +(15245, 'Fimbles', 'UK', now()), +(15246, 'Tin Man', 'US', now()), +(15247, 'The Wedding Bells', 'US', now()), +(15249, 'Feeling Great', 'UK', now()), +(15250, 'Star Turn', 'UK', now()), +(15251, 'Shaun the Sheep', 'UK', now()), +(15252, 'IFL Battleground', 'US', now()), +(15253, 'American Heiress', 'US', now()), +(15254, 'Saints & Sinners', 'US', now()), +(16455, 'Paris (2007)', 'UK', now()), +(15256, '2007 ICC Cricket World Cup', 'JM', now()), +(15257, 'Get Color!', 'US', now()), +(15258, 'reDesign', 'US', now()), +(15259, 'Design Rivals', 'US', now()), +(15260, 'Comics Unleashed', 'US', now()), +(15261, 'Creative Juice', 'US', now()), +(15262, 'Color Splash', 'US', now()), +(15263, 'I Want That! Tech Toys', 'US', now()), +(15264, 'Dr. Know', 'US', now()), +(15265, '100 Greatest Discoveries', 'US', now()), +(16899, 'Offbeat America', 'US', now()), +(15268, 'The Really Wild Guide To Britain', 'UK', now()), +(15269, 'Why Did The Chicken?', 'UK', now()), +(15270, 'Hands On Nature', 'UK', now()), +(15271, 'Whose House?', 'UK', now()), +(15272, 'Shopping City', 'UK', now()), +(15273, 'Trading Treasures', 'UK', now()), +(15274, 'The Dame Edna Treatment', 'UK', now()), +(15275, 'Spellbound', 'US', now()), +(15276, 'What Happened on Island?', 'KR', now()), +(15277, 'Tomato', 'KR', now()), +(15278, 'Six Fifty-Five', 'UK', now()), +(15279, 'Castaway Exposed', 'UK', now()), +(15280, 'Debbie Does Dallas Again', 'US', now()), +(15281, 'The Land', 'KR', now()), +(15282, 'The Age of Innocence', 'KR', now()), +(15283, 'The Unstoppables', 'KR', now()), +(15284, 'Soon-Ja', 'KR', now()), +(15285, 'South Of the Sun', 'KR', now()), +(15286, 'Soapstar Superchef', 'UK', now()), +(15287, 'Bullrun', 'US', now()), +(15288, 'The Wow Factor', 'UK', now()), +(15289, '3 Wives', 'KR', now()), +(15290, 'Cute or Crazy', 'KR', now()), +(15291, 'Fascinate My Heart', 'KR', now()), +(15292, 'Dream Racers', 'KR', now()), +(15293, 'Ghost', 'KR', now()), +(15294, 'Juliet…s Man', 'KR', now()), +(15295, 'Land of Wine', 'KR', now()), +(15296, 'Mr. Q', 'KR', now()), +(15297, 'Rookie', 'KR', now()), +(15298, 'Sandglass', 'KR', now()), +(15299, 'Split Ends (US)', 'US', now()), +(15300, 'Perfect Love (KR)', 'KR', now()), +(15301, 'Model', 'KR', now()), +(15302, 'The King’s Woman', 'KR', now()), +(15303, 'Understanding', 'US', now()), +(15304, 'The Underdog Show', 'UK', now()), +(15305, 'Cops With Cameras', 'UK', now()), +(15306, 'Marbella Belles', 'UK', now()), +(15307, 'Chaos At The Chateau', 'UK', now()), +(15308, 'Selling Houses Abroad', 'UK', now()), +(15309, 'Mobile', 'UK', now()), +(15310, 'The Bill Engvall Show', 'US', now()), +(15311, 'Frank TV', 'US', now()), +(15312, 'Heartland', 'US', now()), +(15313, 'Saving Grace', 'US', now()), +(15314, 'Do The Right Thing', 'KR', now()), +(15315, 'KAIST', 'KR', now()), +(15316, 'Sons of Hollywood', 'US', now()), +(15317, 'My Big Family', 'KR', now()), +(15318, 'G.E. College Bowl', 'US', now()), +(15319, 'Californication', 'US', now()), +(15320, 'Tori & Dean: Home Sweet Hollywood', 'US', now()), +(15321, 'Newshound', 'UK', now()), +(15322, 'Animal Hospital', 'UK', now()), +(15323, 'Good Morning Summer', 'UK', now()), +(15324, 'Rolf On Saturday Ok!', 'UK', now()), +(15325, 'Car Booty', 'UK', now()), +(15326, 'Mullvaden', 'SE', now()), +(15327, 'Higher Education', 'US', now()), +(15328, 'The Lazarus Man', 'US', now()), +(15329, 'Abrams & Bettes: Beyond The Forecast', 'US', now()), +(15330, 'Say When!!', 'US', now()), +(15331, 'To Buy Or Not To Buy', 'UK', now()), +(15332, 'The Big Gay Sketch Show', 'US', now()), +(15333, 'Everybody''s Talking!', 'US', now()), +(15334, 'Today''s F.B.I', 'US', now()), +(15335, 'Rush Hour', 'UK', now()), +(15336, '100 Winners', 'US', now()), +(15337, 'Quiznation', 'US', now()), +(15338, 'Cat-Minster', 'US', now()), +(15339, 'That''s the Question', 'US', now()), +(15340, 'Game Show Hall of Fame', 'US', now()), +(15341, 'Miss USA', 'US', now()), +(15342, 'Acceptable TV', 'US', now()), +(15343, 'Stargate Universe', 'US', now()), +(15344, 'Sherlock Holmes And The Baker Street Irregulars', 'UK', now()), +(15345, 'Saving Planet Earth', 'UK', now()), +(15346, 'The Last Enemy', 'UK', now()), +(15347, 'Alastair Campbell Diaries', 'UK', now()), +(15348, 'Any Dream Will Do', 'UK', now()), +(15349, 'Mary Queen Of Shops', 'UK', now()), +(15350, 'The Panic Room', 'UK', now()), +(15351, 'The Whitest Kids U Know', 'US', now()), +(15352, 'Wilfred', 'AU', now()), +(15353, 'Weather Scope', 'US', now()), +(15354, 'Alarm für Cobra 11 - Die Autobahnpolizei', 'DE', now()), +(15355, 'Fly Tales', 'FR', now()), +(15356, 'Horákovi', 'CZ', now()), +(15357, 'Il était une fois... les Explorateurs', 'FR', now()), +(15358, 'Il était une fois... la Vie', 'FR', now()), +(15359, 'Il était une fois... l''Homme', 'FR', now()), +(15360, 'Il était une fois... l''Espace', 'FR', now()), +(15361, 'Il était une fois... les Amériques', 'FR', now()), +(15362, 'Il était une fois... les Découvreurs', 'FR', now()), +(15363, 'Blue Dragon', 'JP', now()), +(15364, 'Toward the Terra', 'JP', now()), +(15365, 'Léa Parker', 'FR', now()), +(15366, 'Der Bulle von Tölz', 'DE', now()), +(15367, 'Ulice', 'CZ', now()), +(15368, 'Příkopy', 'CZ', now()), +(15369, 'Náměstíčko', 'CZ', now()), +(15370, 'Uvolněte se, prosím', 'CZ', now()), +(21914, 'Camouflage (2007)', 'US', now()), +(15372, 'Back at the Barnyard', 'US', now()), +(15373, 'Alma pirata', 'AR', now()), +(15374, 'Hilary Duff: This Is Now', 'US', now()), +(15375, 'The Great American Dream Vote', 'US', now()), +(15376, 'Hélène et les garçons', 'FR', now()), +(15377, '25 degrés sud', 'FR', now()), +(15378, '72 heures', 'FR', now()), +(15379, 'L''Affaire Villemin', 'FR', now()), +(15380, 'Âge sensible', 'FR', now()), +(15381, 'Le Miracle de l''amour', 'FR', now()), +(15382, 'Les Vacances de l''amour', 'FR', now()), +(15383, 'Burn Notice', 'US', now()), +(15384, 'Play It Again', 'UK', now()), +(15385, 'The National Lottery People''s Quiz', 'UK', now()), +(15386, 'Get A Grip', 'UK', now()), +(15387, 'Thank God You''re Here (US)', 'US', now()), +(15388, 'Medicopter 117 - Jedes Leben zählt', 'DE', now()), +(15389, 'Hitohira', 'JP', now()), +(15390, 'Air Gear', 'AJ', now()), +(15733, 'The Jon Stewart Show', 'US', now()), +(15392, 'Human Version 2.0', 'US', now()), +(15393, 'Center Court with Coach K', 'US', now()), +(15394, 'Glenn Beck', 'US', now()), +(15395, 'Geek to Freak with Dennis Rodman', 'US', now()), +(15396, 'Náves', 'CZ', now()), +(15397, 'Skoro jasno', 'CZ', now()), +(15398, 'Susedia', 'SK', now()), +(15399, '13. komnata', 'CZ', now()), +(15400, 'Ženy Charty 77', 'CZ', now()), +(15401, 'ABCD ekologie aneb Životabudič', 'CZ', now()), +(15402, 'ABCD ekologie aneb Životabudič II', 'CZ', now()), +(15403, 'Simplemente Futbol', 'MX', now()), +(15404, 'Výroční ceny Akademie populární hudby', 'CZ', now()), +(15405, 'Ronni Ancona & Co', 'UK', now()), +(15406, 'Trosečník', 'CZ', now()), +(15407, 'Pojišťovna štěstí', 'CZ', now()), +(15408, 'Česko hledá SuperStar', 'CZ', now()), +(15409, 'Ordinace v růžové zahradě', 'CZ', now()), +(15410, 'Letiště', 'CZ', now()), +(15411, 'Ordinácia v ružovej záhrade', 'SK', now()), +(15412, 'Taquita & Kaui', 'US', now()), +(15413, 'Tele Tele', 'CZ', now()), +(15414, 'Víkend', 'CZ', now()), +(15415, 'Flight of the Conchords', 'US', now()), +(15416, 'Dog House (UK)', 'UK', now()), +(15417, 'Sweet Baby James', 'UK', now()), +(15418, 'Neneh And Andi - Dishing It Up', 'UK', now()), +(15419, 'Diamond Geezer', 'UK', now()), +(15420, 'Roman''s Empire', 'UK', now()), +(15421, 'The Jeremy Kyle Show (UK)', 'UK', now()), +(15422, 'Damages', 'US', now()), +(15423, 'Kostičky', 'CZ', now()), +(15424, 'Moudronos', 'CZ', now()), +(15425, 'Bailando, tančím pro tebe', 'CZ', now()), +(15426, '112', 'CZ', now()), +(15427, 'Světla pasáže', 'CZ', now()), +(15428, 'Bailando, tanec pre teba', 'SK', now()), +(15429, 'Grease Is The Word', 'UK', now()), +(15430, 'Deadline (UK)', 'UK', now()), +(15431, 'Tom O''Connor Roadshow', 'UK', now()), +(15432, 'Bony', 'AU', now()), +(15433, 'Claymore', 'JP', now()), +(15434, 'Misery Guts', 'AU', now()), +(15435, 'Mortified', 'AU', now()), +(15436, 'Русские в городе ангелов', 'RU', now()), +(15437, 'Nick Cannon Presents: Short Circuitz', 'US', now()), +(15438, 'Adventures in Hollyhood', 'US', now()), +(15439, 'Human Giant', 'US', now()), +(15440, 'Голая правда', 'RU', now()), +(15441, 'За стеклом', 'RU', now()), +(15442, 'Мастер и Маргарита', 'RU', now()), +(15443, 'Поле чудес', 'RU', now()), +(15446, 'Operación Triunfo', 'ES', now()), +(15447, 'Star Academy', 'FR', now()), +(15448, 'P. Diddy Presents the Bad Boys of Comedy', 'US', now()), +(15449, 'The Animals Roadshow', 'UK', now()), +(15450, 'Hello, Lady!', 'KR', now()), +(15451, 'HIT', 'KR', now()), +(15452, 'Moon Hee', 'KR', now()), +(15453, 'Crazy in Love', 'KR', now()), +(15454, 'Surgeon Bong Dal Hee', 'KR', now()), +(15455, 'Četnické humoresky', 'CZ', now()), +(15456, 'Dispečer', 'CZ', now()), +(15457, 'Dobrodružství kriminalistiky', 'CZ', now()), +(15458, 'Eden', 'CZ', now()), +(15459, 'F.L.Věk', 'CZ', now()), +(15460, 'Hříšní lidé Města pražského', 'CZ', now()), +(15461, 'Malý pitaval z velkého města', 'CZ', now()), +(15462, 'On je žena!', 'CZ', now()), +(15463, 'Panoptikum města pražského', 'CZ', now()), +(15464, 'Jim''ll Fix It Strikes Again', 'UK', now()), +(15465, 'Ruddy Hell It''s Harry And Paul', 'UK', now()), +(15466, 'Que Sera Sera', 'KR', now()), +(15467, 'Thank You', 'KR', now()), +(15468, 'The Lucifer', 'KR', now()), +(15469, 'Yu-hee, the Witch', 'KR', now()), +(15470, 'My Husband''s Woman', 'KR', now()), +(15471, 'Tokyo Majin Gakuen Kenpucho: Tou', 'JP', now()), +(15472, 'Romeo × Juliet', 'JP', now()), +(15473, 'Seto no Hanayome', 'JP', now()), +(15474, 'Heroic Age', 'JP', now()), +(15475, 'Hayate the Combat Butler', 'JP', now()), +(15476, 'Touka Gettan', 'JP', now()), +(15478, 'Love & Hate', 'KR', now()), +(15479, 'High as the Sky, Wide as the Earth', 'KR', now()), +(15480, 'Derren Brown: Trick Or Treat', 'UK', now()), +(15481, 'Life Begins Again', 'UK', now()), +(15482, 'Idolmaster Xenoglossia', 'JP', now()), +(15483, 'El Cazador de la Bruja', 'JP', now()), +(15484, 'Sisters of Wellber', 'JP', now()), +(15485, 'Shinkyoku Soukai Polyphonica', 'JP', now()), +(15486, 'Over Drive', 'JP', now()), +(15487, 'Engage Planet Kiss Dum', 'JP', now()), +(15488, 'Nagasarete Airantou', 'JP', now()), +(15489, 'Kishin Taisen Gigantic Formula', 'JP', now()), +(15490, 'Koutetsu Sangokushi', 'JP', now()), +(15491, 'Darker than BLACK', 'JP', now()), +(15492, 'Bakugan Battle Brawlers', 'JP', now()), +(15493, 'Shining Tears X Wind', 'JP', now()), +(15494, 'Kamichama Karin', 'JP', now()), +(15495, 'Guardian of the Sacred Spirit', 'JP', now()), +(15496, 'Bokurano', 'JP', now()), +(15497, 'Kaze no Stigma', 'JP', now()), +(15498, 'iCarly', 'US', now()), +(15499, 'Hollywood Beat', 'US', now()), +(15500, 'The Oldest Rookie', 'US', now()), +(15501, 'Jon & Kate Plus 8', 'US', now()), +(15502, 'Film 99', 'UK', now()), +(15503, 'Scarred', 'US', now()), +(15504, 'Ashes to Ashes', 'UK', now()), +(15505, 'Ladette to Lady', 'UK', now()), +(15506, 'Green: The New Red, White and Blue', 'US', now()), +(15507, 'National Geographic''s Strange Days on Planet Earth', 'US', now()), +(15508, 'Earth 2100: Wild Weather Ahead', 'US', now()), +(15509, 'The Academy (AU)', 'AU', now()), +(15510, 'Superstorm', 'UK', now()), +(15511, 'The Science Of Superstorms', 'UK', now()), +(15512, 'The Real Estate Pros', 'US', now()), +(15513, 'The Football Years', 'UK', now()), +(15514, 'This Is David Gest', 'UK', now()), +(15515, 'The Springer Hustle', 'US', now()), +(31399, 'Kvelden er din', 'NO', now()), +(15517, 'Missing (UK)', 'UK', now()), +(15518, 'Talk Soup', 'US', now()), +(15519, 'Living Lahaina', 'US', now()), +(15567, 'Holby Blue', 'UK', now()), +(15521, 'Demolition (2007)', 'UK', now()), +(15522, 'Kingdom', 'UK', now()), +(15525, 'Watchdog Healthcheck', 'UK', now()), +(15526, 'Katie And Peter: The Next Chapter', 'UK', now()), +(15528, 'The Drinky Crow Show', 'US', now()), +(15529, 'Superjail!', 'US', now()), +(15530, 'Fat Guy Stuck in Internet', 'US', now()), +(15531, 'That Crook''d ''Sipp', 'US', now()), +(15532, 'Let''s Fish', 'US', now()), +(15533, 'Tyler Perry''s House of Payne', 'US', now()), +(15534, 'The Real Wedding Crashers', 'US', now()), +(15535, 'Treasure Hunter: Kirsten Gum', 'US', now()), +(15536, 'Flash Gordon (2007)', 'US', now()), +(15537, 'Victoria''s Empire', 'UK', now()), +(15538, 'Inside Sport', 'UK', now()), +(15540, 'It''s Itsy Bitsy Time', 'US', now()), +(15541, 'Space Academy', 'US', now()), +(15543, 'Star in My Heart', 'KR', now()), +(15544, 'Happy Together', 'KR', now()), +(15545, 'Mothers and Sisters', 'KR', now()), +(15546, 'A Delicious Proposal', 'KR', now()), +(15547, 'Law Firm', 'KR', now()), +(15548, 'Sangdo', 'KR', now()), +(15549, 'Run, Joe, Run', 'US', now()), +(15550, 'Into the Storm', 'KR', now()), +(15553, 'KSA', 'KR', now()), +(15554, 'National Bingo Night', 'US', now()), +(15555, 'The Next Best Thing: Who is the Greatest Celebrity Impersonator?', 'US', now()), +(15556, 'The Heaven And Earth Show', 'UK', now()), +(15557, 'Love in Heaven', 'KR', now()), +(15560, 'Tack Gode Gud', 'SE', now()), +(15561, 'Cities of the Underworld', 'US', now()), +(15562, 'Bill Moyers Journal', 'US', now()), +(15563, 'Where Are They Now', 'AU', now()), +(15564, 'Half Ton Hospital With Jeremy Kyle', 'UK', now()), +(15565, 'Rock & Roll Jeopardy!', 'US', now()), +(15566, 'The Henry Rollins Show', 'US', now()), +(15568, 'Krisse Show', 'FI', now()), +(15572, 'Blue Fish', 'KR', now()), +(15573, 'Crossed Fate', 'KR', now()), +(15576, 'Private Practice', 'US', now()), +(15583, 'Koppel on Discovery', 'US', now()), +(15584, 'Driving Me Crazy (UK)', 'UK', now()), +(15585, 'The Hunter (1952)', 'US', now()), +(15586, 'Hunter (1977)', 'US', now()), +(15587, 'Age of Love', 'US', now()), +(15588, 'The Ex-Wives Club', 'US', now()), +(15589, 'Sunset Tan', 'US', now()), +(15590, 'Fast Cars & Superstars -- The Gillette Young Guns Celebrity Race', 'US', now()), +(15591, 'Shaq''s Big Challenge', 'US', now()), +(15592, 'Side Order of Life', 'US', now()), +(15593, 'State of Mind', 'US', now()), +(15594, 'Army Wives', 'US', now()), +(15595, 'The Kill Point', 'US', now()), +(15596, 'Abbey And Janice', 'UK', now()), +(15597, 'Gavin And Stacey', 'UK', now()), +(15598, 'Embarrassing Illnesses', 'UK', now()), +(15599, 'The Pyramid Game with Donny Osmond', 'UK', now()), +(15600, 'The Queen and I', 'US', now()), +(15601, 'Tennessee Tuxedo and his Tales', 'US', now()), +(15602, 'Out of the Inkwell', 'US', now()), +(15603, 'The Larry Storch Show', 'US', now()), +(15604, 'TV Land Confidential', 'US', now()), +(15605, 'Sola', 'JP', now()), +(15606, 'The Johnny Carson Show', 'US', now()), +(15607, 'Dennou Coil', 'JP', now()), +(15608, 'Reideen', 'JP', now()), +(15609, 'Devil May Cry', 'JP', now()), +(15610, 'Skullman', 'JP', now()), +(15611, 'Kiddy Grade 2', 'JP', now()), +(15612, 'Judge Wapner''s Animal Court', 'US', now()), +(15613, 'This Week (2003)', 'UK', now()), +(15614, 'Chuck', 'US', now()), +(15615, 'Life (US)', 'US', now()), +(15616, 'My Friend Tony', 'US', now()), +(15617, 'Going My Way', 'US', now()), +(15618, 'Decision', 'US', now()), +(15619, 'Gossip Girl', 'US', now()), +(15620, 'Shivaree', 'US', now()), +(15621, 'Big Sky: High River', 'CA', now()), +(15622, 'The Best Years', 'CA', now()), +(15623, 'The Hudson Brothers Razzle Dazzle Show', 'US', now()), +(15624, 'O''Hara, U.S. Treasury', 'US', now()), +(15625, 'Howie', 'US', now()), +(15626, 'How''d They Do That?', 'US', now()), +(15627, 'The Howard Stern Radio Show', 'US', now()), +(15628, 'Howard K. Smith', 'US', now()), +(15629, 'How To', 'US', now()), +(15630, 'How Did They Get That Way?', 'US', now()), +(15631, 'Houston Medical', 'US', now()), +(15632, 'House of Buggin''', 'US', now()), +(15633, 'Hour of Decision', 'US', now()), +(15634, 'The Humble Report', 'US', now()), +(15635, 'Hour Glass', 'US', now()), +(15636, 'Hotel Broadway', 'US', now()), +(15637, 'The Hot Seat', 'US', now()), +(15638, 'Hot Pursuit (1984)', 'US', now()), +(15639, 'Hot Country Nights', 'US', now()), +(15640, 'Horizons', 'US', now()), +(15641, 'The Horace Heidt Show', 'US', now()), +(15642, 'Hopkins 24/7', 'US', now()), +(15643, 'Honestly Celeste', 'US', now()), +(15644, 'Hometown (US)', 'US', now()), +(15645, 'The Brothers (US)', 'US', now()), +(15646, 'Professional Father', 'US', now()), +(15647, 'The Pride of the Family', 'US', now()), +(15648, 'City Detective', 'US', now()), +(15649, 'Lucky Luke', 'IT', now()), +(15650, 'Sweepstakes', 'US', now()), +(15651, 'Toma', 'US', now()), +(15652, 'Break the Bank', 'US', now()), +(15653, 'Willy', 'US', now()), +(15654, 'Star Stage', 'US', now()), +(15655, 'Hollywood Theatre Time', 'US', now()), +(15656, 'Hollywood Talent Scouts', 'US', now()), +(15657, 'Hollywood Summer Theatre', 'US', now()), +(15658, 'Guestward Ho!', 'US', now()), +(15659, 'The Bob Cummings Show (1961)', 'US', now()), +(15660, 'Durham County', 'CA', now()), +(15661, 'Tetsuko no Tabi', 'JP', now()), +(15662, 'Hollywood Screen Test', 'US', now()), +(15663, 'Hollywood Premiere', 'US', now()), +(15664, 'Hollywood Opening Night', 'US', now()), +(15665, 'Hollywood Insider', 'US', now()), +(15666, 'The Comedy Spot', 'US', now()), +(15667, 'McKeever & the Colonel', 'US', now()), +(15668, 'Mr. Smith Goes to Washington', 'US', now()), +(15669, 'Star Wars: The Legacy Revealed', 'US', now()), +(15670, 'The Family Holvak', 'US', now()), +(15671, 'The Winds of War', 'US', now()), +(15672, 'Comedy Factory', 'CA', now()), +(15673, 'Kodenavn Hunter', 'NO', now()), +(15674, 'Extra Extra', 'SE', now()), +(15675, 'Torpedo', 'NO', now()), +(15676, 'Heia Tufte', 'NO', now()), +(15677, 'Just Men!', 'US', now()), +(15678, 'How''s Your Mother-in-Law?', 'US', now()), +(15679, 'Hollywood House', 'US', now()), +(15680, 'The Hollywood Game', 'US', now()), +(15681, 'Crowned: The Mother of All Pageants', 'US', now()), +(15682, 'Food And Drink', 'UK', now()), +(15683, 'Hollywood Backstage', 'US', now()), +(15684, 'Hollywood Babylon', 'US', now()), +(15685, 'Hollywood and the Stars', 'US', now()), +(15686, 'Holiday Lodge', 'US', now()), +(15690, 'Just For Laughs', 'US', now()), +(15691, 'This Is the Life', 'US', now()), +(15692, 'Gibbsville', 'US', now()), +(21099, 'Talenwonders! In Italië', 'NL', now()), +(15694, 'NASCAR in Primetime', 'US', now()), +(15695, 'Set For Life', 'US', now()), +(15696, 'Fat March', 'US', now()), +(15698, 'The Steve Allen Show', 'US', now()), +(15699, 'The NBC Comedy Hour', 'US', now()), +(15700, 'Pop Dynasty', 'US', now()), +(15701, 'Yogi and a Movie', 'US', now()), +(15702, 'ESPN 25: Who''s #1?', 'US', now()), +(15703, 'CenterStage', 'US', now()), +(15704, 'The Name''s the Same', 'US', now()), +(15705, 'The Singing Bee', 'US', now()), +(15706, 'World Moves', 'US', now()), +(15707, 'The Daily Politics', 'UK', now()), +(15709, 'Treasury Men in Action', 'US', now()), +(15710, 'Big Shots', 'US', now()), +(15711, 'Carpoolers', 'US', now()), +(15712, 'The Investigator', 'US', now()), +(15713, 'Samantha Who?', 'US', now()), +(15714, 'Cavemen', 'US', now()), +(15715, 'Follow the Sun', 'US', now()), +(15716, 'Pushing Daisies', 'US', now()), +(15717, 'Dirty Sexy Money', 'US', now()), +(15718, 'Women''s Murder Club', 'US', now()), +(15719, 'Cashmere Mafia', 'US', now()), +(15720, 'The Seven Ages Of Rock', 'UK', now()), +(15721, 'Power To The People', 'UK', now()), +(15722, 'Paul Merton In China', 'UK', now()), +(15723, 'Andrew Marr''s A History Of Modern Britain', 'UK', now()), +(15724, 'Spaceflight', 'US', now()), +(21069, 'Tool Academy', 'US', now()), +(15727, 'Eli Stone', 'US', now()), +(15728, 'Miss/Guided', 'US', now()), +(15729, 'Celebrity Bowling', 'US', now()), +(15731, 'This Is Your Life (1983)', 'US', now()), +(15732, 'Oprah''s Big Give', 'US', now()), +(15734, 'The Christophers', 'US', now()), +(15735, 'In the Mix', 'US', now()), +(15736, 'Theatre 625', 'UK', now()), +(15737, 'The American Film Institute Salute to ...', 'US', now()), +(15738, 'AFI''s 100 Years 100 Movies', 'US', now()), +(18154, 'Lekár umierajúceho času', 'SK', now()), +(15740, 'Summer Playhouse', 'US', now()), +(15741, 'The Investigators (1961)', 'US', now()), +(21029, 'The Temptations', 'US', now()), +(21068, 'Treasure Quest', 'US', now()), +(15744, 'Reaper', 'US', now()), +(15745, 'New Amsterdam', 'US', now()), +(15746, 'Them (2009)', 'US', now()), +(15747, 'Area 52', 'US', now()), +(15748, 'Skip Tracer', 'US', now()), +(15749, 'Babylon Fields', 'US', now()), +(21063, 'The Tonight Show with Conan O''Brien', 'US', now()), +(15751, 'Cane', 'US', now()), +(15752, 'For Jenny with Love', 'US', now()), +(15753, 'Moonlight', 'US', now()), +(15754, 'Power of 10', 'US', now()), +(15755, 'Swingtown', 'US', now()), +(15756, 'The Dean Martin Comedy World', 'US', now()), +(15757, 'The Gertrude Berg Show', 'US', now()), +(15758, 'Viva Laughlin!', 'US', now()), +(15759, 'Aliens in America', 'US', now()), +(15760, 'CW Now', 'US', now()), +(15761, 'Online Nation', 'US', now()), +(15762, 'Life is Wild', 'US', now()), +(15763, 'Anchorwoman', 'US', now()), +(15764, 'Back to You', 'US', now()), +(21023, 'The Line', 'CA', now()), +(15766, 'This Is The Day', 'UK', now()), +(15767, 'Canterbury''s Law', 'US', now()), +(15768, 'This Week Next Week', 'UK', now()), +(15769, 'Kitchen Nightmares', 'US', now()), +(15770, 'Medallion Theatre', 'US', now()), +(15771, 'K-Ville', 'US', now()), +(15772, 'The Clock', 'US', now()), +(15773, 'The Jerry Lewis Show (1963)', 'US', now()), +(15774, 'The Chevrolet Tele-Theatre', 'US', now()), +(15775, 'The Return of Jezebel James', 'US', now()), +(21054, '24 uur met...', 'NL', now()), +(15777, 'Dateline: Hollywood', 'US', now()), +(15778, 'The Chevy Mystery Show', 'US', now()), +(15779, 'Mantrap', 'US', now()), +(15780, 'Sunday Showcase', 'US', now()), +(15781, 'It Was a Very Good Year', 'US', now()), +(21021, 'Locker Room', 'CA', now()), +(15783, 'Floor Show', 'CA', now()), +(15784, 'The Keefe Brasselle Show', 'US', now()), +(21020, 'Urban Rush', 'CA', now()), +(22360, 'Do It For the Band: Women of the Sunset Strip', 'US', now()), +(15787, 'Unhitched', 'US', now()), +(24653, 'Future Food', 'US', now()), +(15789, 'The Next Great American Band', 'US', now()), +(22358, 'Life After People: The Series', 'US', now()), +(15791, 'When Women Rule The World', 'US', now()), +(15792, 'Kid Nation', 'US', now()), +(21019, 'Street Eats', 'CA', now()), +(15794, 'Holiday Hotel', 'US', now()), +(15795, 'The Annual Comedy Hall of Fame', 'US', now()), +(21129, '25 Jahre RTL', 'DE', now()), +(15797, 'Holiday Handbook', 'US', now()), +(15798, 'Bloopy''s Buddies', 'US', now()), +(15799, 'Hold That Note', 'US', now()), +(22263, 'Blind Faith', 'US', now()), +(15801, 'Uncomfortably Close with Michael McKean', 'US', now()), +(15802, 'Hold That Camera', 'US', now()), +(21101, 'Movie Connections', 'UK', now()), +(15804, 'Hold It Please', 'US', now()), +(15805, 'The 1st 13th Annual Fancy Anvil Award Show Program Special... Liv', 'US', now()), +(21130, 'Caliente', 'US', now()), +(15807, 'Preview Tonight', 'US', now()), +(15808, 'Lord Peter Wimsey (1987)', 'UK', now()), +(15809, 'The Star and the Story', 'US', now()), +(15810, 'Celebrity Playhouse', 'US', now()), +(15811, 'Stage 7', 'US', now()), +(15812, 'Farmer Wants A Wife (US)', 'US', now()), +(15813, '12 Miles of Bad Road', 'US', now()), +(15814, 'And Here''s the Show', 'US', now()), +(15816, 'Linus! The Lion Hearted', 'US', now()), +(21085, 'Countertop to Table Cuisine', 'CA', now()), +(15818, 'Hot Dog', 'US', now()), +(21056, 'Topverkopers', 'NL', now()), +(15820, 'The Real Tom Kennedy Show', 'US', now()), +(15821, 'The Beautiful Phyllis Diller Show', 'US', now()), +(15822, 'Talent Scouts', 'US', now()), +(15824, 'Alice in Wonderland', 'US', now()), +(21024, 'The Summit', 'CA', now()), +(18362, 'Free Radio', 'US', now()), +(15828, 'Alice Through the Looking Glass', 'UK', now()), +(15829, 'The Family Game (US)', 'US', now()), +(22359, 'WWE Superstars', 'US', now()), +(15831, 'The Wish That Changed Christmas', 'US', now()), +(15832, 'The Bears Who Saved Christmas', 'US', now()), +(15833, 'Pumper Pups', 'CA', now()), +(15834, 'Katie and Orbie', 'CA', now()), +(15835, 'The Steve Allen Playhouse', 'US', now()), +(15836, 'Shaping Up', 'US', now()), +(15837, 'Twilight Theater', 'US', now()), +(15838, 'Stir Crazy', 'US', now()), +(15839, 'The Chisholms', 'US', now()), +(15840, 'Family', 'US', now()), +(21082, 'Paradise Lost', 'CA', now()), +(15842, 'The Jimmy Durante Show', 'US', now()), +(15843, 'History''s Strongest Disciple Kenichi', 'JP', now()), +(15844, 'Rena Rama Rolf', 'SE', now()), +(15845, 'Sarge', 'US', now()), +(21018, 'Gonger - Das Böse vergisst nie', 'DE', now()), +(15847, 'Monty Nash', 'US', now()), +(22583, 'Alles Draait Om Geld', 'NL', now()), +(15849, 'MGM: When the Lion Roars', 'US', now()), +(22081, 'The Essentials', 'US', now()), +(22080, 'Aguila Roja', 'ES', now()), +(15852, 'Michael Jackson: 30th Anniversary Celebration', 'US', now()), +(15853, 'The 100 Greatest Musicals', 'UK', now()), +(15854, 'The Islanders', 'US', now()), +(15855, 'Querida Concha', 'ES', now()), +(15856, 'Moment of Fear', 'US', now()), +(15857, 'Love Story (1954)', 'US', now()), +(15858, 'Short Short Dramas', 'US', now()), +(15859, 'Sure As Fate', 'US', now()), +(15860, 'The Trap', 'US', now()), +(15861, 'Stage 13', 'US', now()), +(15862, 'National Geographic Specials', 'US', now()), +(15863, 'Doris Day''s Best Friends', 'US', now()), +(21885, 'Spartacus: War of the Damned', 'US', now()), +(15865, 'Terry Wogan''s Friday Night', 'UK', now()), +(15866, 'Life and Times', 'CA', now()), +(15867, 'Tubridy Tonight', 'IE', now()), +(15868, 'Doctor*ology', 'CA', now()), +(15869, 'The West of the Imagination', 'US', now()), +(22079, 'The Law (2009)', 'US', now()), +(15872, 'Here We Go Again', 'US', now()), +(15873, 'Hippodrome', 'UK', now()), +(15874, 'Dobe and a Company of Heroes', 'US', now()), +(15875, 'High-Low', 'US', now()), +(15876, 'Vanished (1971)', 'US', now()), +(21087, 'Project Mom', 'CA', now()), +(15878, 'Benjamin Franklin', 'US', now()), +(21086, 'Project Dad', 'CA', now()), +(21909, 'Southern Belles', 'US', now()), +(15881, 'Highcliffe Manor', 'US', now()), +(21028, 'The Beach Boys: An American Family', 'US', now()), +(15883, 'The New Steve Allen Show', 'US', now()), +(15884, 'Sid Caesar Invites You', 'US', now()), +(15885, 'The Fifty-Fourth Street Revue', 'US', now()), +(15886, 'The Fashion Story', 'US', now()), +(15887, 'Good Morning, World', 'US', now()), +(15888, 'Bravo Profiles', 'US', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(15889, 'Turn Ben Stein On', 'US', now()), +(15890, 'Star Search (1983)', 'US', now()), +(15891, 'Cavalcade of Stars', 'US', now()), +(15892, 'The Celebrity Game (US)', 'US', now()), +(15893, 'Flowers for My Life', 'KR', now()), +(15894, 'The Eddie Capra Mysteries', 'US', now()), +(15895, 'Money’s Warfare', 'KR', now()), +(15896, 'Victim of Love', 'KR', now()), +(15897, 'The Mary-Daegu Bout', 'KR', now()), +(15898, 'Hazard Pay', 'US', now()), +(15899, 'Air City', 'KR', now()), +(15900, 'Nashville 99', 'US', now()), +(15901, 'Around Westminster', 'UK', now()), +(15902, 'These Are The Days', 'US', now()), +(21050, 'Van Rossem in Amerika', 'NL', now()), +(15904, 'Kentucky Jones', 'US', now()), +(21879, 'Heston''s Feasts', 'UK', now()), +(15906, 'The Amazing Mr. Malone', 'US', now()), +(21072, 'Wreckreation Nation', 'US', now()), +(21067, 'RelicQuest', 'US', now()), +(15909, 'Lincoln', 'US', now()), +(15910, 'What''s My Line? (1968)', 'US', now()), +(15911, 'Ookiku Furikabutte', 'JP', now()), +(15912, 'Princess Resurrection', 'JP', now()), +(15913, 'Lucky Star', 'JP', now()), +(15914, 'Lovely Complex', 'JP', now()), +(15915, 'Nashville (2007)', 'US', now()), +(15916, 'Music 55', 'US', now()), +(15917, 'The East At Westminster', 'UK', now()), +(15918, 'Love Thy Neighbor', 'US', now()), +(15919, 'The Spike Jones Show', 'US', now()), +(15920, 'Mot I Brøstet', 'NO', now()), +(15921, 'The Tony Bennett Show', 'US', now()), +(15922, 'Blue Mist', 'KR', now()), +(15923, 'Full of Sun', 'KR', now()), +(15924, 'Should My Tears Show', 'KR', now()), +(15925, 'The Twentieth Century', 'US', now()), +(15927, 'After The Catch', 'US', now()), +(15928, 'Paper Crane', 'KR', now()), +(15929, 'Stock Flower', 'KR', now()), +(15930, 'Tender Hearts', 'KR', now()), +(22029, 'Mental', 'US', now()), +(15933, 'Film Night', 'UK', now()), +(21707, 'Opsporing Verzocht', 'NL', now()), +(21049, 'Suzanne en de mannen', 'NL', now()), +(15936, 'The Academy (US)', 'US', now()), +(15937, 'VH1 Rock Honors', 'US', now()), +(15938, 'High Risk', 'US', now()), +(15939, 'High Performance', 'US', now()), +(15940, 'High Finance', 'US', now()), +(15941, 'High Adventure with Lowell Thomas', 'US', now()), +(15942, 'Brown Sugar', 'US', now()), +(15943, 'Hey, Jeannie!', 'US', now()), +(15944, 'This Is Your Life (2007)', 'UK', now()), +(15945, 'The Hero', 'US', now()), +(15946, 'The Herman Hickman Show', 'US', now()), +(15947, 'Heritage', 'US', now()), +(15948, 'Here''s Boomer', 'US', now()), +(15949, 'Here and Now (1961)', 'US', now()), +(15950, 'The Herb Shriner Show', 'US', now()), +(15951, 'At The Threshold Of An Era', 'HK', now()), +(15952, 'Henry Morgan''s Great Talent Hunt', 'US', now()), +(15953, 'The Henny and Rocky Show', 'US', now()), +(15954, 'The Eleventh Hour (UK)', 'UK', now()), +(15955, 'The Great British Village Show', 'UK', now()), +(15956, 'Time For Sport', 'UK', now()), +(15957, 'Big Brother: On The Couch', 'UK', now()), +(15958, 'How We Built Britain', 'UK', now()), +(15959, 'The Garry Moore Show', 'US', now()), +(15960, 'Miss Universe', 'US', now()), +(15961, 'Good Luck', 'JP', now()), +(15962, 'Age 35 Koishikute', 'JP', now()), +(15963, 'Ai Kotoba wa Yuki', 'JP', now()), +(15964, 'Ai to wa Keshite Koukai Shinaikoto', 'JP', now()), +(15965, 'Aiken Rosinante no Sainan ~ Mukai Ryuuta no Doubutsu Nikki', 'JP', now()), +(21065, 'Toughest Cowboy', 'US', now()), +(21066, 'Eddie Griffin: Going For Broke', 'US', now()), +(15968, 'An Evening with Lena Horne', 'US', now()), +(15970, 'Aikurushii', 'JP', now()), +(15971, 'Aisuru Tame ni Aisaretai', 'JP', now()), +(15972, 'Akujo', 'JP', now()), +(15973, 'Aijin no Okite', 'JP', now()), +(15974, 'Aitai Toki ni Anata wa Inai', 'JP', now()), +(15975, 'Payday', 'UK', now()), +(15976, 'Alsace no Aozora', 'JP', now()), +(15977, 'Anata no Jinsei Ohakobishimasu', 'JP', now()), +(15978, 'Ano Hi ni Kaeritai', 'JP', now()), +(15979, 'Asakusa Fukumaru Ryokan', 'JP', now()), +(15980, 'Amai Seikatsu', 'JP', now()), +(15981, 'Anata no Tonari ni Dare ga Iru', 'JP', now()), +(15982, 'Ashita ga Aru Kara', 'JP', now()), +(15983, 'Ari yo Saraba', 'JP', now()), +(15984, 'Anata Dake Mienai', 'JP', now()), +(15985, 'Anna-san no Omame', 'JP', now()), +(15986, 'Ashita wo Dakishimete', 'JP', now()), +(15987, 'Attack No.1 (2005)', 'JP', now()), +(15988, 'Attention Please', 'JP', now()), +(15989, 'Bambino!', 'JP', now()), +(15990, 'Bancha mo Debana', 'JP', now()), +(15991, 'Bengoshi no Kuzu', 'JP', now()), +(15992, 'Bodyguard (JP)', 'JP', now()), +(15993, 'Boku no Shushoku', 'JP', now()), +(15994, 'Brand', 'JP', now()), +(15995, 'Boku no Aruku Michi', 'JP', now()), +(15996, 'Reunited: The Real World', 'US', now()), +(15997, 'Border ~hanzai shinri sousatsu file~', 'JP', now()), +(15998, 'Botan to Bara', 'JP', now()), +(15999, 'Brother Beat', 'JP', now()), +(16000, 'Bokura no Yuuki ~miman toushi~', 'JP', now()), +(16001, 'Brothers (JP)', 'JP', now()), +(16002, 'Byakuyakou', 'JP', now()), +(16003, 'Busu no Hitomi Koishiteru', 'JP', now()), +(16004, 'CA to Oyobi', 'JP', now()), +(16005, 'Chansu!', 'JP', now()), +(16006, 'Coach (JP)', 'JP', now()), +(16007, 'Chuushingura 1/47', 'JP', now()), +(16008, 'Change!', 'JP', now()), +(16009, 'Cinderella wa Nemuranai', 'JP', now()), +(16010, 'Cupid no Itazura', 'JP', now()), +(16011, 'D&D', 'JP', now()), +(16012, 'Dandori', 'JP', now()), +(16013, 'Darenimo Ienai', 'JP', now()), +(16014, 'Dekabeya', 'JP', now()), +(16015, 'Apostrophes', 'FR', now()), +(16016, 'Dare Yori mo Mama wo Aisu', 'JP', now()), +(16017, 'Dakeshimetai', 'JP', now()), +(16018, 'Delicious Gakuin', 'JP', now()), +(16019, 'Densha Otoko', 'JP', now()), +(16020, 'Damenzu Walker', 'JP', now()), +(16021, 'Don''t worry!', 'JP', now()), +(16022, 'Doku', 'JP', now()), +(16023, 'Dobutsu no Oisha-san', 'JP', now()), +(16024, 'Dragon Zakura', 'JP', now()), +(16025, 'Dr Koto - Shinryoujo 2006', 'JP', now()), +(16026, 'Biyoushitsu', 'JP', now()), +(16027, 'Fuurin Kazan', 'JP', now()), +(16028, 'Eien no kimi he', 'JP', now()), +(16029, 'Eko Eko Azaraku', 'JP', now()), +(16030, 'Enka no Joou', 'JP', now()), +(16031, 'Egao no Hosoku', 'JP', now()), +(16032, 'Erai Tokoro ni Yomeide Shimatta!', 'JP', now()), +(16033, 'Eriito Yankii Saburo', 'JP', now()), +(16034, 'Fufudo', 'JP', now()), +(16035, 'Fukigen na Katsujitsu', 'JP', now()), +(16036, 'Fight', 'JP', now()), +(16037, 'Fukui-sanchi no Isansouzoku', 'JP', now()), +(16038, 'Fukaku Mogure', 'JP', now()), +(16039, 'Futago Tantei', 'JP', now()), +(16040, 'Futari no Shiso Gemu', 'JP', now()), +(16041, 'Fuyu no Rinbu', 'JP', now()), +(16042, 'Fushin no Toki', 'JP', now()), +(16043, 'Gentler than the Rain', 'JP', now()), +(16044, 'Gachi Baka !', 'JP', now()), +(16045, 'Gakkou e Ikkou', 'JP', now()), +(16046, 'Gimu to Engi', 'JP', now()), +(16047, 'Ganbatte Ikimasshoi', 'JP', now()), +(16048, 'Genroku Ryoran', 'JP', now()), +(16049, 'Ginrou Kaiki File', 'JP', now()), +(16050, 'Good Combination', 'JP', now()), +(16051, 'gyarusa', 'JP', now()), +(16052, 'Girls In The Wind', 'JP', now()), +(16053, 'Good Mourning', 'JP', now()), +(16054, 'Hagure Keiji ''97', 'JP', now()), +(16055, 'Haken no Hinkaku', 'JP', now()), +(16056, 'Hanayome to Papa', 'JP', now()), +(16057, 'Hagure Keiji ''99', 'JP', now()), +(16058, 'Hakoiri Musume!', 'JP', now()), +(16059, 'Hanayome wa 16-sai!', 'JP', now()), +(16060, 'Hagure Keiji Junjoha 16', 'JP', now()), +(16061, 'Hanayome wa Yakudoshi!', 'JP', now()), +(16062, 'Hagetaka', 'JP', now()), +(16063, 'Hakusen Nagashi~Yume Miro Goro Sugitemo', 'JP', now()), +(16064, 'Hanamura Daisuke', 'JP', now()), +(16065, 'Harmonia ~ kono ai no gai de ~', 'JP', now()), +(16066, 'Handsome Man', 'JP', now()), +(16067, 'Hashire Koumuin!', 'JP', now()), +(16069, 'Haru to Natsu', 'JP', now()), +(16070, 'Hatachi no Kekkon', 'JP', now()), +(16071, 'Hi no Ataru Basho', 'JP', now()), +(16072, 'Hitonatsu no Rabu Leta', 'JP', now()), +(16073, 'Himitsu no Hanazono', 'JP', now()), +(16074, 'Hito no Fukou wa Hachimitsu no Aji', 'JP', now()), +(16075, 'Hitori Gurashi', 'JP', now()), +(21083, 'Tank Overhaul', 'CA', now()), +(21081, 'Zembla', 'NL', now()), +(22082, 'Alan Whicker''s Journey Of A Lifetime', 'UK', now()), +(16079, 'Gero von Boehm begegnet...', 'DE', now()), +(16080, 'Berlin Mitte', 'DE', now()), +(16081, 'HBO First Look', 'US', now()), +(16082, 'Master Spy: The Robert Hanssen Story', 'US', now()), +(16083, 'The Universe', 'US', now()), +(16084, 'Honmamon', 'JP', now()), +(16085, 'hoteriaa', 'JP', now()), +(16086, 'Honto ni Atta Kowaiwa', 'JP', now()), +(16087, 'Hontou ni Atta Kowai Hanashi', 'JP', now()), +(16088, 'Hoshizora Hosupitaru', 'JP', now()), +(16089, 'Hot Dog (JP)', 'JP', now()), +(16090, 'Hotel Woman', 'JP', now()), +(16091, 'Hyakki Yakosho', 'JP', now()), +(16092, 'Hyouheki', 'JP', now()), +(16093, 'Ichiban Taisetsu na Hito', 'JP', now()), +(16094, 'Ichiban Taisetsu na Hito wa Dare Desu ka?', 'JP', now()), +(16095, 'Ima Ai ni Yukimasu', 'JP', now()), +(16096, 'Ienaki Ko', 'JP', now()), +(16097, 'Iryu', 'JP', now()), +(16098, 'I’m Home', 'JP', now()), +(16099, 'Itoko Doushi', 'JP', now()), +(16100, 'Itsumo Kokoro ni Taiyo o', 'JP', now()), +(16101, 'Itoshiki Mono e', 'JP', now()), +(16102, 'Jaja Uma Narashi', 'JP', now()), +(16103, 'Jikou Keisatsu', 'JP', now()), +(16104, 'Jodan Janai!', 'JP', now()), +(16105, 'Jinbe', 'JP', now()), +(16106, 'Jukunen Rikon', 'JP', now()), +(16107, 'Jigoku Shoujo', 'JP', now()), +(16108, 'Joi - Yu', 'JP', now()), +(16109, 'Jiiji~Mago to ita Natsu~', 'JP', now()), +(16110, 'Jitsuroku Oni Yome Nikki', 'JP', now()), +(16111, 'Kamisan Nanka Kowakunai', 'JP', now()), +(16112, 'Kage Juhachi', 'JP', now()), +(16113, 'Kaidan Hyaku Shosetsu', 'JP', now()), +(16114, 'Kagayake! Rintarou', 'JP', now()), +(16115, 'Kange! Danjiki Goikkosama', 'JP', now()), +(16116, 'Kasouken no Onna', 'JP', now()), +(16117, 'Karei naru Ichizoku', 'JP', now()), +(16118, 'Keishichou Sousa Ikka 9 Gakari', 'JP', now()), +(16119, 'Kaze no Haruka', 'JP', now()), +(16120, 'Kanta Desu!', 'JP', now()), +(16121, 'Kasai no Hito', 'JP', now()), +(16122, 'Kazoku-Tsuma Fuzai Oto no Sonzai', 'JP', now()), +(16123, 'Kawa, Itsuka Umi e', 'JP', now()), +(16124, 'Kegareta Shita', 'JP', now()), +(16125, 'Kare', 'JP', now()), +(16126, 'Keiyaku Kekkon', 'JP', now()), +(16127, 'Kekkon no Risou to Genjitsu', 'JP', now()), +(16128, 'Kiken na Aneki', 'JP', now()), +(16129, 'Kekkan Kazoku', 'JP', now()), +(16130, 'Kiken na Kankei', 'JP', now()), +(16131, 'Kekkon Dekinai Otoko', 'JP', now()), +(16132, 'Kemonomichi', 'JP', now()), +(16133, 'Kiken na Kankei (2005)', 'JP', now()), +(16134, 'Hell Town', 'US', now()), +(16135, 'The Helen O''Connell Show', 'US', now()), +(16136, 'Points Of View', 'UK', now()), +(16137, 'Britain''s Got Talent', 'UK', now()), +(16138, 'Kenshui Nanako', 'JP', now()), +(16139, 'Kimi ga Uso o Tsuita', 'JP', now()), +(16140, 'Kimi no Hitomi ni Koishiteru!', 'JP', now()), +(16141, 'Kindan no Kajitsu', 'JP', now()), +(16142, 'Kimi no Hitomi wo Taihosuru!', 'JP', now()), +(16143, 'Kimi wo Miagete', 'JP', now()), +(16144, 'Kimi no Tame ni Dekiru Koto', 'JP', now()), +(16145, 'Kimi to Ita Natsu', 'JP', now()), +(16146, 'Kinyoubi no Koibitotachi e', 'JP', now()), +(16147, 'Kimi o Omouyori Kimi ni Aitai', 'JP', now()), +(16148, 'Kirakira Kenshui', 'JP', now()), +(16149, 'Kobayakawa Nobuki no Koi', 'JP', now()), +(16150, 'Koi ga Shitai Koi ga Shitai Koi ga Shitai', 'JP', now()), +(16151, 'Koi mo ni Dome Nara', 'JP', now()), +(16152, 'Kizu Darake no Onna', 'JP', now()), +(16153, 'Kodoku no Kake', 'JP', now()), +(16154, 'Koi no Katamichi Kippu', 'JP', now()), +(16155, 'Kokoro', 'JP', now()), +(21030, 'The Jacksons: An American Dream', 'US', now()), +(16157, 'Carpocalypse', 'US', now()), +(16158, 'Koi no Chikara', 'JP', now()), +(16159, 'Koi no Kiseki', 'JP', now()), +(16160, 'Kokoro no Kudakeru Oto~Unmei no Onna', 'JP', now()), +(16161, 'Koi no Jikan', 'JP', now()), +(16162, 'Koi wa Aserazu', 'JP', now()), +(16163, 'Koibumi', 'JP', now()), +(16164, 'Kongai Renai', 'JP', now()), +(16165, 'Koi no Kamisama', 'JP', now()), +(16166, 'Koi no Tamerai', 'JP', now()), +(16167, 'Konna Watashi ni Dare ga Shita', 'JP', now()), +(16168, 'Konya wa Eigyouchu', 'JP', now()), +(16169, 'Konshu Tsuma ga Uwaki Shimasu', 'JP', now()), +(16170, 'Kono ai ni Ikite', 'JP', now()), +(16171, 'Konya Hitori no Beddo de', 'JP', now()), +(16172, 'Koori Tsuku Natsu', 'JP', now()), +(16173, 'Kono Mune no Tokimeki wo', 'JP', now()), +(16174, 'Koumei Ga Tsuji', 'JP', now()), +(16175, 'Kurosagi', 'JP', now()), +(17899, 'CBS Summer Playhouse', 'US', now()), +(16178, 'ABC News Reports', 'US', now()), +(16179, 'ALMA Awards', 'US', now()), +(16180, 'Talk To Me (UK)', 'UK', now()), +(16181, 'Making the Monkees', 'UK', now()), +(16182, 'Kurenai', 'JP', now()), +(16183, 'Kyukyu Hato Chiryoshitsu', 'JP', now()), +(16184, 'Labyrinth', 'JP', now()), +(16185, 'Last Serenade', 'JP', now()), +(16186, 'Lion Sensei', 'JP', now()), +(16187, 'Love Again', 'JP', now()), +(16188, 'Mamatte Kirei!?', 'JP', now()), +(16189, 'Machiben', 'JP', now()), +(16190, 'Makasete Darling', 'JP', now()), +(16191, 'Mama no Idenshi', 'JP', now()), +(16192, 'Mada Koi wa Hajimaranai', 'JP', now()), +(16193, 'Maikosan wa Meitantei!', 'JP', now()), +(16194, 'Mama wa Joisan', 'JP', now()), +(16195, 'Manten', 'JP', now()), +(16196, 'Mariya', 'JP', now()), +(16197, 'Marriageable Age', 'JP', now()), +(16198, 'Melody', 'JP', now()), +(16199, 'Memory of Love', 'JP', now()), +(16200, 'Minna Mukashi wa Kodomo Datta', 'JP', now()), +(16201, 'Miss Diamond', 'JP', now()), +(16202, 'Mou Gaman Dekinai!', 'JP', now()), +(16203, 'Mukashi no Otoko', 'JP', now()), +(16204, 'Moto Kare', 'JP', now()), +(16205, 'Motto Koi Seyo Otome', 'JP', now()), +(16206, 'Heaven for Betsy', 'US', now()), +(16207, 'Mouichido Kisu', 'JP', now()), +(16208, 'Mona Lisa no Hohoemi', 'JP', now()), +(16209, 'Hearts Are Wild', 'US', now()), +(16210, 'Mouri Motonari', 'JP', now()), +(16211, 'Musashi (2003)', 'JP', now()), +(16212, 'Heartland (1989)', 'US', now()), +(16213, 'My Boss, My Hero', 'JP', now()), +(16214, 'Mystery Minzoku Gakusha Yakumo Itsuki', 'JP', now()), +(16215, 'Nagaru Onna', 'JP', now()), +(16216, 'Nanisama!', 'JP', now()), +(16217, 'Naomi', 'JP', now()), +(16218, 'Natsuko no Sake', 'JP', now()), +(16219, 'Namida o Fuite', 'JP', now()), +(16220, 'Namiki-ie no Hitobito', 'JP', now()), +(16221, 'Nebaru Onna', 'JP', now()), +(16222, 'Natsu! Depart Monogatari', 'JP', now()), +(16223, 'Nikushimi ni Hohoende', 'JP', now()), +(16224, 'Ninshin Desuyo', 'JP', now()), +(16225, 'Ns'' Aoi', 'JP', now()), +(16226, 'Nisennen no Koi', 'JP', now()), +(16227, 'Nobuta wo Produce', 'JP', now()), +(16228, 'Nodame Cantabile', 'JP', now()), +(16229, 'Okuman Chouja to Kekkon Suru Houhou', 'JP', now()), +(16230, 'Omiai kekkon', 'JP', now()), +(16231, 'Omiyasan', 'JP', now()), +(16232, 'Ocha no Ma', 'JP', now()), +(16233, 'Omizu no Hanamichi', 'JP', now()), +(16234, 'Okane ga Nai!', 'JP', now()), +(16235, 'Onichan no Sentaku', 'JP', now()), +(16236, 'Ooku Dai-ishou', 'JP', now()), +(16237, 'Order Made ~Shiawase Iro no Shinshi Fuku Mise~', 'JP', now()), +(16238, 'Otoko Girai', 'JP', now()), +(16239, 'Oshigoto Desu!', 'JP', now()), +(16240, 'Otoko no Ibasho', 'JP', now()), +(16241, 'Otona no Natsu Yasumi', 'JP', now()), +(16242, 'Out ~ Tsumatachi no Hanzai', 'JP', now()), +(16243, 'Ranch Party', 'US', now()), +(16244, 'Papa Survival', 'JP', now()), +(16245, 'Primadam', 'JP', now()), +(16246, 'National Open House', 'US', now()), +(16247, 'Diners, Drive-Ins and Dives', 'US', now()), +(16248, 'Big Medicine', 'US', now()), +(16249, 'So You Think You''re Royal?', 'UK', now()), +(16250, 'So You Think You''re Safe', 'UK', now()), +(16251, 'BBC Breakfast', 'UK', now()), +(16252, 'Princess Princess D', 'JP', now()), +(16253, 'P.S. [Police Station] -Rashoumon- Keishichou Toutosho', 'JP', now()), +(16254, 'Papa Kakkotsukanaize', 'JP', now()), +(16255, 'Proposal Daisakusen', 'JP', now()), +(16256, 'Rasetsu no Ie', 'JP', now()), +(16257, 'raiaa geemu', 'JP', now()), +(16258, 'rinbukyoku', 'JP', now()), +(16259, 'Red', 'JP', now()), +(16260, 'Rennai Kekkon no Housoku', 'JP', now()), +(16261, 'Regatta', 'JP', now()), +(16262, 'Ryakudatsu Ai ~ Abunai Onna', 'JP', now()), +(16263, 'Roomshare no Onna', 'JP', now()), +(16264, 'Sakura', 'JP', now()), +(16265, 'Ryoma ni Omakase', 'JP', now()), +(16266, 'Rocket Boy', 'JP', now()), +(16267, 'Romance (JP)', 'JP', now()), +(16268, 'Ryuuten no Ouhi - Saigo no Koutei', 'JP', now()), +(16269, 'Sa-shi-su-se-so!?', 'JP', now()), +(16270, 'Saigo no Chuushingura', 'JP', now()), +(16271, 'Saotome Typhoon', 'JP', now()), +(16272, 'Saigo no Kazoku', 'JP', now()), +(16273, 'Sanshimai Tanteiban', 'JP', now()), +(16274, 'Sapuri', 'JP', now()), +(16275, 'Satorare', 'JP', now()), +(16276, 'Seiji no Mikata', 'JP', now()), +(16277, 'Seishu Hanaoka no Tsuma', 'JP', now()), +(16278, 'Seikei Bijin', 'JP', now()), +(16279, 'Oshin', 'JP', now()), +(16280, 'ABC Album', 'US', now()), +(16281, 'ABC Television Players', 'US', now()), +(16282, 'Decorating Cents', 'US', now()), +(16283, 'Spice Up My Kitchen', 'US', now()), +(16284, 'Tough Gig', 'UK', now()), +(16285, 'Seishun no Kage', 'JP', now()), +(16286, 'Sashow Taeko Saigo no Jiken', 'JP', now()), +(16287, 'School Wars', 'JP', now()), +(16288, 'Seigi wa Katsu', 'JP', now()), +(16289, 'Seito Shokun!', 'JP', now()), +(16290, 'Seiryuu Densetsu', 'JP', now()), +(16291, 'Sekai de Ichiban Kimi ga Suki', 'JP', now()), +(16292, 'Sekushii Boisu Ando Robo', 'JP', now()), +(16293, 'Shabon Dama', 'JP', now()), +(16294, 'Sekai de Ichiban Papa ga Suki', 'JP', now()), +(16295, 'Semi-double', 'JP', now()), +(16296, 'Shiawase ni Naritai', 'JP', now()), +(16297, 'Serafuku to Kikanjyu', 'JP', now()), +(16298, 'Shimokita GLORY DAYS', 'JP', now()), +(16299, 'sengoku Jieitai', 'JP', now()), +(16300, 'Shimokita Sundays', 'JP', now()), +(16301, 'Shin D.', 'JP', now()), +(16302, 'Shin Omizu no Hanamichi', 'JP', now()), +(16303, 'Shininin no Onna Bengoshi', 'JP', now()), +(16304, 'Shinkon Nari!', 'JP', now()), +(16305, 'Shin Hoshi no Kinka', 'JP', now()), +(16306, 'Shin Oretachi no Tabi', 'JP', now()), +(16307, 'Shinryounaikai Ryouko', 'JP', now()), +(16308, 'Shin Yonige-ya Honpo', 'JP', now()), +(16309, 'Shinkansen 97 Koi Monogatari', 'JP', now()), +(16310, 'Shinsengumi', 'JP', now()), +(16311, 'Shinai Naru Mono e', 'JP', now()), +(16312, 'Shiroi Kyoto', 'JP', now()), +(16313, 'Shokuinshitsu', 'JP', now()), +(16314, 'Shouri no Megami', 'JP', now()), +(16315, 'Somurie', 'JP', now()), +(16316, 'Shizuka Naru Don', 'JP', now()), +(16317, 'Shoushimin Kane', 'JP', now()), +(16318, 'Slow Dance', 'JP', now()), +(16319, 'Sono Otoko, Fuku-Shochou', 'JP', now()), +(16320, 'Suekko Chounan Ane San Nin', 'JP', now()), +(16321, 'Sonouchi Kekkon Suru Kimi e', 'JP', now()), +(16322, 'Souri to Yobanai de', 'JP', now()), +(16323, 'Station', 'JP', now()), +(16324, 'Subarashiki Kazoku Ryokou', 'JP', now()), +(16325, 'Suteki na Kataomoi', 'JP', now()), +(16326, 'Suna no Ue no Koibitotachi', 'JP', now()), +(16327, 'Most Shocking', 'US', now()), +(16328, 'Sutouka Sasou Onna', 'JP', now()), +(16329, 'Team Saiaku de Saikouna Futari', 'JP', now()), +(16330, 'Tadaima Manshitsu', 'JP', now()), +(16331, 'Taiyo no Kisetsu', 'JP', now()), +(16332, 'Tengoku no Kiss', 'JP', now()), +(16333, 'Taiho Shichauzo', 'JP', now()), +(16334, 'Taiyou no Uta', 'JP', now()), +(16335, 'Tatta Hitotsu no Koi', 'JP', now()), +(16336, 'Tiger & Dragon', 'JP', now()), +(16337, 'Teppen', 'JP', now()), +(16338, 'Toki o Kakeru Shojo', 'JP', now()), +(16339, 'Teru Teru Ashita', 'JP', now()), +(16340, 'To Heart ~ Koishite Shinitai', 'JP', now()), +(16341, 'Teru Teru Kazoku', 'JP', now()), +(16342, 'Toi Shinseki Chikaku no Tanin?', 'JP', now()), +(16343, 'Tokugawa Yoshinobu', 'JP', now()), +(16344, 'Tokumei! Keiji Dongame', 'JP', now()), +(16345, 'Down You Go', 'US', now()), +(16346, '5ive Days to Midnight', 'US', now()), +(16347, 'Salvage Squad', 'UK', now()), +(16348, '1,000 Places To See Before You Die', 'US', now()), +(16349, 'Payback', 'US', now()), +(16350, 'Landscapers'' Challenge', 'US', now()), +(16351, 'A Lyon In The Kitchen', 'US', now()), +(16352, 'Pebble Mill At One', 'UK', now()), +(16353, 'Kilroy (UK)', 'UK', now()), +(16354, 'The Headmaster (US)', 'US', now()), +(16355, 'Headliners with David Frost', 'US', now()), +(16356, 'Mad Men', 'US', now()), +(16357, 'Butterfingers', 'UK', now()), +(16358, 'Born Country', 'US', now()), +(16359, 'Prankville', 'US', now()), +(16360, 'Bandits vs. Smokies', 'US', now()), +(16361, 'Edge Of Existence', 'US', now()), +(16362, 'Curb Appeal', 'US', now()), +(16363, 'Bet the House', 'US', now()), +(16364, 'Samantha Brown: Passport To Latin America', 'US', now()), +(16365, 'Tokyo Tower', 'JP', now()), +(16366, 'Top Caster', 'JP', now()), +(16368, 'Tokyo Wankei', 'JP', now()), +(16369, 'Toyama no Kinsan vs Onna Nezumi', 'JP', now()), +(16370, 'Tsuki no Kagayaku Yoru Dakara', 'JP', now()), +(16371, 'Tsubasa wo Kudasai!', 'JP', now()), +(16372, 'Tsuma no Sotsugyoushiki', 'JP', now()), +(16373, 'Hazel Scott', 'US', now()), +(16374, 'Transformers: Animated', 'US', now()), +(16375, 'Haywire (US)', 'US', now()), +(16376, 'Travelog of Naked Artist', 'JP', now()), +(16377, 'Tsugumi e...', 'JP', now()), +(16378, 'Tsumatachi no Kagai Jugyo', 'JP', now()), +(16379, 'Uchi ni Oideyo', 'JP', now()), +(16380, 'Ue o Muite Arukou!', 'JP', now()), +(16381, 'Umizaru', 'JP', now()), +(16382, 'Backyard Nation', 'US', now()), +(16383, 'Band In A Bubble', 'US', now()), +(16384, 'Ushinawareta Yakusoku', 'JP', now()), +(16385, 'Unfair', 'JP', now()), +(16386, 'Vingt-cinq ans ~marriage~', 'JP', now()), +(16387, 'Wakaba', 'JP', now()), +(16388, 'Warui Yatsura', 'JP', now()), +(16389, 'Watashitte Busu Dattano?', 'JP', now()), +(16390, 'Hayloft Hoedown', 'US', now()), +(16391, 'Hawkins Falls', 'US', now()), +(16392, 'Uncle Dad', 'UK', now()), +(16445, 'Bought & Sold', 'US', now()), +(16394, 'Building the Future', 'US', now()), +(16395, 'Watashi, Mikata Desu', 'JP', now()), +(16396, 'Wakaresaseya', 'JP', now()), +(16397, 'Watashi no Aozura', 'JP', now()), +(16398, 'Watashitachi no Kyokasho', 'JP', now()), +(16399, 'We''re Rookie Cops', 'JP', now()), +(16400, 'Women Don''t Live for Men', 'JP', now()), +(16401, 'Zoku Heisei Meoto Jawan', 'JP', now()), +(16402, 'Yagamikun no Katei no Jijou', 'JP', now()), +(16403, 'Yaoh', 'JP', now()), +(16404, 'Yonigeya Honpo', 'JP', now()), +(16405, 'Yakusha Damashii', 'JP', now()), +(16406, 'Yokohama Shinju', 'JP', now()), +(16407, 'Yoru ni Dakarete', 'JP', now()), +(16408, 'Yume no California', 'JP', now()), +(16409, 'Yuzurenai Yoru', 'JP', now()), +(16410, 'Yumemiru Budou', 'JP', now()), +(16411, 'Having Babies', 'US', now()), +(16412, 'Oil, Sweat and Rigs', 'US', now()), +(16413, 'It''s Me Or The Dog (US)', 'US', now()), +(16414, 'Buy Me', 'CA', now()), +(16415, 'Golden Balls', 'UK', now()), +(16416, 'Yume de Aimashou', 'JP', now()), +(16417, 'Yureru Omoi', 'JP', now()), +(16418, 'Sound Check', 'US', now()), +(16419, 'Fight Girls', 'US', now()), +(16420, 'Bad Girls Road Trip', 'US', now()), +(16421, 'Cold Blood', 'UK', now()), +(16422, 'Hollywood Lives', 'UK', now()), +(16423, 'The Lost World Of The Raj', 'UK', now()), +(16424, 'Would I Lie To You?', 'UK', now()), +(16425, 'Peter And Dan Snow: 20th Century Battlefields', 'UK', now()), +(16426, 'The Antiques Show', 'UK', now()), +(16427, 'Get Out, Way Out!', 'US', now()), +(16428, 'Unique Whips', 'US', now()), +(16429, 'Families At War (UK)', 'UK', now()), +(16430, '101 Most Embarrassing Moments in Entertainment', 'UK', now()), +(16431, 'Britain''s Got More Talent', 'UK', now()), +(16432, 'GREEK', 'US', now()), +(22396, 'The Prisoner (2009)', 'US', now()), +(16434, 'The Kids Are In Charge: Family Vacation', 'US', now()), +(16435, 'Speeders', 'US', now()), +(16436, 'Бункер, или Учёные под землёй', 'RU', now()), +(16437, 'Бедная Настя', 'RU', now()), +(16438, 'Saint-Tropez Games', 'eu', now()), +(16439, 'Ералаш', 'RU', now()), +(16440, 'Jeux Sans Frontières', 'eu', now()), +(16441, 'The Daytime Emmy Awards', 'US', now()), +(16444, 'Confessions of a Matchmaker', 'US', now()), +(16446, 'Angels in America', 'US', now()), +(16447, 'Weaponology', 'US', now()), +(16448, 'Making the Band 4', 'US', now()), +(16449, 'Arabela', 'CZ', now()), +(16450, 'Hraběnky', 'CZ', now()), +(16451, 'Místo nahoře', 'CZ', now()), +(16452, 'Dobrá čtvrť', 'CZ', now()), +(16453, 'Arabela se vrací', 'CZ', now()), +(16454, 'Bazén', 'CZ', now()), +(16456, 'No Place Like Home?', 'UK', now()), +(16457, 'Tycoon', 'UK', now()), +(16458, 'Bubu a Filip', 'CZ', now()), +(16459, 'Byl jednou jeden dům', 'CZ', now()), +(16460, 'Byli jednou dva písaři', 'CZ', now()), +(16461, 'Critical Situation', 'US', now()), +(16462, 'Bylo nás pět', 'CZ', now()), +(16463, 'Bylo nás šest', 'CZ', now()), +(16464, 'Černí baroni', 'CZ', now()), +(16465, 'Dobrá voda', 'CZ', now()), +(16466, 'Draculův švagr', 'CZ', now()), +(16467, 'Hey Paula', 'US', now()), +(16468, 'Duch český', 'CZ', now()), +(16469, 'To byl...', 'CZ', now()), +(16470, 'Edisoni', 'CZ', now()), +(16471, 'Ice Road Truckers', 'US', now()), +(16472, 'Hop nebo trop', 'CZ', now()), +(16473, 'Josef Laufer - Natvrdo', 'CZ', now()), +(16474, 'Kde padají hvězdy', 'CZ', now()), +(16475, 'Když se slunci nedaří', 'CZ', now()), +(16476, 'Konec velkých prázdnin', 'CZ', now()), +(16477, 'Křeček v noční košili', 'CZ', now()), +(16478, 'Hip Hap Hop', 'CZ', now()), +(16479, 'Létající Čestmír', 'CZ', now()), +(16480, 'Medvědi nic nevědí', 'CZ', now()), +(16481, 'My všichni školou povinní', 'CZ', now()), +(16482, 'Don''t Forget The Lyrics!', 'US', now()), +(16483, 'My z konce světa', 'CZ', now()), +(16484, 'Místo v životě', 'CZ', now()), +(16485, 'Na lavici obžalovaných justice', 'CZ', now()), +(16486, 'Náhrdelník', 'CZ', now()), +(16487, 'eXtravýzva', 'CZ', now()), +(16488, 'Oáza', 'CZ', now()), +(16489, 'Zavináč', 'CZ', now()), +(16490, 'Největší z Pierotů', 'CZ', now()), +(16491, 'Nemocnice na kraji města', 'CZ', now()), +(16492, 'Zavináč on-line', 'CZ', now()), +(16493, 'Nemocnice na kraji města po dvaceti letech', 'CZ', now()), +(16494, 'Nemocnice na kraji města ...nové osudy', 'CZ', now()), +(16495, 'I Bet You', 'US', now()), +(16496, 'Dr. Steve-O', 'US', now()), +(16497, 'O ztracené lásce', 'CZ', now()), +(16498, 'Poslední sezona', 'CZ', now()), +(16499, 'Pra Pra Pra?', 'CZ', now()), +(16500, 'Incantesimo', 'IT', now()), +(16501, 'Pat a Mat', 'CZ', now()), +(16502, 'The Most Deadly Game', 'US', now()), +(16503, 'I''ve Got Nothing To Wear', 'US', now()), +(16504, 'Přátelé zeleného údolí', 'CZ', now()), +(16505, 'Prima sezóna', 'CZ', now()), +(16506, 'Případy detektivní kanceláře Ostrozrak', 'CZ', now()), +(16507, 'Přítelkyně z domu smutku', 'CZ', now()), +(16508, 'Přízraky mezi námi', 'CZ', now()), +(16509, 'Okavango', 'US', now()), +(16510, 'Proč bychom se netopili', 'CZ', now()), +(16511, 'Ranč U Zelené sedmy', 'CZ', now()), +(16512, 'Redakce', 'CZ', now()), +(16513, 'Rodinná pouta', 'CZ', now()), +(16514, 'Sanitka', 'CZ', now()), +(16515, 'Slovácko sa nesúdí', 'CZ', now()), +(16516, 'Sňatky z rozumu', 'CZ', now()), +(16517, 'Strašidla a spol.', 'CZ', now()), +(16518, 'Strážce duší', 'CZ', now()), +(16519, 'Stříbrná paruka', 'CZ', now()), +(16520, 'Paulas Sommer', 'DE', now()), +(16521, 'Wetten, dass..?', 'DE', now()), +(16522, 'The States', 'US', now()), +(16523, 'Giada In Paradise', 'US', now()), +(16524, '5 Takes: Latin America', 'US', now()), +(16525, 'La que se avecina', 'ES', now()), +(16526, 'Für alle Fälle Stefanie', 'DE', now()), +(16527, 'Stefanie – Eine Frau startet durch', 'DE', now()), +(16528, 'Tajemství proutěného košíku', 'CZ', now()), +(16529, 'Taková normální rodinka', 'CZ', now()), +(16530, 'To jsem z toho jelen', 'CZ', now()), +(16531, 'Třetí patro', 'CZ', now()), +(16532, 'Třicet případů majora Zemana', 'CZ', now()), +(16533, 'Vlak dětství a naděje', 'CZ', now()), +(16534, 'Wild Rescues', 'US', now()), +(16535, 'Záchranáři', 'CZ', now()), +(16536, 'Zdivočelá země', 'CZ', now()), +(16537, 'Zlá krev', 'CZ', now()), +(16538, 'Život na zámku', 'CZ', now()), +(16539, 'Wayside', 'US', now()), +(16540, 'A.S.', 'DE', now()), +(16541, 'Watchdog Value For Money', 'UK', now()), +(16542, 'Alif Noon', 'PK', now()), +(16543, 'Hospoda', 'CZ', now()), +(16544, 'Popularis', 'CZ', now()), +(16545, 'Nováci', 'CZ', now()), +(16546, '60', 'CZ', now()), +(16547, 'i-Caught', 'US', now()), +(16548, 'Animal Battlegrounds', 'US', now()), +(16549, 'Alpha Bravo Charlie', 'PK', now()), +(16550, 'VyVolení', 'CZ', now()), +(16551, 'The Big Day', 'UK', now()), +(16552, 'Air Emergency', 'US', now()), +(16553, 'Šípková Růženka', 'CZ', now()), +(16555, 'Rock Concert', 'US', now()), +(16556, 'L.A. Forensics', 'US', now()), +(16557, 'Generation Xcess', 'UK', now()), +(16558, 'Boneyard', 'US', now()), +(16559, 'Yippee Ki-Yay MF', 'SE', now()), +(16560, 'Alles was zählt', 'DE', now()), +(16561, 'Verliebt in Berlin', 'DE', now()), +(16562, 'The Bronx is Burning', 'US', now()), +(16563, 'Un paso adelante', 'ES', now()), +(16564, 'Sing It Back: Lyric Champion 2007', 'UK', now()), +(16565, 'Parkinson''s All-Time Greatest Entertainers', 'UK', now()), +(16566, 'That''s What I Call Television', 'UK', now()), +(16567, 'I Hate My 30''s', 'US', now()), +(16568, 'I Propose', 'US', now()), +(16569, 'News Knight With Sir Trevor MacDonald', 'UK', now()), +(16570, 'Dickinson''s Celebrity Deals', 'UK', now()), +(16571, 'Divorce Wars', 'US', now()), +(16572, 'Eight Days A Week', 'US', now()), +(17301, 'Pangako Sa ''Yo', 'PH', now()), +(16574, 'Wanna Bet?', 'US', now()), +(16575, 'Rad Girls', 'US', now()), +(16576, 'U nás v Evropě', 'CZ', now()), +(16577, 'Jsi chytřejší než páťák?', 'CZ', now()), +(16578, 'James May''s 20th Century', 'UK', now()), +(16579, 'Ste chytrejší ako piatak?', 'SK', now()), +(16580, 'Katie & Peter: The Baby Diaries', 'UK', now()), +(16586, 'Un paso adelante (FR)', 'ES', now()), +(16587, 'Bringing Up Buddy', 'US', now()), +(16588, 'Dante', 'US', now()), +(16589, 'My Sister Eileen', 'US', now()), +(16590, 'Angel (1960)', 'US', now()), +(16591, 'Harrigan & Son', 'US', now()), +(16592, 'Dan Raven', 'US', now()), +(16593, 'Sea Patrol', 'AU', now()), +(16594, 'It''s All Geek To Me', 'US', now()), +(16595, 'Kick', 'AU', now()), +(16596, 'Love and Marriage (1959)', 'US', now()), +(16597, 'Mr. Garlund', 'US', now()), +(16598, 'Markham', 'US', now()), +(16599, 'Get It Together (2007)', 'US', now()), +(16600, 'The Eve Arden Show', 'US', now()), +(16601, 'America''s Next Producer', 'US', now()), +(16602, 'The Fitzpatricks', 'US', now()), +(16603, 'Mulligan''s Stew', 'US', now()), +(16604, 'Better Half', 'US', now()), +(16605, 'The Fabulous Life Presents: My Big Fat Fabulous Wedding', 'US', now()), +(16606, 'Flipping Out', 'US', now()), +(16607, 'Annie McGuire', 'US', now()), +(16608, 'At Ease', 'US', now()), +(16609, 'Mind Control with Derren Brown', 'US', now()), +(16610, 'Mission: Man Band', 'US', now()), +(16611, 'Murder', 'US', now()), +(16612, 'Live Earth', 'wd', now()), +(16613, 'Room 401', 'US', now()), +(16614, 'Das weiß doch jedes Kind!', 'DE', now()), +(16615, 'Verbotene Liebe', 'DE', now()), +(16616, 'Hilfe Hochzeit! - Die schlimmste Woche meines Lebens', 'DE', now()), +(16617, 'Dance X', 'UK', now()), +(16618, 'Rock of Love', 'US', now()), +(16619, 'Scott Baio is 46...and Pregnant', 'US', now()), +(16620, 'Suburban Virgin', 'US', now()), +(16621, 'Doktor Martin', 'DE', now()), +(16622, 'Gute Zeiten, schlechte Zeiten', 'DE', now()), +(16623, 'Stromberg', 'DE', now()), +(16624, 'Dr. Psycho', 'DE', now()), +(16625, 'Nikola', 'DE', now()), +(16626, 'The Two Coreys', 'US', now()), +(16627, 'Welcome to the Parker', 'US', now()), +(16628, 'Welcome to The Captain', 'US', now()), +(16629, 'Og Nå Reklame', 'NO', now()), +(16630, 'Der Fürst und das Mädchen', 'DE', now()), +(16631, 'Ramsay''s Boiling Point', 'UK', now()), +(16632, 'Notruf Hafenkante', 'DE', now()), +(16633, 'Fight For Life', 'UK', now()), +(16634, 'The Tower', 'UK', now()), +(16635, 'The Slap Maxwell Story', 'US', now()), +(16638, 'Window on Main Street', 'US', now()), +(16639, 'Ichabod and Me', 'US', now()), +(16640, 'Margie', 'US', now()), +(16641, 'General Electric True', 'US', now()), +(16642, 'Ensign O''Toole', 'US', now()), +(16643, 'Don''t Call Me Charlie', 'US', now()), +(16645, 'Tom, Dick and Mary', 'US', now()), +(16646, 'World War One', 'US', now()), +(16647, 'Mickey', 'US', now()), +(16648, 'Valentine''s Day', 'US', now()), +(16649, 'Allsang på Grensen', 'NO', now()), +(16650, 'Landeplage', 'NO', now()), +(16651, 'Total Request Live (DE)', 'DE', now()), +(16652, 'Alles außer Sex', 'DE', now()), +(16653, 'Schillerstraße', 'DE', now()), +(16654, 'Bis in die Spitzen', 'DE', now()), +(16655, 'The John Forsythe Show', 'US', now()), +(16656, 'Mona McCluskey', 'US', now()), +(16657, 'Tammy', 'US', now()), +(16658, 'The Tammy Grimes Show', 'US', now()), +(16659, 'The Jean Arthur Show', 'US', now()), +(16660, 'The Circuit', 'AU', now()), +(16661, 'Off to See the Wizard', 'US', now()), +(16662, 'Maya', 'US', now()), +(16663, 'The Ugliest Girl in Town', 'US', now()), +(16664, 'To Rome With Love', 'US', now()), +(16665, 'Mr. Deeds Goes to Town', 'US', now()), +(16666, 'The Silent Force', 'US', now()), +(16667, 'Storefront Lawyers', 'US', now()), +(16668, 'The Funny Side (US)', 'US', now()), +(16669, 'The Smith Family', 'US', now()), +(16670, 'The Man and the City', 'US', now()), +(16671, 'The Chicago Teddy Bears', 'US', now()), +(16672, 'Getting Together', 'US', now()), +(16673, 'The Good Life (1971)', 'US', now()), +(16674, 'The Brian Keith Show', 'US', now()), +(16675, 'Diana', 'US', now()), +(16676, 'Needles and Pins', 'US', now()), +(16677, 'Born Free', 'US', now()), +(16678, 'Sons and Daughters (1974)', 'US', now()), +(16679, 'Sierra', 'US', now()), +(16680, 'The Texas Wheelers', 'US', now()), +(16681, 'Joe and Sons', 'US', now()), +(16682, 'Joe Forrester', 'US', now()), +(16683, 'Doctors'' Hospital', 'US', now()), +(16684, 'Kate McShane', 'US', now()), +(16685, 'On the Rocks (US)', 'US', now()), +(16686, 'The Montefuscos', 'US', now()), +(16687, 'Fay', 'US', now()), +(16688, 'The Practice (1976)', 'US', now()), +(16689, 'Busting Loose', 'US', now()), +(16690, 'Sugar Time!', 'US', now()), +(16691, 'Win My Wage', 'UK', now()), +(16693, 'Balls of Steel', 'UK', now()), +(16694, 'The Julekalender', 'NO', now()), +(16695, 'Tilbake Til 80 Tallet', 'NO', now()), +(16696, 'To Hus Tett i Tett', 'NO', now()), +(16697, '71 Grader Nord', 'NO', now()), +(16698, 'Guarding The Queen', 'UK', now()), +(16699, 'Harris and Company', 'US', now()), +(16700, 'Into Alaska With Jeff Corwin', 'US', now()), +(16701, 'Build It Bigger', 'US', now()), +(16702, 'Tic Tac', 'CL', now()), +(16703, 'Tout le monde en parle', 'FR', now()), +(16704, 'Acoso textual', 'CL', now()), +(16705, 'The Lazarus Syndrome', 'US', now()), +(16706, 'The Last Resort (1979)', 'US', now()), +(16707, 'Struck by Lightning', 'US', now()), +(16708, 'The McLean Stevenson Show', 'US', now()), +(16709, 'Sirota''s Court', 'US', now()), +(16710, 'Tales of the 77th Bengal Lancers', 'US', now()), +(16711, 'Stanley (1956)', 'US', now()), +(16712, 'Wire Service', 'US', now()), +(16713, 'Shark Week', 'US', now()), +(16714, 'I''m a Big Girl Now', 'US', now()), +(16715, 'Freebie and the Bean', 'US', now()), +(16716, 'Secrets of Midland Heights', 'US', now()), +(16717, 'Two of Us', 'US', now()), +(16718, 'Open All Night', 'US', now()), +(16719, 'Fitz and Bones', 'US', now()), +(16720, 'Szysznyk', 'US', now()), +(16721, 'Berulfsens Fargerike', 'NO', now()), +(16722, 'Hit Og Dit', 'NO', now()), +(16723, 'George Burns Comedy Week', 'US', now()), +(16724, 'The Devlin Connection', 'US', now()), +(16725, 'The Four Seasons', 'US', now()), +(16726, 'Empire (1984)', 'US', now()), +(16727, 'Mama Malone', 'US', now()), +(16728, 'Trauma Center', 'US', now()), +(16729, 'It''s Not Easy', 'US', now()), +(16730, 'Mr. Smith', 'US', now()), +(16731, 'For Love and Honor', 'US', now()), +(16732, 'Easy Street', 'US', now()), +(16733, 'Avvocato, L', 'CH', now()), +(16734, 'Kay O''Brien', 'US', now()), +(16735, 'Buck James', 'US', now()), +(16736, 'Everything''s Relative (1987)', 'US', now()), +(16737, 'Women in Prison', 'US', now()), +(16739, 'Bailey''s Comets', 'US', now()), +(16740, 'Jeannie', 'US', now()), +(16741, 'Fine Tuned', 'US', now()), +(16742, 'The Oddball Couple', 'US', now()), +(16743, 'Hard Shine', 'US', now()), +(16744, 'McDuff the Talking Dog', 'US', now()), +(16745, 'The Skatebirds', 'US', now()), +(16746, 'Yogi''s Space Race', 'US', now()), +(16747, 'The Kwicky Koala Show', 'US', now()), +(16748, 'Turbo Teen', 'US', now()), +(16749, 'Teen Wolf (1986)', 'US', now()), +(16750, 'Foofur', 'US', now()), +(16751, 'Dink the Little Dinosaur', 'US', now()), +(16752, 'Guys Next Door', 'US', now()), +(16753, 'Berlin, Berlin', 'DE', now()), +(16754, 'Sonny Spoon', 'US', now()), +(16755, 'Chicken Soup', 'US', now()), +(16756, 'Island Son', 'US', now()), +(16779, 'Allir litir hafsins eru kaldir', 'IS', now()), +(16758, 'Top of the Hill', 'US', now()), +(16759, 'Lenny', 'US', now()), +(16760, 'The Trials of Rosie O''Neill', 'US', now()), +(16761, 'The Andromeda Strain', 'US', now()), +(16762, 'E.A.R.T.H. Force', 'US', now()), +(16763, 'Fonejacker', 'UK', now()), +(16764, 'World Series of Poker', 'US', now()), +(16765, 'Dogfights', 'US', now()), +(16766, 'Code 3 (1992)', 'US', now()), +(16767, 'Rango', 'US', now()), +(16768, 'Me and Maxx', 'US', now()), +(16769, 'Phyl and Mikhy', 'US', now()), +(16770, 'Semi-Tough', 'US', now()), +(16771, 'Border Security', 'AU', now()), +(16772, '70 mínútur', 'IS', now()), +(16773, 'Good Time Harry', 'US', now()), +(16774, 'Goodtime Girls', 'US', now()), +(16775, 'Time Express', 'US', now()), +(16776, 'Dorothy', 'US', now()), +(16777, 'Hanging In', 'US', now()), +(16778, 'The Real Football Factories International', 'UK', now()), +(16780, 'Búbbarnir', 'IS', now()), +(16781, 'Dream Hunters', 'IS', now()), +(16782, 'Fastir liðir... eins og venjulega', 'IS', now()), +(16783, 'Fóstbræður', 'IS', now()), +(16784, 'Heilsubælið', 'IS', now()), +(16785, 'Á tali með Hemma Gunn', 'IS', now()), +(16786, 'Inspector Mom', 'US', now()), +(16787, 'Félagsheimilið', 'IS', now()), +(16788, 'Fornbókabúðin', 'IS', now()), +(16789, 'Gettu betur', 'IS', now()), +(16790, 'Popi', 'US', now()), +(16791, 'Flip That House', 'US', now()), +(16792, 'Hljómsveit Íslands', 'IS', now()), +(16793, 'Hvíti víkingurinn', 'IS', now()), +(16794, 'Idol stjörnuleit', 'IS', now()), +(16795, 'The Cop and the Kid', 'US', now()), +(16796, 'The Corner Bar', 'US', now()), +(16797, 'A Touch of Grace', 'US', now()), +(16798, 'Í sjöunda himni með Hemma Gunn', 'IS', now()), +(16799, 'Kallakaffi', 'IS', now()), +(16800, 'Lifandi!', 'IS', now()), +(16801, 'Limbó', 'IS', now()), +(16802, 'Meistarinn', 'IS', now()), +(16803, 'Food Network Challenge', 'US', now()), +(16804, 'What You Get for the Money', 'US', now()), +(16805, 'The Bob Crane Show', 'US', now()), +(16806, 'One Happy Family', 'US', now()), +(16807, 'International Showtime', 'US', now()), +(16808, 'The Boys of Twilight', 'US', now()), +(16809, 'Singer and Sons', 'US', now()), +(16810, 'Molloy', 'US', now()), +(16811, 'Sunset Beat', 'US', now()), +(16812, 'Down Home', 'US', now()), +(16813, 'H.E.L.P.', 'US', now()), +(16814, 'Rich Man, Poor Man - Book II', 'US', now()), +(16815, 'Tough Cookies', 'US', now()), +(16816, 'E! Celebrity Profile', 'US', now()), +(16817, 'Showbiz Tonight', 'US', now()), +(16818, 'The 808', 'US', now()), +(16819, 'Bonino', 'US', now()), +(16820, 'The Boys', 'US', now()), +(16822, 'Nytt På Nytt', 'NO', now()), +(16823, 'Rikets Røst', 'NO', now()), +(16824, 'Edle Dråper', 'NO', now()), +(16825, 'To Love & Die', 'US', now()), +(16826, 'The X Effect', 'US', now()), +(16827, 'Animal Park: Wild On The West Coast', 'UK', now()), +(16828, 'David Beckham''s Soccer USA', 'UK', now()), +(16829, 'Piggsburg Pigs', 'US', now()), +(16844, 'My Favorite Husband', 'US', now()), +(16831, 'RSPCA Animal Rescue', 'AU', now()), +(16833, 'The Stu Erwin Show', 'US', now()), +(16834, 'From a Bird''s Eye View', 'UK', now()), +(16835, 'Have Faith', 'US', now()), +(16836, 'Boss Lady', 'US', now()), +(16837, 'My Hero (US)', 'US', now()), +(16838, 'My Friend Irma', 'US', now()), +(16839, 'Meet Millie', 'US', now()), +(16841, 'Victoria Beckham: Coming to America', 'US', now()), +(16842, 'Naked Camera', 'IE', now()), +(16843, 'My Son Jeep', 'US', now()), +(16845, 'Ethel and Albert', 'US', now()), +(16846, 'The Marriage', 'US', now()), +(16847, 'That''s My Boy (US)', 'US', now()), +(16848, 'Hey Mulligan', 'US', now()), +(16849, 'So This Is Hollywood', 'US', now()), +(16850, 'Those Whiting Girls', 'US', now()), +(16851, 'The Charlie Farrell Show', 'US', now()), +(16852, 'Hos Martin', 'NO', now()), +(16853, 'Etaten', 'NO', now()), +(16854, 'Der Ingen Skulle Tru At Nokon Kunne Bu', 'NO', now()), +(16855, 'Exposé: America''s Investigative Reports', 'US', now()), +(16856, 'Love That Jill', 'US', now()), +(16857, '9 Av 10 Nordmenn', 'NO', now()), +(16858, 'Hilde Og Brede Show', 'NO', now()), +(16860, 'Mo''Nique''s F.A.T. Chance: Road to Paris', 'US', now()), +(16861, 'She''s Moving In', 'US', now()), +(16862, 'Baby Ballroom: The Championship', 'UK', now()), +(16863, 'The Joe Palooka Story', 'US', now()), +(16864, 'Mayor of the Town', 'US', now()), +(16865, 'The Tracer', 'US', now()), +(16866, 'The Crusader', 'US', now()), +(16867, 'NBC Follies', 'US', now()), +(16868, 'Mountain', 'UK', now()), +(16869, 'The Bickersons', 'US', now()), +(16870, 'The Visit', 'UK', now()), +(16871, 'Happy', 'US', now()), +(16872, 'The Marge and Gower Champion Show', 'US', now()), +(16873, 'Oh Those Bells!', 'US', now()), +(16874, 'Beach Patrol: Honolulu', 'US', now()), +(16875, 'Surf Patrol', 'AU', now()), +(16876, 'Scientific American Frontiers', 'US', now()), +(16877, 'Baldwin Hills', 'US', now()), +(16878, 'Thicker Than Water (1973)', 'US', now()), +(16879, 'Wide Angle', 'US', now()), +(16880, 'Tengen Toppa Gurren-Lagann', 'JP', now()), +(16881, 'Big Ideas for a Small Planet', 'US', now()), +(16883, 'We Got to Do Better', 'US', now()), +(16884, 'The Billy Rose Show', 'US', now()), +(16885, 'Southern Fried Chicks', 'US', now()), +(16886, 'House Hunters International', 'US', now()), +(16887, 'Colgate Theatre', 'US', now()), +(16888, 'NBC Presents', 'US', now()), +(16889, 'The Big Story', 'US', now()), +(16890, 'Bigelow Theatre', 'US', now()), +(16891, 'Nash Airflyte Theatre', 'US', now()), +(16892, 'Somerset Maugham Theatre', 'US', now()), +(16893, 'Cosmopolitan Theatre', 'US', now()), +(16894, 'Celanese Theatre', 'US', now()), +(16895, 'Curtain Call', 'US', now()), +(16896, 'Your Jeweler''s Showcase', 'US', now()), +(16897, 'Philip Morris Playhouse', 'US', now()), +(16898, 'TV Reader''s Digest', 'US', now()), +(16901, 'Lifeline', 'US', now()), +(16902, 'Outer Spaces', 'US', now()), +(16903, 'Over Your Head', 'US', now()), +(16904, 'reZONED', 'US', now()), +(16905, 'Room by Room', 'US', now()), +(16906, 'Save My Bath', 'US', now()), +(16907, 'Save Us From Our House!', 'US', now()), +(16908, 'Secrets That Sell', 'US', now()), +(16909, 'Small Space, Big Style', 'US', now()), +(16910, 'Simply Quilts', 'US', now()), +(16911, 'That''s Clever!', 'US', now()), +(16912, 'Under 1 Roof', 'US', now()), +(16913, 'Hidden Potential', 'US', now()), +(16914, 'Dinner: Impossible', 'US', now()), +(16915, 'What''s With That House?', 'US', now()), +(16916, 'What''s Your Sign? Design', 'US', now()), +(16917, 'World''s Most Extreme Homes', 'US', now()), +(16918, '24 Hour Design', 'US', now()), +(16919, 'Before & After', 'US', now()), +(16920, 'The Cosmos: A Beginner''s Guide', 'UK', now()), +(16921, 'Jamie At Home', 'UK', now()), +(16922, 'Cook Yourself Thin', 'UK', now()), +(16923, 'Rick Stein''s Mediterranean Escapes', 'UK', now()), +(16924, 'City Gardener', 'UK', now()), +(16926, 'A Model Life With Petra Nemcova', 'US', now()), +(16927, 'Design Remix', 'US', now()), +(16928, 'Designer Finals', 'US', now()), +(16929, 'Live In', 'US', now()), +(16930, 'LA Ink', 'US', now()), +(16931, 'Higher Definition', 'US', now()), +(16932, 'Don''t Sweat It', 'US', now()), +(16933, 'Doc Elliot', 'US', now()), +(16934, 'Dream House', 'US', now()), +(16935, 'FreeStyle', 'US', now()), +(16937, 'Generation Renovation', 'US', now()), +(16938, 'Get It Sold', 'US', now()), +(16939, 'Ground Breakers', 'US', now()), +(16940, 'Inside American Jail', 'US', now()), +(16941, 'Need For Speed', 'US', now()), +(16942, 'Next Level: Vince Young', 'US', now()), +(16943, 'The Nashville Palace', 'US', now()), +(16944, 'CBS Schoolbreak Special', 'US', now()), +(16945, 'NBC Special Treat', 'US', now()), +(16946, 'CBS Afternoon Playhouse', 'US', now()), +(16947, 'King''s Crossing', 'US', now()), +(16948, 'Condo', 'US', now()), +(16949, 'Homes Across America', 'US', now()), +(16950, 'House Detective', 'US', now()), +(16951, 'I Want That! Baths', 'US', now()), +(16952, 'I Want That! Kitchens', 'US', now()), +(17045, 'Komiks', 'PH', now()), +(16954, 'Dance Fever (1979)', 'US', now()), +(16955, 'A Baby Story', 'US', now()), +(16956, 'If Walls Could Talk ...', 'US', now()), +(16957, 'Kidspace', 'US', now()), +(16958, 'Landscape Smart', 'US', now()), +(16959, 'Living With Ed', 'US', now()), +(16960, 'Look What I Did!', 'US', now()), +(16961, 'My House Is Worth What?', 'US', now()), +(16962, 'My Parents'' House', 'US', now()), +(16963, 'New Spaces', 'US', now()), +(16964, 'Human Weapon', 'US', now()), +(16965, 'Decisive Battles', 'US', now()), +(16966, 'Space Strikers', 'US', now()), +(16967, 'The Mouse and the Monster', 'US', now()), +(16968, 'I Dare You! The Ultimate Challenge', 'US', now()), +(16969, 'Manhunt (2001)', 'US', now()), +(16970, 'Kimora: Life in the Fab Lane', 'US', now()), +(16971, 'The Little Revue', 'US', now()), +(16972, 'Let There Be Stars', 'US', now()), +(16973, 'The Front Page', 'US', now()), +(16974, 'The Adventures of Ellery Queen', 'US', now()), +(16975, 'The Further Adventures of Ellery Queen', 'US', now()), +(16976, 'The Hank McCune Show', 'US', now()), +(16977, 'Mr. District Attorney', 'US', now()), +(16978, 'Life with Luigi', 'US', now()), +(16980, 'Britain''s Favourite View', 'UK', now()), +(16981, 'The King Family Show', 'US', now()), +(16983, 'A Recipe For the Heart', 'HK', now()), +(16984, 'The Pick-Up Artist', 'US', now()), +(16985, 'Those Amazing Animals', 'US', now()), +(16986, 'The Steve Allen Comedy Hour', 'US', now()), +(16987, 'The Rock Life', 'US', now()), +(16988, 'Kitchen Criminals', 'UK', now()), +(16989, 'That Antony Cotton Show', 'UK', now()), +(16990, 'Little Devil', 'UK', now()), +(16991, 'A Step Into the Past', 'HK', now()), +(16992, 'At Home With Love', 'HK', now()), +(16993, 'Robbie Coltrane: B Road Britain', 'UK', now()), +(16994, 'Ann Widdecombe Versus', 'UK', now()), +(16995, 'Survivor (DE)', 'DE', now()), +(16996, 'Hot Hero Sandwich', 'US', now()), +(16997, 'Fabulous Funnies', 'US', now()), +(16998, 'The Ted Knight Show', 'US', now()), +(16999, 'Backyards & Bullets', 'US', now()), +(17000, 'Junkin'' with Val and Dave', 'US', now()), +(17001, 'Bounty Girls Miami', 'US', now()), +(17002, 'Keyshia Cole: The Way It Is', 'US', now()), +(17003, 'DMX: Soul of a Man', 'US', now()), +(17004, 'Knitty Gritty', 'US', now()), +(17005, 'DinoSapien', 'US', now()), +(17006, 'Stylelicious', 'US', now()), +(17007, 'Post Mortem', 'DE', now()), +(17008, 'Manshow', 'NO', now()), +(17009, 'Inside', 'US', now()), +(17010, 'Heroes Unmasked', 'UK', now()), +(17011, 'Best! Movies! Ever!', 'CA', now()), +(17012, 'Berks', 'PH', now()), +(17013, 'Click (2001)', 'PH', now()), +(17014, 'Click (1997)', 'US', now()), +(17015, 'Kapamilya Deal or No Deal', 'PH', now()), +(17016, 'Rock Docs', 'US', now()), +(17017, 'The Super 6', 'US', now()), +(17018, 'Skyhawks', 'US', now()), +(17019, 'Jambo', 'US', now()), +(17020, 'Caesars 24/7', 'US', now()), +(17021, 'Hotel cæsar', 'NO', now()), +(17022, 'Slacker Cats', 'US', now()), +(17023, 'Bar Bender', 'HK', now()), +(17024, 'Newport Harbor: The Real Orange County', 'US', now()), +(17025, 'One of the Boys (1982)', 'US', now()), +(17026, 'About A Girl', 'US', now()), +(17027, 'Great British Journeys', 'UK', now()), +(17028, 'Paycheck Showdown', 'US', now()), +(17029, 'School Days', 'JP', now()), +(17030, 'The Mackenzies of Paradise Cove', 'US', now()), +(17031, 'Miss Winslow and Son', 'US', now()), +(17033, 'Undercover Mum', 'UK', now()), +(17034, 'Click (US)', 'US', now()), +(17035, 'Taboo', 'US', now()), +(17036, 'Big Brother (DE)', 'DE', now()), +(17037, 'Let''s Dance (DE)', 'DE', now()), +(17038, 'Top of the Pops (DE)', 'DE', now()), +(17039, 'Die Oliver Geissen Show', 'DE', now()), +(17040, 'Die ProSieben Märchenstunde', 'DE', now()), +(17041, 'Macy''s 4th of July Fireworks Spectacular', 'US', now()), +(17042, 'Click (2007)', 'US', now()), +(17043, 'The Entertainers (US)', 'US', now()), +(17044, 'The Jim Nabors Hour', 'US', now()), +(17046, 'Panday', 'PH', now()), +(17047, 'Pilipinas, Game KNB?', 'PH', now()), +(17048, 'Star Circle Quest', 'PH', now()), +(17049, 'Zodiak - Der Horoskop-Mörder', 'DE', now()), +(17050, 'Unschuldig', 'DE', now()), +(17051, 'The Snoop Sisters', 'US', now()), +(17052, 'The Sonny Comedy Revue', 'US', now()), +(17053, 'McCoy', 'US', now()), +(17054, 'Akvariet', 'NO', now()), +(17055, 'Saturday Night Live with Howard Cosell', 'US', now()), +(17056, 'Dick Clark''s Live Wednesday', 'US', now()), +(17057, 'ASAP ''07', 'PH', now()), +(17058, 'Ang TV', 'PH', now()), +(17059, 'Joe and Valerie', 'US', now()), +(17060, 'Free Country', 'US', now()), +(17061, 'Kamen Rider Dragon Knight', 'US', now()), +(17062, 'Bakekang', 'PH', now()), +(17063, 'True Pulp Murder', 'CA', now()), +(17064, 'Eco-Tech', 'US', now()), +(17065, 'The Sideshow', 'AU', now()), +(17067, 'The Mississippi', 'US', now()), +(17068, 'Foul-Ups, Bleeps and Blunders', 'US', now()), +(17069, 'TV''s Bloopers and Practical Jokes', 'US', now()), +(17070, 'Eye to Eye', 'US', now()), +(17071, 'Mr. Sunshine (1986)', 'US', now()), +(17072, 'Fortune Dane', 'US', now()), +(17073, 'Gung Ho', 'US', now()), +(17074, 'Take Five', 'US', now()), +(17075, 'The Popcorn Kid', 'US', now()), +(17076, 'Trial and Error', 'US', now()), +(17077, 'Off the Rack', 'US', now()), +(17078, 'Detective in the House', 'US', now()), +(17079, 'Me and Mrs. C', 'US', now()), +(17080, 'Hunter and Hunted', 'US', now()), +(17081, 'Lifestories', 'US', now()), +(17082, 'Oceanquest', 'US', now()), +(17083, 'Identity (UK)', 'UK', now()), +(17084, 'Crash Scene Investigators', 'UK', now()), +(17085, 'The Restaurant (UK)', 'UK', now()), +(17086, 'Morgunstundin okkar', 'IS', now()), +(17087, 'Sigla himinfley', 'IS', now()), +(17088, 'Basta''t kasama kita', 'PH', now()), +(17089, 'Gooische vrouwen', 'NL', now()), +(17090, 'Crayon Shin Chan', 'AJ', now()), +(17091, 'Locked Up Abroad', 'US', now()), +(17092, 'Oggy et les Cafards', 'FR', now()), +(17093, 'Meatballs and Spaghetti', 'US', now()), +(17094, 'The Biskitts', 'US', now()), +(17095, 'The Puppy''s Further Adventures', 'US', now()), +(17097, 'Atlantika', 'PH', now()), +(17098, 'Bubble Gang Jr.', 'PH', now()), +(17099, 'The Buzz', 'PH', now()), +(17100, 'Captain Barbell', 'PH', now()), +(17101, 'Entern oder kentern', 'DE', now()), +(17102, 'Der Lehrer', 'DE', now()), +(17103, 'Lobster Wars', 'US', now()), +(17104, 'Wildcatters', 'US', now()), +(17105, 'Crazy For You', 'PH', now()), +(17106, 'American Detective', 'US', now()), +(17107, 'Moonlight Mile: 1st Season - Lift off', 'JP', now()), +(17108, 'Moonlight Mile: 2nd Season - Touch down', 'JP', now()), +(17109, 'Daisy siete', 'PH', now()), +(17111, 'Free Willy', 'US', now()), +(17112, 'Beethoven (US)', 'US', now()), +(17113, 'Silfur egils', 'IS', now()), +(17114, 'Sigtið', 'IS', now()), +(17115, 'Sjáumst með Silvíu Nótt', 'IS', now()), +(17116, 'Spaugstofan', 'IS', now()), +(17117, 'Stelpurnar', 'IS', now()), +(17118, 'Strákarnir', 'IS', now()), +(17119, 'Stundin okkar', 'IS', now()), +(17120, 'Darna', 'PH', now()), +(17121, 'Mother Goose and Grimm', 'US', now()), +(17122, 'Chip and Pepper''s Cartoon Madness', 'US', now()), +(17123, 'Kid ''n Play', 'US', now()), +(17124, 'Eat Bulaga!', 'PH', now()), +(17125, 'Stutt í spunann', 'IS', now()), +(17126, 'Sunnudagsþátturinn', 'IS', now()), +(17127, 'Svínasúpan', 'IS', now()), +(17128, 'Síðasti valsinn', 'IS', now()), +(17129, 'Sönn íslensk sakamál', 'IS', now()), +(17130, 'Taka tvö', 'IS', now()), +(17131, 'Tvíhöfði', 'IS', now()), +(17132, '+ Clair', 'FR', now()), +(17133, '+ de cinéma', 'FR', now()), +(17134, '1 contre 100', 'FR', now()), +(17135, '100 minutes pour convaincre', 'FR', now()), +(17136, '100% question', 'FR', now()), +(17137, '13 heures le journal', 'FR', now()), +(17138, 'Le 17', 'FR', now()), +(17139, '19/20', 'FR', now()), +(17140, '1ère compagnie', 'FR', now()), +(17141, '20 heures le journal', 'FR', now()), +(17142, '20h10 pétantes', 'FR', now()), +(17144, '22 avenue de la Victoire', 'FR', now()), +(17145, '22 minutes chrono', 'FR', now()), +(17146, 'Flatbush', 'US', now()), +(17147, 'Co-ed Fever', 'US', now()), +(17148, 'Encantadia', 'PH', now()), +(17149, 'Encantadia: Pag-ibig Hanggang Wakas', 'PH', now()), +(17150, 'Etheria: Ang Ikalimang Kaharian ng Encantadia', 'PH', now()), +(17151, 'Esperanza', 'PH', now()), +(17152, 'Fantastic Man', 'PH', now()), +(17153, 'Goin'' Bulilit', 'PH', now()), +(17154, 'Undir sama þaki', 'IS', now()), +(17155, 'Venni páer', 'IS', now()), +(17156, 'Það var lagið', 'IS', now()), +(17157, '3 femmes... un soir d''été', 'FR', now()), +(17158, '30 millions d''amis', 'FR', now()), +(17159, '40 ans de 45 tours', 'FR', now()), +(17160, 'Beirut to Bosnia', 'US', now()), +(17161, 'Gulong ng palad', 'PH', now()), +(17162, 'Hiram', 'PH', now()), +(17163, 'Hokus Pokus', 'PH', now()), +(17164, 'Home Along da Airport', 'PH', now()), +(17165, 'Les 400 coups de Virginie', 'FR', now()), +(17166, 'Home Along da Riles', 'PH', now()), +(17167, '5, rue Sésame', 'FR', now()), +(17168, '60 jours, 60 nuits', 'FR', now()), +(17169, 'Krügers Woche', 'DE', now()), +(17170, 'The Man', 'US', now()), +(17171, '7 jours au Groland', 'FR', now()), +(17172, '7 sur 7', 'FR', now()), +(17173, 'I Luv NY', 'PH', now()), +(17174, '93 Faubourg Saint-Honoré', 'FR', now()), +(17175, 'L''@mour est à réinventer', 'FR', now()), +(17176, '11er Haus', 'AT', now()), +(17177, '25 - Das Magazin', 'AT', now()), +(17178, 'Die 4 da', 'AT', now()), +(17179, 'Calla Lily', 'PH', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(17180, 'Ikaw Ang Lahat Sa Akin', 'PH', now()), +(17181, 'Impostora', 'PH', now()), +(17182, '1, 2, 3', 'PT', now()), +(17183, 'At Home Ka Dito', 'PH', now()), +(17184, 'Boy & Kris', 'PH', now()), +(17185, 'Entertainment Live', 'PH', now()), +(17186, 'All Star K!', 'PH', now()), +(17187, 'Kampanerang Kuba', 'PH', now()), +(17188, 'Kay tagal kang hinintay', 'PH', now()), +(17189, 'Kokey', 'PH', now()), +(17190, 'Dumped', 'UK', now()), +(17191, '1ª Companhia', 'PT', now()), +(17192, 'Krystala', 'PH', now()), +(17193, 'Gudtaym', 'PH', now()), +(17194, 'Wonderworks', 'US', now()), +(17195, 'Let''s Go', 'PH', now()), +(17196, 'Little Big Star', 'PH', now()), +(17197, 'Little Big Superstar', 'PH', now()), +(17198, 'Agencija osameni srca', 'MK', now()), +(17199, 'America at a Crossroads', 'US', now()), +(17200, 'Life of Ryan', 'US', now()), +(17201, 'The Alan Titchmarsh Show', 'UK', now()), +(17202, 'Snabbgrabbar med Raske Menn', 'NO', now()), +(17203, 'Love to Love', 'PH', now()), +(17204, 'Lupin', 'PH', now()), +(17205, 'Maalaala Mo Kaya', 'PH', now()), +(17206, 'Makuha ka sa Tikim', 'PH', now()), +(17207, 'Don''t Call Me Stupid', 'UK', now()), +(17208, 'Margarita', 'PH', now()), +(17209, 'A Bucket O'' French And Saunders', 'UK', now()), +(17210, 'Maria Flordeluna', 'PH', now()), +(17211, 'MariMar', 'PH', now()), +(17212, 'Marina', 'PH', now()), +(17213, 'Marinara', 'PH', now()), +(17214, 'Blood + (US)', 'AJ', now()), +(17215, 'Outnumbered', 'UK', now()), +(17216, 'Masayang tanghali bayan', 'PH', now()), +(17217, 'Mga Anghel na Walang Langit', 'PH', now()), +(17218, 'Mga Mata ni Anghelita', 'PH', now()), +(17219, 'Maging Sino Ka Man', 'PH', now()), +(17220, 'Mula sa puso', 'PH', now()), +(17221, 'Pantry Raid', 'US', now()), +(17222, 'Doctors'' Private Lives', 'US', now()), +(17223, 'As The Bell Rings', 'US', now()), +(17224, 'Mulawin', 'PH', now()), +(17225, 'Kung Ako Ikaw', 'PH', now()), +(17226, 'Chalupári', 'SK', now()), +(17227, 'Pokúšaj', 'SK', now()), +(17228, 'City Homicide', 'AU', now()), +(17229, 'Growing Up Creepie', 'US', now()), +(17230, 'Blog Cabin', 'US', now()), +(17232, '24 Oras', 'PH', now()), +(17233, 'Asian Treasures', 'PH', now()), +(17234, 'Held Up', 'US', now()), +(17235, 'Bahay Mo Ba ’To', 'PH', now()), +(17236, 'Debate with Mare at Pare', 'PH', now()), +(17237, 'Boys Nxt Door', 'PH', now()), +(17238, 'Celebrity Duets (Philippines Edition)', 'PH', now()), +(17239, 'Ful Haus', 'PH', now()), +(17240, 'I-Witness', 'PH', now()), +(17241, 'Kapwa Ko, Mahal Ko', 'PH', now()), +(17242, 'Lagot Ka... Isusumbong Kita!', 'PH', now()), +(17243, 'Magic Kamison', 'PH', now()), +(17244, 'Magpakailanman', 'PH', now()), +(17245, 'Mommy Elvie''s Problematic Show', 'PH', now()), +(17246, 'Storm Hawks', 'US', now()), +(17248, 'Agawin mo man ang lahat', 'PH', now()), +(17249, 'Beh Bote Nga', 'PH', now()), +(17250, 'Daddy Di Do Du', 'PH', now()), +(17251, 'Extra Challenge', 'PH', now()), +(17252, 'Idol Ko si Kap', 'PH', now()), +(17253, 'Xavier: Renegade Angel', 'US', now()), +(17254, 'Art Angel', 'PH', now()), +(17255, 'Bitoy''s Funniest Videos', 'PH', now()), +(17256, 'Emergency (Philippines)', 'PH', now()), +(17257, 'Imbestigador', 'PH', now()), +(17258, 'Joyride', 'PH', now()), +(17259, 'Aksyon Balita', 'PH', now()), +(17260, 'Grand Slam', 'US', now()), +(17261, '100% Pinoy', 'PH', now()), +(17262, 'At Your Service', 'PH', now()), +(17263, 'Kapuso Mo, Jessica Soho', 'PH', now()), +(17264, 'Kay Susan Tayo', 'PH', now()), +(17265, 'Kool Ka Lang', 'PH', now()), +(17266, 'Lastikman', 'PH', now()), +(17267, 'Aalog-alog', 'PH', now()), +(17268, 'John En Shirley', 'PH', now()), +(17269, 'Leya', 'PH', now()), +(17270, '1 vs. 100 (Philippines)', 'PH', now()), +(17271, 'Basta Sports', 'PH', now()), +(17272, 'Day Off', 'PH', now()), +(17273, 'Wedding Central', 'US', now()), +(17274, 'The John Davidson Show', 'US', now()), +(17275, 'Home Boy', 'PH', now()), +(17276, 'Thunder', 'US', now()), +(17277, 'Kabuhayang Swak na Swak', 'PH', now()), +(17278, 'Heathcliff (1980)', 'US', now()), +(17281, 'Games UpLate Live', 'PH', now()), +(17282, 'Muggsy', 'US', now()), +(17283, 'The Harlem Globetrotters Popcorn Machine', 'US', now()), +(17284, 'Bandila', 'PH', now()), +(17285, 'Lovely Day', 'PH', now()), +(17286, 'Majika', 'PH', now()), +(17287, 'Mel & Joey', 'PH', now()), +(17288, 'Cassie & Co.', 'US', now()), +(17289, 'Teachers Only', 'US', now()), +(17290, 'No Soap, Radio', 'US', now()), +(17291, 'Inferno 999', 'UK', now()), +(17292, 'Grandad''s Back In Business', 'UK', now()), +(17293, 'Nigella Express', 'UK', now()), +(17294, 'Morning Girls with Kris and Korina', 'PH', now()), +(17295, 'Nuts Entertainment', 'PH', now()), +(17296, 'Ober Da Bakod', 'PH', now()), +(17297, 'Okey Ka Fairy Ko!', 'PH', now()), +(17299, 'Palaban', 'PH', now()), +(17300, 'Pangarap kong Jackpot', 'PH', now()), +(17302, 'Pati Ba Pintig ng Puso', 'PH', now()), +(17303, 'Philippine Idol', 'PH', now()), +(17304, 'I Love Philippine Idol', 'PH', now()), +(17305, 'Philippines’ Next Top Model', 'PH', now()), +(17306, 'Take On The Takeaway', 'UK', now()), +(17307, 'Jail', 'US', now()), +(17308, 'Temptation (US)', 'US', now()), +(17309, 'Pinoy Big Brother: Celebrity Edition', 'PH', now()), +(17310, 'Backyard Stadiums', 'US', now()), +(17311, 'Pinoy Big Brother Uplate', 'PH', now()), +(17312, 'Pinoy Big Brother: Teen Edition', 'PH', now()), +(17313, 'Pinoy Big Brother: Yes or No', 'PH', now()), +(17314, 'Dog and Cat', 'US', now()), +(17315, 'The New Inventors', 'AU', now()), +(17316, 'Tim Gunn''s Guide to Style', 'US', now()), +(17317, 'Distretto di Polizia', 'IT', now()), +(17319, 'MSNBC Live with Dan Abrams', 'US', now()), +(17320, 'Just Cook This! With Sam the Cooking Guy', 'US', now()), +(17321, 'Pinoy Dream Academy', 'PH', now()), +(17322, 'Man-Made', 'US', now()), +(17323, 'Summer Heights High', 'AU', now()), +(17324, 'Varsity, Inc.', 'US', now()), +(17325, 'Out Of Jimmy''s Head', 'US', now()), +(17326, 'The Magic Land of Allakazam', 'US', now()), +(17327, 'King Leonardo and His Short Subjects', 'US', now()), +(17328, 'Go Go Gophers', 'US', now()), +(17329, 'Yo Gabba Gabba', 'US', now()), +(17330, 'Paula''s Party', 'US', now()), +(17331, 'Pinoy Big Brother Buzz', 'PH', now()), +(17332, 'Extreme Ghost Stories', 'US', now()), +(17333, 'Rescue Mediums', 'US', now()), +(17334, 'Dead Men Talking', 'US', now()), +(17335, 'John Edward Cross Country', 'US', now()), +(17336, 'Unit 13', 'NL', now()), +(17337, 'Deserving Design', 'US', now()), +(17338, 'Lockdown', 'US', now()), +(17339, 'Michael Palin''s New Europe', 'UK', now()), +(17340, 'Schmidt & Pocher', 'DE', now()), +(17341, 'Der Deutsche Fernsehpreis', 'DE', now()), +(17342, 'Schlag den Raab', 'DE', now()), +(17343, 'Sin City Law', 'US', now()), +(17345, 'The Harlem Globetrotters', 'US', now()), +(17346, 'Doctor Doolittle', 'US', now()), +(17347, 'Sturm der Liebe', 'DE', now()), +(17348, 'Torn', 'UK', now()), +(17349, 'Benidorm Unpacked', 'UK', now()), +(17350, 'The Eyes of Nye', 'US', now()), +(17351, 'Design Match', 'US', now()), +(17352, 'Millionaires'' Mission', 'UK', now()), +(17353, 'Commando: On The Front Line', 'UK', now()), +(17354, 'Britain''s Best Dish', 'UK', now()), +(17355, 'Emergency +4', 'US', now()), +(17356, 'Decision House', 'US', now()), +(17357, 'Most Daring', 'US', now()), +(17358, 'Na vseki kilometar', 'BG', now()), +(17359, 'Famous', 'US', now()), +(17360, 'C.B. Bears', 'US', now()), +(17361, 'I Am the Greatest: The Adventures of Muhammad Ali', 'US', now()), +(17362, 'Search and Rescue', 'CA', now()), +(17363, 'Spencer', 'US', now()), +(17364, 'The Lucie Arnaz Show', 'US', now()), +(17365, 'Me and Mom', 'US', now()), +(17366, 'Casper and the Angels', 'US', now()), +(17367, 'Heavyweights', 'US', now()), +(17368, 'Merv Griffin''s Crosswords', 'US', now()), +(17369, 'Double Take', 'US', now()), +(17370, 'Find Your Style', 'US', now()), +(17371, 'Fun Shui', 'US', now()), +(17372, 'House & Home', 'CA', now()), +(17373, 'Property Virgins', 'CA', now()), +(17374, 'Psychic Investigators', 'US', now()), +(17375, 'Mail Order Makeover', 'US', now()), +(17376, 'People Are Funny', 'US', now()), +(17377, 'Room Service (US)', 'CA', now()), +(17378, 'Secret Diary of a Call Girl', 'UK', now()), +(17379, 'Design Inc.', 'US', now()), +(17380, 'Sensible Chic', 'US', now()), +(17383, 'Ask DIY Anything', 'US', now()), +(17384, 'Ask DIY Decorating & Crafts', 'US', now()), +(17385, 'Ask DIY Gardening', 'US', now()), +(17386, 'Ask DIY Home Improvement', 'US', now()), +(17387, 'Assembly Required', 'US', now()), +(17388, 'B. Original', 'US', now()), +(17389, 'Barkitecture', 'US', now()), +(17390, 'Bathroom Renovations', 'US', now()), +(17391, 'Best Built Home', 'US', now()), +(17392, 'Build a Deck', 'US', now()), +(17393, 'Build an Outdoor Kitchen', 'US', now()), +(17394, 'Build Your Wine Cellar', 'US', now()), +(17395, 'Classic Car Restoration', 'US', now()), +(17397, 'The Whistleblowers', 'UK', now()), +(17398, 'Meet The Natives', 'UK', now()), +(17399, 'Kaya', 'US', now()), +(17400, 'All Star Secrets (US)', 'US', now()), +(17401, 'Alumni Fun', 'US', now()), +(17402, 'Anniversary Game', 'US', now()), +(17403, 'A Scare at Bedtime', 'IE', now()), +(17404, 'Fashionista Diaries', 'US', now()), +(17405, 'Rip + Renew', 'US', now()), +(17406, 'American Home 2005', 'US', now()), +(17407, 'Appraisal Fair', 'US', now()), +(17408, 'Appraise It!', 'US', now()), +(17409, 'At the Auction', 'US', now()), +(17410, 'Bed & Bath Design', 'US', now()), +(17411, '20th Century Battlefields', 'US', now()), +(17412, 'The Battle for Rome', 'US', now()), +(17413, 'My War Diary', 'US', now()), +(17414, 'Behind the Design of HGTV''s Dream Home 2006', 'US', now()), +(17415, 'Bugs and Blooms', 'US', now()), +(17416, 'Bugs: The Secret World of Gardens', 'US', now()), +(17417, 'Building Character', 'US', now()), +(17418, 'Carter Can', 'US', now()), +(17419, 'Cash in the Attic (US)', 'US', now()), +(17420, 'Collectible Treasures', 'US', now()), +(17421, 'Collector Inspector', 'US', now()), +(17422, 'Country Style (US)', 'US', now()), +(17423, 'Curious Gardeners', 'US', now()), +(17424, 'Date With Design', 'US', now()), +(17425, 'Decorating With Style', 'US', now()), +(17426, 'Design Basics', 'US', now()), +(17427, 'Dream Builders', 'US', now()), +(17428, 'Dream Drives', 'US', now()), +(17429, 'Fantasy Open House', 'US', now()), +(17430, 'Fix It Up!', 'US', now()), +(17431, 'Flea Market Finds With The Kovels', 'US', now()), +(17432, 'Garden Architecture', 'US', now()), +(17433, 'Gardener''s Journal', 'US', now()), +(17434, 'Good Life', 'US', now()), +(17435, 'Great American Gardens', 'US', now()), +(17436, 'Grow It!', 'US', now()), +(17437, 'Hammer Heads', 'US', now()), +(17438, 'Long Way Down', 'UK', now()), +(17439, 'Save Our History', 'US', now()), +(17440, 'Dinosaur King', 'AJ', now()), +(17441, 'Eon Kid', 'ES', now()), +(17442, 'Skunk Fu!', 'IE', now()), +(17443, 'Hammered with John & Jimmy DiResta', 'US', now()), +(17444, 'Haulin'' House', 'US', now()), +(17445, 'Help Around the House', 'US', now()), +(17446, 'Hey Remember!', 'US', now()), +(17447, 'Home to Go', 'US', now()), +(17448, 'How''s That Work?', 'US', now()), +(17449, 'Inside Dirt', 'US', now()), +(17450, 'Insider''s Garden', 'US', now()), +(17451, 'Junk Brothers', 'US', now()), +(17452, 'Sternenfänger', 'DE', now()), +(17453, 'Extreme Homes', 'US', now()), +(17454, 'Kitchen Crimes', 'CA', now()), +(17455, 'Kitchen Trends', 'US', now()), +(17456, 'Landscape Solutions', 'US', now()), +(17457, 'Lofty Ideas', 'US', now()), +(17458, 'Making of an HGTV Design Star', 'US', now()), +(17459, 'Modern Masters', 'US', now()), +(17460, 'Old Homes Restored', 'US', now()), +(17461, 'Our Place (US)', 'US', now()), +(17462, 'People, Places & Plants', 'US', now()), +(17463, 'Picking Up the Pieces', 'US', now()), +(17464, 'The War', 'US', now()), +(17465, 'Public Places, Private Spaces', 'US', now()), +(17466, 'Real Renos', 'US', now()), +(17467, 'Rebecca''s Garden', 'US', now()), +(17468, 'Renovations', 'US', now()), +(17469, 'Restore America', 'US', now()), +(17470, 'Room to Improve', 'US', now()), +(17471, 'Seasoned Gardener', 'US', now()), +(17472, 'Secret Gardens Of...', 'US', now()), +(17473, 'Smart Design', 'US', now()), +(17474, 'Smart Solutions', 'US', now()), +(17475, 'Spring!', 'US', now()), +(17476, 'Surprise Gardener', 'US', now()), +(17477, 'This Small Space', 'US', now()), +(17478, 'TIPical Mary Ellen', 'US', now()), +(17479, 'Trading Up (US)', 'US', now()), +(17480, 'Treasure Makers', 'US', now()), +(17481, 'Ultimate Collectors', 'US', now()), +(17482, 'Urban Outsiders', 'US', now()), +(17483, 'Winter Gardener', 'US', now()), +(17484, 'World Garden Tour', 'US', now()), +(17485, 'GSG 9', 'DE', now()), +(17486, 'R.I.S. - Die Sprache der Toten', 'DE', now()), +(17487, 'Les Bleus : Premiers pas dans la police', 'FR', now()), +(17488, 'Les Guignols de l''info', 'FR', now()), +(17489, 'Ray Mears'' Extreme Survival', 'UK', now()), +(17490, 'Mega Disasters', 'US', now()), +(17491, 'Ray Mears''s World of Survival', 'UK', now()), +(17492, 'The Life And Times Of Vivienne Vyle', 'UK', now()), +(17493, 'Inside Lost Worlds', 'US', now()), +(17494, 'Celebrity Rap Superstar', 'US', now()), +(17495, 'D.C. II: Da Capo II', 'JP', now()), +(17496, 'Bamboo Blade', 'JP', now()), +(17497, 'Bloodsucking Cinema', 'US', now()), +(17498, 'Out of Control (2002)', 'UK', now()), +(17499, 'Das Supertalent', 'DE', now()), +(17500, 'Myggan', 'SE', now()), +(17501, 'Knight Rider (2008)', 'US', now()), +(17502, 'Aly & AJ: Sister Act', 'US', now()), +(17503, 'C''è posta per te', 'IT', now()), +(17504, 'Ruby Gloom', 'CA', now()), +(17505, 'The Amazing Race Asia', 'SG', now()), +(23805, 'Écht niet?!', 'NL', now()), +(17507, 'The Amazing Race: A Corrida Milionária', 'BR', now()), +(17508, 'Halvseint', 'NO', now()), +(17509, 'Dick Tracy', 'US', now()), +(17510, 'Tilbake Til 90 Tallet', 'NO', now()), +(17511, 'Boston Tea Party', 'SE', now()), +(17512, 'Parlamentet', 'SE', now()), +(17513, 'Babben & Co', 'SE', now()), +(17514, 'Celebrity Exposé', 'US', now()), +(17515, 'Control Room Presents', 'US', now()), +(17516, 'The Nature Of Britain', 'UK', now()), +(17517, '''da Kink In My Hair', 'CA', now()), +(17518, 'Really Reckless Drivers', 'US', now()), +(17519, 'Summer Fun', 'US', now()), +(17520, 'Last One Standing', 'US', now()), +(17521, 'The Peter Serafinowicz Show', 'UK', now()), +(17522, 'Noel''s Are You Smarter Than A Ten Year Old?', 'UK', now()), +(17523, 'Strictly Come Dancing - It Takes Two', 'UK', now()), +(17524, 'Pfarrer Braun', 'DE', now()), +(17525, 'This Old House Hour', 'US', now()), +(17526, 'Urban Legends', 'US', now()), +(17527, 'DragonFlyTV', 'US', now()), +(17528, 'Surgery Saved My Life', 'US', now()), +(17529, 'Mysterious Journeys', 'US', now()), +(17530, 'The Johnny Cash Show', 'US', now()), +(17531, 'I Want To Look Like A High School Cheerleader Again', 'US', now()), +(17532, 'Salatut elämät', 'FI', now()), +(17533, 'Dirty Rotten Cheater', 'UK', now()), +(17534, 'Zoo Days', 'UK', now()), +(17535, 'Nigel Marven''s Shark Island', 'UK', now()), +(17536, 'Classical Star', 'UK', now()), +(17537, 'A Passion for Plants', 'UK', now()), +(17538, 'The Next Iron Chef', 'US', now()), +(17539, 'Spendaholics', 'UK', now()), +(17540, 'America''s Most Smartest Model', 'US', now()), +(17541, 'Sound Off with Matt Pinfield', 'US', now()), +(17542, 'The Six O''Clock Follies', 'US', now()), +(17543, 'Rockeskolen', 'NO', now()), +(17544, 'House of Cards', 'UK', now()), +(17545, 'Dirty Jobs (AU)', 'AU', now()), +(17546, 'This Week At War', 'US', now()), +(17547, 'Man with a Camera', 'US', now()), +(17548, 'Yo on E!', 'US', now()), +(17549, 'Kamen Rider Black', 'JP', now()), +(17550, 'Married Away', 'US', now()), +(17551, 'Have Fork, Will Travel', 'US', now()), +(17552, 'Throwdown with Bobby Flay', 'US', now()), +(17553, 'The Houndcats', 'US', now()), +(17554, 'Celebrity Rides: Burt Builds a Bandit', 'US', now()), +(17555, 'Classic Rides', 'US', now()), +(17556, 'Cool Tools', 'US', now()), +(17557, 'Craft Lab', 'US', now()), +(17558, 'Create Your Baby''s Nursery', 'US', now()), +(17559, 'Creative Wall Coverings', 'US', now()), +(17560, 'DIY Pottery', 'US', now()), +(17561, 'DIY to the Rescue', 'US', now()), +(17562, 'Desperate Landscapes', 'US', now()), +(17563, 'Ed the Plumber', 'US', now()), +(17564, 'Finders Fixers', 'US', now()), +(17565, 'Finished in 48', 'US', now()), +(17566, 'Fire Up the Grill', 'US', now()), +(17567, 'First Time Gardener', 'US', now()), +(17568, 'Flooring Wall to Wall', 'US', now()), +(17569, 'Floors, Doors & Windows', 'US', now()), +(17570, 'Freeform Furniture', 'US', now()), +(17571, 'Fresh Coat', 'US', now()), +(17572, 'Project Runway Canada', 'CA', now()), +(17573, 'Pageant Place', 'US', now()), +(17574, 'Fresh From The Garden', 'US', now()), +(17575, 'From Junky to Funky', 'US', now()), +(17576, 'Garden Sense', 'US', now()), +(17577, 'Get Framed', 'US', now()), +(17578, 'Greetings From DIY', 'US', now()), +(17579, 'Grounds for Improvement', 'US', now()), +(17580, 'Grow It & Mow It', 'US', now()), +(17581, 'Halloween', 'US', now()), +(17582, 'Handmade Gifts', 'US', now()), +(17583, 'Hardscapes', 'US', now()), +(17584, 'Healthy Household Workshop', 'US', now()), +(17585, 'Help on the Homefront', 'US', now()), +(17586, 'Home Energy Savings', 'US', now()), +(17587, 'Home IQ', 'US', now()), +(17588, 'Home Made Easy', 'US', now()), +(17589, 'Home Maintenance', 'US', now()), +(17590, 'Home Theater Workshop', 'US', now()), +(17591, 'Home Transformations', 'US', now()), +(17592, 'How To I Do', 'US', now()), +(17593, 'Jewelry Making', 'US', now()), +(17594, 'Kitchen Renovations', 'US', now()), +(17595, 'Knit One, Purl Two', 'US', now()), +(17596, 'Lending a Hand: A Habitat Neighborhood', 'US', now()), +(17597, 'Log Cabin Interiors', 'US', now()), +(17598, 'Major League Remodel', 'US', now()), +(17599, 'Man Caves', 'US', now()), +(17600, 'Material Girls', 'US', now()), +(17601, 'Move It Outside', 'US', now()), +(17602, 'DIY Plumbing', 'US', now()), +(17603, 'Project Tree House', 'US', now()), +(17604, 'A Shot at Love with Tila Tequila', 'US', now()), +(17605, 'Ready As He Grows', 'US', now()), +(17606, 'Tattoo Wars', 'US', now()), +(17607, 'Street Customs', 'US', now()), +(17608, 'Are You Smarter Than a Canadian 5th Grader?', 'CA', now()), +(17609, 'Ready As She Grows', 'US', now()), +(17610, 'Resto Rides', 'US', now()), +(17611, 'Rock Solid', 'US', now()), +(17612, 'RV Roadtrips', 'US', now()), +(17613, 'Scrap', 'US', now()), +(17614, 'Scrapbooking', 'US', now()), +(17615, 'Sew Much More', 'US', now()), +(17616, 'Solar Solutions', 'US', now()), +(17617, 'Sweat Equity', 'US', now()), +(17618, '10 Things You Must Know', 'US', now()), +(17619, 'Tech Out My House', 'US', now()), +(17620, 'The Dirt On...', 'US', now()), +(17621, 'The Roo Gully Diaries', 'AU', now()), +(17622, 'The Inside Job', 'US', now()), +(17623, 'The Painted Room', 'US', now()), +(17624, 'The Ultimate Workshop', 'US', now()), +(17625, 'The Ultimate Workshop II', 'US', now()), +(17626, 'Crime Stories (US)', 'US', now()), +(17627, 'Say Yes To The Dress', 'US', now()), +(17628, 'Geile Zeit', 'DE', now()), +(17629, 'Newstopia', 'AU', now()), +(17630, 'Tiling Techniques', 'US', now()), +(17631, 'DIY Tools & Techniques', 'US', now()), +(17632, 'Trade School', 'US', now()), +(17633, 'Tricked Out', 'US', now()), +(17634, 'Uncommon Threads', 'US', now()), +(17635, 'Warehouse Warriors', 'US', now()), +(17636, 'Wasted Spaces', 'US', now()), +(17637, 'Phenomenon', 'US', now()), +(17638, 'Keeping Up with the Kardashians', 'US', now()), +(17639, 'Waterscapes', 'US', now()), +(17640, 'Weathering the Storm', 'US', now()), +(17641, 'Weekend Decorating', 'US', now()), +(17642, 'Weekend Entertaining', 'US', now()), +(17643, 'Weekend Handyman', 'US', now()), +(17644, 'Weekend Mechanic', 'US', now()), +(17645, 'Weekend Remodeling', 'US', now()), +(17646, 'Witch Crafts', 'US', now()), +(17647, 'Wood Works', 'US', now()), +(17648, 'Woodsculpting', 'US', now()), +(17649, 'All In Good Taste', 'US', now()), +(17650, 'Ask DIY', 'US', now()), +(17651, 'Ask DIY Cooking & Entertaining', 'US', now()), +(17652, 'Auto Primer', 'US', now()), +(17653, 'Bare Walls', 'US', now()), +(17654, 'Bathroom Remodeling', 'US', now()), +(17655, 'Be Your Own Contractor', 'US', now()), +(17656, 'Be Your Own Contractor: Vacation Homes', 'US', now()), +(17657, 'The Abbey', 'AU', now()), +(17658, 'Afrika - Capetown to Cairo', 'AU', now()), +(17659, 'Captured', 'US', now()), +(17660, 'T.i.l.a.', 'FI', now()), +(17661, 'Gotti''s Way', 'US', now()), +(17662, 'Girl Meets Cowboy', 'US', now()), +(17663, 'Beethoven (AU)', 'AU', now()), +(17664, 'Riviera Cocktail', 'AU', now()), +(17665, 'Noise on Screen', 'AU', now()), +(17666, 'Sunday Arts', 'AU', now()), +(17667, 'Talking Heads', 'AU', now()), +(17668, 'Mysterious Human Heart', 'US', now()), +(17669, 'Kids By The Dozen', 'US', now()), +(17670, 'The Salt-n-Pepa Show', 'US', now()), +(17671, 'Rain Shadow', 'AU', now()), +(17672, 'Lateline (AU)', 'AU', now()), +(17673, 'The Upside Down Show', 'AU', now()), +(17674, 'The Business (AU)', 'AU', now()), +(17675, 'Independent Lens', 'US', now()), +(17676, 'The Diary of Anne Frank', 'UK', now()), +(17677, 'The Ultimate Tribute', 'UK', now()), +(17678, 'Burn Up', 'CA', now()), +(17679, 'Alternative Therapies', 'UK', now()), +(17680, 'West 10 LDN', 'UK', now()), +(17681, 'Joe''s Palace', 'UK', now()), +(17682, 'Capturing Mary', 'UK', now()), +(17683, 'Fanny Hill', 'UK', now()), +(17684, 'Jackanory Junior', 'UK', now()), +(17685, 'Mars Rising', 'CA', now()), +(17686, 'HDNet World Report', 'US', now()), +(17687, 'Crime Investigation Australia', 'AU', now()), +(17688, 'Primo', 'UK', now()), +(17689, 'Bonekickers', 'UK', now()), +(17690, 'Honour Kills', 'UK', now()), +(17691, 'European Roots', 'UK', now()), +(17692, 'The History Of The World Backwards', 'UK', now()), +(17693, 'Frankenstein (2007)', 'UK', now()), +(17694, 'Half Broken Things', 'UK', now()), +(17695, 'Catwalk Dogs', 'UK', now()), +(31880, 'Young Man on Campus', 'US', now()), +(17697, 'Supernormal', 'UK', now()), +(17698, 'Final 24', 'US', now()), +(17699, 'Storm Chasers', 'US', now()), +(17700, 'MANswers', 'US', now()), +(17701, 'Streetmate', 'UK', now()), +(17702, 'Big Brother Celebrity Hijack', 'UK', now()), +(17703, 'The Cook And The Chef', 'AU', now()), +(17705, 'Apes In Danger', 'UK', now()), +(17706, 'Strictly Dancing', 'AU', now()), +(17707, 'Difference Of Opinion', 'AU', now()), +(17708, 'Prince of Tennis National Championship', 'JP', now()), +(17709, 'The Protestant Revolution', 'UK', now()), +(17710, 'Kids'' Choice Awards', 'US', now()), +(17711, 'Frankenstein''s Cat', 'UK', now()), +(17712, 'Coming Down The Mountain', 'UK', now()), +(17713, 'Hardeep Does Gambling', 'UK', now()), +(17714, 'History In Focus', 'US', now()), +(17715, 'Russell Brand''s Ponderland', 'UK', now()), +(17716, 'Can We Help?', 'AU', now()), +(17717, 'Katie And Peter: Unleashed', 'UK', now()), +(17718, 'Katy Brand''s Big Ass Show', 'UK', now()), +(17719, 'Good Game', 'AU', now()), +(17720, 'Gardening Australia', 'AU', now()), +(17721, 'Food Poker', 'UK', now()), +(17722, 'SOKO Rhein-Main', 'DE', now()), +(17723, 'Myself; Yourself', 'JP', now()), +(17724, 'Australia Wide', 'AU', now()), +(17725, 'Compass', 'AU', now()), +(17726, 'Late Night Legends', 'AU', now()), +(17727, 'Painting Australia', 'AU', now()), +(17728, 'Noein', 'AJ', now()), +(17729, 'Lost Book of Nostradamus', 'US', now()), +(17730, 'Hero Tales', 'JP', now()), +(17731, 'Sound', 'UK', now()), +(17732, 'Human Guinea Pigs', 'UK', now()), +(17733, 'Helicopter Heroes', 'UK', now()), +(17734, 'Disinformation (US)', 'UK', now()), +(17735, 'The Truth About Property', 'UK', now()), +(17736, 'The History Detectives', 'UK', now()), +(17737, 'Disinformation (UK)', 'UK', now()), +(17738, 'The Joey Bishop Show (Talk Show)', 'US', now()), +(17739, 'ABC Scope', 'US', now()), +(17740, 'True Music With Katie Daryl', 'US', now()), +(17741, 'Pete''s PA', 'UK', now()), +(17742, 'Britain''s Love Story', 'UK', now()), +(17743, 'Planet in Peril', 'US', now()), +(17744, 'Play Away', 'UK', now()), +(17745, 'Death Note (US)', 'AJ', now()), +(17746, 'Pipkins', 'UK', now()), +(17747, 'College Hill: Interns', 'US', now()), +(17748, 'Miracle Planet', 'CA', now()), +(17749, 'Nothing But The Truth', 'UK', now()), +(17750, 'Pob', 'UK', now()), +(17751, 'Blunder', 'UK', now()), +(17752, 'Million Dollar Password', 'US', now()), +(17753, 'Coal House', 'UK', now()), +(17754, 'The Pet Show', 'AU', now()), +(17756, 'Chigley', 'UK', now()), +(17757, 'The White Horses', 'YU', now()), +(17758, 'Tales of the Riverbank', 'CA', now()), +(17759, 'Mary, Mungo and Midge', 'UK', now()), +(17760, 'Monster Jam', 'UK', now()), +(17761, 'Making Menudo', 'US', now()), +(17762, 'The Great Pretender', 'UK', now()), +(17763, 'From Here to Eternity', 'US', now()), +(17764, 'Goshusho-sama Ninomiya-kun', 'JP', now()), +(17765, 'Genshiken 2', 'JP', now()), +(17766, 'Street Crime Live', 'UK', now()), +(17767, 'Le Bureau', 'FR', now()), +(17768, 'La Job', 'CA', now()), +(17770, 'Saving a Species', 'US', now()), +(17771, 'Blood Rush', 'UK', now()), +(17772, 'Fairy Tales', 'UK', now()), +(17773, 'Dance War: Bruno vs. Carrie Ann', 'US', now()), +(17774, 'Married: The First Year', 'US', now()), +(17775, 'High School Musical: The Music In You', 'US', now()), +(17776, 'Don''t Tell the Bride', 'UK', now()), +(17777, 'Chute', 'UK', now()), +(17778, 'Trapped', 'UK', now()), +(17779, 'Art in the Twenty-First Century', 'US', now()), +(17780, 'Inside Business', 'AU', now()), +(17781, 'Offsiders', 'AU', now()), +(17782, 'Landline', 'AU', now()), +(17783, 'The Very Good Adventures of Yam Roll in Happy Kingdom', 'CA', now()), +(17784, 'Short And Curly', 'AU', now()), +(17785, 'Everest: Beyond The Limit', 'US', now()), +(17786, 'Second Opinion', 'AU', now()), +(17787, 'The Most Annoying Pop Moments... We Hate to Love', 'UK', now()), +(17788, 'Antiques Roadshow (US)', 'US', now()), +(17789, 'Secret Recipes', 'AU', now()), +(17790, 'American Playhouse', 'US', now()), +(17791, 'Murdoch Mysteries', 'CA', now()), +(20821, 'Hunter (UK)', 'UK', now()), +(17793, 'Rosemary Shrager''s School For Cooks', 'UK', now()), +(17794, 'Summer Of Noise', 'UK', now()), +(17795, 'Visions Of The Future', 'UK', now()), +(17796, 'Trans-Antarctic Expedition 1955-1958', 'UK', now()), +(17797, 'The People Of Paradise', 'UK', now()), +(17798, 'Destruction Of The Indian', 'UK', now()), +(17799, 'The Miracle Of Bali', 'UK', now()), +(17800, 'Eastward With Attenborough', 'UK', now()), +(17801, '2 Dudes Catering', 'US', now()), +(17802, 'Dawn French''s More Boys Who Do: Comedy', 'UK', now()), +(17803, 'The Twenties In Colour', 'UK', now()), +(17804, 'River Cottage: Gone Fishing', 'UK', now()), +(17805, 'Living With Kimberly Stewart', 'UK', now()), +(17806, 'Love Child', 'UK', now()), +(17807, 'MonsterQuest', 'US', now()), +(17808, 'POWW: Powerful Women of Wrestling', 'US', now()), +(17809, 'Ghost Hunters International', 'US', now()), +(17810, 'Dynasties', 'AU', now()), +(17811, 'Upstaged', 'UK', now()), +(17812, 'The Art Of Spain', 'UK', now()), +(17813, 'Orangutan Island', 'US', now()), +(17815, 'UFO Hunters (History)', 'US', now()), +(17816, 'Dollhouse', 'US', now()), +(17817, 'Captain Cook: Obsession and Discovery', 'AU', now()), +(17818, 'Australia''s Best Backyards', 'AU', now()), +(17819, 'Ultimate Style', 'US', now()), +(17820, 'TV On Trial', 'UK', now()), +(17821, '50 Years Of BBC Television News', 'UK', now()), +(17822, 'Queensland Weekender', 'AU', now()), +(17823, 'Creek to Coast', 'AU', now()), +(17824, 'Great South East', 'AU', now()), +(17825, 'Sydney Weekender', 'AU', now()), +(17826, 'The Morning Show (AU)', 'AU', now()), +(17827, 'Discover', 'AU', now()), +(17828, 'Chowder', 'US', now()), +(17829, 'Secret Ops', 'US', now()), +(17830, 'The Shot', 'US', now()), +(17831, 'Famous Presents Hollywood Uncensored', 'AU', now()), +(17832, 'National Bingo Night (AU)', 'AU', now()), +(17833, 'Eclipse Music TV', 'AU', now()), +(17834, 'Blue Drop: Tenshi-tachi no Gikyoku', 'JP', now()), +(17835, 'Police Files - Unlocked', 'AU', now()), +(17837, 'Dickens Of London', 'UK', now()), +(17838, 'Night Wizard', 'JP', now()), +(17839, 'To The Manor Bowen', 'UK', now()), +(17840, 'Frontline/World', 'US', now()), +(17841, 'Heroes & Villains', 'UK', now()), +(17842, 'Live At The Apollo', 'UK', now()), +(17843, 'The 800 Million Pound Railway Station', 'UK', now()), +(17844, 'Exes & Ohs', 'US', now()), +(17845, 'Gangland', 'US', now()), +(17846, 'Rental Magica', 'JP', now()), +(17847, 'Tallahassee 7000', 'US', now()), +(17848, 'I Led Three Lives', 'US', now()), +(17849, 'Kerri-Anne', 'AU', now()), +(17850, 'Amazing Medical Stories', 'AU', now()), +(17851, 'The Farmer Wants A Wife (AU)', 'AU', now()), +(17852, 'The Gift (AU)', 'AU', now()), +(17853, 'The Mint (AU)', 'AU', now()), +(17854, 'The Singing Bee (AU)', 'AU', now()), +(17855, 'Sold', 'UK', now()), +(17856, 'Surprise Surprise Gotcha', 'AU', now()), +(17857, 'Cooking The Books', 'UK', now()), +(17858, 'Maxed Out', 'CA', now()), +(17859, 'Dirty Dancing: The Time of Your Life', 'UK', now()), +(17860, 'Trick My Trucker', 'US', now()), +(17861, 'AWA All-Star Wrestling', 'US', now()), +(17862, 'Comedy Shuffle', 'UK', now()), +(17863, 'The Librarians', 'AU', now()), +(17864, 'Stranger From Space', 'UK', now()), +(17865, 'Monarchy: The Royal Family at Work', 'UK', now()), +(17866, 'Can Fat Teens Hunt', 'UK', now()), +(17867, 'E-Vet Interns', 'US', now()), +(17868, 'Hej Rymden', 'SE', now()), +(17869, 'Sjukhuset', 'SE', now()), +(17870, 'Earth: Power Of The Planet', 'UK', now()), +(17871, 'Ben''s Zoo', 'UK', now()), +(17872, 'Arrange Me A Marriage', 'UK', now()), +(17873, 'Concrete Cowboys', 'US', now()), +(17874, 'The National Lottery: Who Dares Wins', 'UK', now()), +(17875, 'Leo & Liz in Beverly Hills', 'US', now()), +(17876, 'The Blair Years', 'UK', now()), +(17877, 'Red Eye', 'US', now()), +(17878, 'Heartland (CA)', 'CA', now()), +(17879, 'Bruce''s Generation Game - Now And Then', 'UK', now()), +(17880, 'Angelo''s', 'UK', now()), +(17881, 'Nearly Famous', 'UK', now()), +(17882, 'Dubplate Drama', 'UK', now()), +(17883, 'Før helgen', 'NO', now()), +(17884, 'Kjetil Og Kjartan Show', 'NO', now()), +(17885, 'De Syv Dødssyndene', 'NO', now()), +(17886, 'Kanal 1', 'NO', now()), +(17887, 'Giants', 'US', now()), +(17888, 'The Love Trap', 'UK', now()), +(17889, 'In Search Of Mr Average', 'UK', now()), +(17890, 'Liverpool Nativity', 'UK', now()), +(22522, 'Peter the Great', 'US', now()), +(17893, 'Lily Allen And Friends', 'UK', now()), +(17894, 'The Fallen', 'UK', now()), +(17895, 'Food Heavens', 'US', now()), +(17896, 'Fearless Planet', 'US', now()), +(17897, 'quarterlife', 'US', now()), +(17898, 'The One And Only...', 'UK', now()), +(17900, 'Meet the Magoons', 'UK', now()), +(17901, 'He''s a Bully, Charlie Brown', 'US', now()), +(17902, 'Kaamelott', 'FR', now()), +(17903, 'Number 96 (US)', 'US', now()), +(17904, 'The Disney Sunday Movie', 'US', now()), +(17905, 'Worlds of Childhood', 'US', now()), +(17906, 'America''s Psychic Challenge', 'US', now()), +(17907, 'Lisa Williams: Life Among the Dead', 'US', now()), +(17908, 'Survivors (2008)', 'UK', now()), +(17909, 'Olympic Dreams', 'UK', now()), +(17910, 'Hancock & Joan', 'UK', now()), +(17911, 'Hinter Gittern - Der Frauenknast', 'DE', now()), +(17912, 'Spy', 'UK', now()), +(17913, 'The Dennis Day Show', 'US', now()), +(17914, '3 Girls 3', 'US', now()), +(17915, 'Britz', 'UK', now()), +(17916, 'London Ink', 'UK', now()), +(17917, 'Billy Ray Cyrus... Home at Last', 'US', now()), +(17918, 'Deep South Wrestling', 'US', now()), +(17919, 'Duel (US)', 'US', now()), +(17920, 'The Harvey Korman Show', 'US', now()), +(17921, 'The Andros Targets', 'US', now()), +(17922, 'Shrek The Halls', 'US', now()), +(17923, 'Thank God You''re Here (UK)', 'UK', now()), +(17924, 'How Much Is Enough?', 'US', now()), +(17925, 'Sally Lockhart Series', 'UK', now()), +(17926, 'BBC Four World Cinema Award', 'UK', now()), +(17927, 'Frankie Howerd: Rather You Than Me', 'UK', now()), +(17928, 'The Curse Of Steptoe', 'UK', now()), +(17929, 'Hughie Green, Most Sincerely', 'UK', now()), +(17930, 'In The Wild With...', 'UK', now()), +(17931, 'Shootout!', 'US', now()), +(17932, 'Animal Extractors', 'US', now()), +(17933, 'AWE Overload', 'CA', now()), +(17934, 'Ultimate Factories', 'US', now()), +(17935, 'CBS Morning News', 'US', now()), +(17936, 'Newsround', 'UK', now()), +(17937, 'Arena (UK)', 'UK', now()), +(17938, 'What the Papers Say', 'UK', now()), +(17939, 'Super WHY!', 'US', now()), +(17940, 'Supersonic', 'UK', now()), +(17941, 'The Sentimental Agent', 'UK', now()), +(17942, 'Saki', 'UK', now()), +(17943, 'Rise of the Video Game', 'US', now()), +(17944, 'Brain Wall', 'JP', now()), +(17945, 'New Comedy Showcase', 'US', now()), +(17948, 'Country Music Awards', 'US', now()), +(17949, 'The TV Show', 'UK', now()), +(17950, 'The People''s £50 Million Lottery Giveaway', 'UK', now()), +(17951, 'Out of the Blue (2008)', 'AU', now()), +(17952, 'Shockwave', 'US', now()), +(17953, 'The Case of the Dangerous Robin', 'US', now()), +(17954, 'Salty', 'US', now()), +(17955, 'Polar Bear Week with Nigel Marven', 'UK', now()), +(17956, 'Ajoneuvos', 'FI', now()), +(17957, 'Inno', 'FI', now()), +(17958, 'The Civil War', 'US', now()), +(17959, 'The Moment of Truth (US)', 'US', now()), +(17960, 'Puttin on the Hits', 'US', now()), +(17961, 'Change the World in Five Minutes', 'AU', now()), +(17962, 'Food Safari', 'AU', now()), +(17963, 'Inside Australia', 'AU', now()), +(17964, 'Insight (AU)', 'AU', now()), +(17965, 'Eddie Retractorhead', 'UK', now()), +(17966, 'Is Your House Killing You?', 'AU', now()), +(17967, 'Marx and Venus', 'AU', now()), +(17968, 'Foul Play', 'US', now()), +(17969, 'The No. 1 Ladies'' Detective Agency', 'UK', now()), +(17970, 'The Passion', 'UK', now()), +(17971, 'Apparitions', 'UK', now()), +(17972, 'Elephant Diaries', 'UK', now()), +(17973, 'Kiss Of Death', 'UK', now()), +(17974, 'Lark Rise To Candleford', 'UK', now()), +(17975, 'Meet The Immigrants', 'UK', now()), +(17976, 'Florence Nightingale', 'UK', now()), +(17977, 'Mistresses', 'UK', now()), +(17978, 'Pope John Paul II – The War Years', 'UK', now()), +(17979, 'Sense And Sensibility', 'UK', now()), +(17980, 'O Flaen Dy Lygaid', 'UK', now()), +(17981, 'BBC News: 8pm Summary', 'UK', now()), +(17982, 'Oliver Twist (2007)', 'UK', now()), +(17983, 'Freefonix', 'UK', now()), +(17984, 'Don''t Forget The Lyrics (UK)', 'UK', now()), +(17985, 'Robbie The Reindeer', 'UK', now()), +(17986, 'NFL GameDay', 'US', now()), +(17987, 'Vuurzee', 'NL', now()), +(17988, 'Dossier Verhulst', 'NL', now()), +(17989, 'Lifestyles of the Rich and Famous', 'US', now()), +(17990, 'House Of Saddam', 'UK', now()), +(17991, 'Snoop Dogg''s Father Hood', 'US', now()), +(17992, 'Artic Exposure with Nigel Marvin', 'US', now()), +(17993, 'Growing Up', 'US', now()), +(17994, 'Britain Sings Christmas', 'UK', now()), +(17995, 'Medea', 'NL', now()), +(17996, 'Legende van de Bokkerijders, De', 'NL', now()), +(17997, 'The Future Is Wild (2007)', 'US', now()), +(17998, 'The Search for the Next Elvira', 'US', now()), +(17999, 'Public Defender', 'US', now()), +(18000, 'Jake''s Progress', 'UK', now()), +(18001, 'Senkveld', 'NO', now()), +(18002, 'Olsenbanden Jr''s Første Kupp', 'NO', now()), +(18003, 'Paranormal State', 'US', now()), +(18004, 'Quint-Essential', 'US', now()), +(18005, 'Na cestě...', 'CZ', now()), +(18006, 'Kaun Banega Crorepati', 'IN', now()), +(18007, 'Twister Sisters', 'US', now()), +(18008, 'East West 101', 'AU', now()), +(18009, 'Prometheus and Bob', 'US', now()), +(18010, 'Podlove', 'AU', now()), +(18011, 'Tyler''s Ultimate', 'US', now()), +(18012, 'Party Mamas', 'CA', now()), +(18013, 'Dress My Nest', 'US', now()), +(18015, 'Vasili’s Garden', 'AU', now()), +(18016, 'Extreme Pilgrim', 'UK', now()), +(18017, 'Are You Smarter Than a 5th Grader? (AU)', 'AU', now()), +(18018, 'CyberShack', 'AU', now()), +(18019, 'Never Better', 'UK', now()), +(18020, 'Friday Night Download', 'AU', now()), +(18021, 'Kick2Kick', 'AU', now()), +(18023, 'Natascha Kampusch trifft', 'AT', now()), +(18024, 'Magic Roundabout (2007)', 'UK', now()), +(18025, 'Fashionably Late with Stacy London', 'US', now()), +(18026, 'The Lost Children', 'NZ', now()), +(18027, 'Natural Born Sellers', 'UK', now()), +(18028, 'Kerry Katona: Crazy In Love', 'UK', now()), +(18029, '50 Things Every Citizen Should Know About', 'UK', now()), +(18030, 'Puzzle Play', 'AU', now()), +(18031, 'Rock It!', 'AU', now()), +(18032, 'Clannad', 'JP', now()), +(18033, 'Marc Wootton Exposed', 'UK', now()), +(18034, 'The Revenge Files Of Alistair Fury', 'UK', now()), +(18035, 'Kill It, Cook It, Eat It', 'UK', now()), +(18036, 'POP! WHAT IS IT GOOD FOR?', 'UK', now()), +(18037, 'Bubsy', 'US', now()), +(18038, 'Mobile Suit Gundam 00', 'JP', now()), +(18039, 'Wild China', 'UK', now()), +(18040, 'Bewitched (UK)', 'UK', now()), +(18041, 'White House Christmas', 'US', now()), +(18042, 'ef - a tale of memories', 'JP', now()), +(18043, 'Tribal Life: Meet the Namal', 'US', now()), +(18044, 'Hair Trauma', 'US', now()), +(18045, 'Make or Break', 'AU', now()), +(18046, 'Clash of the Choirs', 'US', now()), +(18047, 'American Gladiators (2008)', 'US', now()), +(18048, 'Xtreme Pro Wrestling', 'US', now()), +(18049, 'XCW Wrestling', 'US', now()), +(18050, 'Hell Date', 'US', now()), +(18051, 'Shion no Oh', 'JP', now()), +(18052, 'Ghost Hound', 'JP', now()), +(18053, 'Prism Ark', 'JP', now()), +(18054, 'Oh! Edo Rocket', 'JP', now()), +(18055, 'Ski Sunday', 'UK', now()), +(18056, 'Button Moon', 'UK', now()), +(18057, 'Heroes: Phoenix', 'US', now()), +(18058, 'Eating In The Sun', 'UK', now()), +(18059, 'Spijkerhoek', 'NL', now()), +(18060, 'Destination 25', 'US', now()), +(18061, 'Extreme Hotels', 'US', now()), +(18062, 'All Stars', 'NL', now()), +(18063, 'Black Lagoon', 'AJ', now()), +(18064, 'Parking Wars', 'US', now()), +(18065, 'Kimikiss pure rouge', 'JP', now()), +(18066, 'Dragonaut - The Resonance', 'JP', now()), +(18067, 'Kodomo no Jikan', 'JP', now()), +(18068, 'Art Attack With Lee Sandstead', 'US', now()), +(18069, 'The Deal Hunter', 'US', now()), +(18070, 'Katekyo Hitman Reborn!', 'JP', now()), +(18071, 'Moyasimon', 'JP', now()), +(18072, 'Debiteuren Crediteuren', 'NL', now()), +(18073, 'Labyrint', 'SE', now()), +(18074, 'Kobra', 'SE', now()), +(18075, 'Ricky Sprocket', 'UK', now()), +(18076, 'Auschwitz: The Nazis and the "Final Solution"', 'UK', now()), +(18077, 'Mokke', 'JP', now()), +(18078, 'Echo Beach', 'UK', now()), +(18079, 'Yes! Precure 5', 'JP', now()), +(18080, 'Full frys', 'SE', now()), +(18081, 'Elmo''s Christmas Countdown', 'US', now()), +(18082, 'Rich Bride, Poor Bride', 'US', now()), +(18083, 'Picture This', 'UK', now()), +(18084, 'The Royal Today', 'UK', now()), +(18085, 'Lenry Henry.TV', 'UK', now()), +(18086, 'Rough Guide', 'UK', now()), +(18087, 'Moving Wallpaper', 'UK', now()), +(18088, 'Honest', 'UK', now()), +(18089, 'It Pays To Watch', 'UK', now()), +(18090, 'Filthy Rich: Cattle Drive', 'US', now()), +(18091, 'Make Your Child Brilliant', 'UK', now()), +(18092, 'Love Chain', 'US', now()), +(18093, 'Facing Fame', 'US', now()), +(18094, 'The Daily 10', 'US', now()), +(18095, 'Chelsea Lately', 'US', now()), +(18096, 'Smash Lab', 'US', now()), +(18097, 'Basil''s Swap Shop', 'UK', now()), +(18098, 'I''d Do Anything (2008)', 'UK', now()), +(18099, 'Tiger Team', 'US', now()), +(18100, 'The Joulukalenteri', 'FI', now()), +(18101, 'Fist of the North Star 2', 'JP', now()), +(18102, 'Generation Kill', 'US', now()), +(18103, 'Rabbit Fall', 'CA', now()), +(18104, 'Negima! Magister Negi Magi', 'JP', now()), +(18105, 'Al salir de clase', 'ES', now()), +(18106, 'Some Assembly Required', 'US', now()), +(18107, 'Wangan Midnight', 'JP', now()), +(18108, 'WXW Rage TV', 'US', now()), +(18109, 'Fight Quest', 'US', now()), +(18110, 'Bone Detectives', 'US', now()), +(18111, 'Weapon Masters', 'US', now()), +(18112, 'The Al Morgan Show', 'US', now()), +(18113, 'And Everything Nice', 'US', now()), +(18114, 'The Armed Forces Hour', 'US', now()), +(18115, 'Author Meets The Critics', 'US', now()), +(18116, 'Ocean Force', 'US', now()), +(18117, 'Sleep On It', 'US', now()), +(18118, 'Half Ton Mum', 'UK', now()), +(18119, 'My Fake Baby', 'UK', now()), +(18120, 'The Truth About Binge Drinking', 'UK', now()), +(18121, 'Citizen Smith (2008)', 'UK', now()), +(18122, 'Christmas at the Riviera', 'UK', now()), +(18123, 'The Man Who Lives With Bears', 'UK', now()), +(18124, 'The Kidnapping of Elizabeth Smart', 'UK', now()), +(18125, 'The Hidden Story of Jesus', 'UK', now()), +(18126, 'The Edwardian Larder', 'UK', now()), +(18127, 'Richard Hammond Meets Evel Knievel', 'UK', now()), +(18128, 'To Tell the Truth (1990)', 'US', now()), +(18129, 'The Curse of the Ice Mummy', 'UK', now()), +(18130, 'Floods: The Year Britain Went Under', 'UK', now()), +(18131, 'Pioneers of Television', 'US', now()), +(18132, 'Whacked Out Videos', 'US', now()), +(18133, 'Desperate Spaces', 'US', now()), +(18134, 'To Tell The Truth (1980)', 'US', now()), +(18135, 'To Tell The Truth (1969)', 'US', now()), +(18136, 'How To Look Good Naked (US)', 'US', now()), +(18137, 'DogTown (US)', 'US', now()), +(18138, 'Ugliest House on the Block', 'US', now()), +(18139, 'Top This Party: Orange County', 'US', now()), +(18140, 'Miss America Reality Check', 'US', now()), +(18141, 'General Electric Summer Originals', 'US', now()), +(18142, 'Næturvaktin', 'IS', now()), +(18143, 'jPod', 'CA', now()), +(18144, 'Battleship Antartica', 'UK', now()), +(18145, 'Westenwind', 'NL', now()), +(18146, 'Alien Abductions: True Confessions', 'US', now()), +(18147, 'Life or Death', 'US', now()), +(18148, 'David Nolande', 'FR', now()), +(18149, 'La légende des 3 clefs', 'FR', now()), +(18150, 'Your Favorite Story', 'US', now()), +(18151, 'Hessie''s Shed', 'AU', now()), +(18152, 'Westinghouse Preview Theatre', 'US', now()), +(18153, 'National Body Challenge', 'US', now()), +(18155, 'Hugh''s Chicken Run', 'UK', now()), +(18157, 'The Border', 'CA', now()), +(18158, 'Street Patrol', 'US', now()), +(18159, 'Wish You Were Here: Now And Then', 'UK', now()), +(18160, 'The Psychiatrist', 'US', now()), +(18161, 'Vratice se rode', 'YI', now()), +(18162, 'Mackenzie''s Raiders', 'US', now()), +(18163, 'Sophie', 'CA', now()), +(18164, 'Breaking Bad', 'US', now()), +(18165, 'Make Me A Supermodel (US)', 'US', now()), +(18166, 'Rehab with Dr. Drew', 'US', now()), +(18167, 'Rosario + Vampire', 'JP', now()), +(18168, 'H2O ~Footprints in the Sand~', 'JP', now()), +(18170, 'True Tears', 'JP', now()), +(18171, 'Kyoshiro to Towa no Sora', 'JP', now()), +(18172, 'My Big Redneck Wedding', 'US', now()), +(18173, 'Kottan Ermittelt', 'AT', now()), +(18174, 'Sons of Anarchy', 'US', now()), +(18175, 'Wallander', 'UK', now()), +(18176, 'Paradise Or Bust', 'UK', now()), +(18177, 'Wonderland (UK)', 'UK', now()), +(18178, 'Country Fried Home Videos', 'US', now()), +(18179, 'Rachael''s Vacation', 'US', now()), +(18181, 'MVP', 'CA', now()), +(18182, 'This Man Dawson', 'US', now()), +(18183, 'Sharky and George', 'FR', now()), +(18184, 'Light It Up', 'US', now()), +(18185, 'Anna', 'DE', now()), +(18186, 'Persona -trinity soul-', 'JP', now()), +(18187, 'Kimi ga Aruji de Shitsuji ga Ore de', 'JP', now()), +(18188, 'War and Peace (2007)', 'eu', now()), +(18189, 'Sommer', 'DK', now()), +(18190, 'Anna Pihl', 'DK', now()), +(20419, 'Clone', 'UK', now()), +(18192, 'Bibleman: Genesis', 'US', now()), +(18193, 'American Experience', 'US', now()), +(18194, 'Die Anwälte', 'DE', now()), +(18195, 'Herzog', 'DE', now()), +(18196, 'The next Uri Geller', 'DE', now()), +(18197, 'De Unge Mødre', 'DK', now()), +(18198, 'Law & Order: UK', 'UK', now()), +(18199, 'Whacked out Sports', 'US', now()), +(18200, 'The Re-Inventors', 'UK', now()), +(18201, 'Clash Of The Worlds', 'UK', now()), +(18202, 'Hope Springs', 'UK', now()), +(18203, 'Dual', 'UK', now()), +(18204, 'Ich bin ein Star - Holt mich hier raus!', 'DE', now()), +(18205, 'Paris 7000', 'US', now()), +(18206, 'The Unexpected', 'US', now()), +(18207, 'Simply the best', 'DE', now()), +(18208, 'Schaefer Century Theater', 'US', now()), +(18209, 'Televideo Theater', 'US', now()), +(18210, 'City Of Vice', 'UK', now()), +(18211, 'Volles Haus', 'DE', now()), +(18212, 'Schlüsselreiz', 'DE', now()), +(18213, 'Mord mit Aussicht', 'DE', now()), +(18214, 'Medicine Men Go Wild', 'UK', now()), +(18215, 'The Jewish Americans', 'US', now()), +(18216, 'Merlin (1998)', 'UK', now()), +(18217, 'Broadway Television Theatre', 'US', now()), +(18218, 'Joseph Schildkraut Presents', 'US', now()), +(18219, 'Your Play Time', 'US', now()), +(18220, 'Crown Theatre with Gloria Swanson', 'US', now()), +(18221, 'The Whistler', 'US', now()), +(18222, 'Mr. Citizen', 'US', now()), +(18223, 'My Shocking Story', 'US', now()), +(18224, 'Feasty Boys Eat America', 'US', now()), +(18225, 'Conrad Nagel Theater', 'US', now()), +(18226, 'O. Henry Playhouse', 'US', now()), +(18227, 'George Sanders Mystery Theatre', 'US', now()), +(18228, 'Men of Annapolis', 'US', now()), +(18229, 'Bibleman: Powersource', 'US', now()), +(18230, 'Official Detective', 'US', now()), +(18231, 'Flight', 'US', now()), +(18232, 'Jeff et Leo, flics et jumeaux', 'FR', now()), +(18233, 'Lawbreaker', 'US', now()), +(18234, 'Amne$ia', 'US', now()), +(18236, 'Die Nibelungen', 'DE', now()), +(18237, 'Pinky Dinky Doo', 'US', now()), +(18238, 'Maisy', 'UK', now()), +(18239, 'Singing Bee', 'SE', now()), +(18240, 'Hurtta ja stara', 'FI', now()), +(18241, 'Köyhät ritarit', 'FI', now()), +(18242, 'Tracey Ullman''s State of the Union', 'US', now()), +(18243, 'Grand Star', 'CA', now()), +(18244, 'Less Than Kind', 'CA', now()), +(18245, 'Build A New Life In The Country', 'UK', now()), +(18246, 'Huvila&Huussi', 'FI', now()), +(18247, 'Teenager außer Kontrolle', 'DE', now()), +(18248, 'Ich Tarzan, Du Jane!', 'DE', now()), +(18249, 'Life After People', 'US', now()), +(18250, 'Battle of the Bods', 'US', now()), +(18251, 'Celebrity Circus (US)', 'US', now()), +(18252, 'Celebrity Circus (AU)', 'AU', now()), +(18253, 'Avalanche Dogs', 'US', now()), +(18254, 'Unser Charly', 'DE', now()), +(18257, 'Dangerous Encounters', 'US', now()), +(18258, 'Strömsö', 'FI', now()), +(18259, 'Tequila and Bonetti', 'US', now()), +(18260, 'Hatenkō Yugi', 'JP', now()), +(18261, 'Sayonara Zetsubo Sensei', 'JP', now()), +(18262, 'In Treatment', 'US', now()), +(18263, 'Kaiba', 'JP', now()), +(18264, 'Shigofumi: ~Stories of Last Letter~', 'JP', now()), +(18265, 'Minami-ke: Okawari', 'JP', now()), +(18266, 'Aria the Origination', 'JP', now()), +(18267, 'Gunslinger Girl -Il Teatrino-', 'JP', now()), +(18268, 'Spice and Wolf', 'JP', now()), +(18269, 'Deadline (NL)', 'NL', now()), +(18270, 'Larry Boy', 'US', now()), +(18271, 'SuperBook', 'JP', now()), +(18272, 'The Bussey Bunch', 'US', now()), +(20807, 'QI (NL)', 'NL', now()), +(18274, 'Tess Of The D''Urbervilles', 'UK', now()), +(18275, 'The Millionaire Matchmaker', 'US', now()), +(18276, 'The Real Hustle (US)', 'US', now()), +(18277, 'c/o Segemyhr', 'SE', now()), +(18278, 'Not for Hire', 'US', now()), +(18279, 'Business Nation', 'US', now()), +(18280, 'Alan Carr''s Celebrity Ding Dong', 'UK', now()), +(18281, 'Bold Venture', 'US', now()), +(18282, 'Target (US)', 'US', now()), +(18283, 'Germany''s Next Topmodel', 'DE', now()), +(18284, 'Stars auf Eis', 'DE', now()), +(18285, 'The Guard', 'CA', now()), +(18286, 'Head Case', 'US', now()), +(18287, 'Desi DNA', 'UK', now()), +(18288, '100 Guinness Book of World Records', 'US', now()), +(18289, 'The Last Precinct', 'US', now()), +(18290, 'The Poddington Peas', 'UK', now()), +(18291, 'Blind Date', 'UK', now()), +(18292, 'Raising the Bar', 'US', now()), +(18293, 'Shell Game', 'US', now()), +(18294, 'Mariah', 'US', now()), +(18295, 'Spies', 'US', now()), +(18296, 'Little Dorrit', 'UK', now()), +(18297, '10 Days To War', 'UK', now()), +(18298, 'Die Niels Ruf Show', 'DE', now()), +(18299, 'Futurecooks', 'UK', now()), +(18300, 'Die Ausreißer - Der Weg zurück', 'DE', now()), +(18301, 'Gone Country', 'US', now()), +(18302, 'The Pursuit of Happiness (1987)', 'US', now()), +(18303, 'Dale Jr. - Shifting Gears', 'US', now()), +(18304, 'Us Girls (Philippines)', 'PH', now()), +(18305, 'Studio 5B', 'US', now()), +(18306, 'One of the Boys (1989)', 'US', now()), +(18307, 'Dream Street', 'US', now()), +(18308, 'The Dick & Paula Celebrity Special', 'US', now()), +(18309, 'Kaze no Shoujo Emily', 'JP', now()), +(18310, 'Wolfgang Puck''s Cooking Class', 'US', now()), +(18311, 'HippHipp!', 'SE', now()), +(18312, 'Princess Sarah', 'PH', now()), +(21048, 'Nederland zingt', 'NL', now()), +(18314, 'Michael Palin''s Hemingway Adventure', 'UK', now()), +(18315, 'Pole to Pole', 'UK', now()), +(18316, 'Nodame Cantabile (2007)', 'JP', now()), +(18317, 'BeTipul', 'IL', now()), +(18318, 'Design Squad', 'US', now()), +(18319, 'Small Talk (US)', 'US', now()), +(18320, 'Full Circle with Michael Palin', 'UK', now()), +(18321, 'Keeping Kids Healthy', 'US', now()), +(18322, 'Scalp', 'FR', now()), +(18323, 'America''s Ballroom Challenge', 'US', now()), +(18324, 'Scene of the Crime (US)', 'US', now()), +(18325, 'Meet McGraw', 'US', now()), +(18326, 'UFO Hunters (SciFi)', 'US', now()), +(18327, 'Paris Enquêtes Criminelles', 'FR', now()), +(18328, 'McNaughton''s Daughter', 'US', now()), +(18329, 'Underbelly', 'AU', now()), +(18330, 'Le Chevalier D''Eon', 'JP', now()), +(18331, 'Satisfaction', 'AU', now()), +(18332, 'Hjälp!', 'SE', now()), +(18333, 'Black Blood Brothers', 'JP', now()), +(18334, 'My Dad Is Better Than Your Dad', 'US', now()), +(18335, 'Norges Herligste', 'NO', now()), +(18336, 'Nattsøsteren', 'NO', now()), +(18337, 'I Kveld', 'NO', now()), +(18338, 'Escape With ET', 'AU', now()), +(18339, 'My First Home', 'US', now()), +(18340, 'Ten News at Five (Sydney)', 'AU', now()), +(18341, 'Faith Baldwin Romance Theatre', 'US', now()), +(18342, 'So You Think You Can Dance (AU)', 'AU', now()), +(18345, 'Simply Footy', 'AU', now()), +(18346, 'Cool Aid', 'AU', now()), +(18347, 'Toasted TV', 'AU', now()), +(18348, 'Suburban Secrets', 'US', now()), +(18349, 'Rags to Riches (2006)', 'US', now()), +(18350, 'Die Wahrheit und nichts als die Wahrheit', 'DE', now()), +(18351, 'Engel im Einsatz', 'DE', now()), +(18352, 'Peep!', 'DE', now()), +(18353, 'Suomen Unelmien poikamies', 'FI', now()), +(18354, 'G Piste', 'FI', now()), +(18355, 'The Mr. Men Show', 'US', now()), +(18356, 'Britain''s Dream Homes', 'UK', now()), +(18357, 'Deutschland sucht den Superstar', 'DE', now()), +(18358, 'Saving Kids', 'AU', now()), +(18359, 'African American Lives', 'US', now()), +(18360, 'Der Bergdokotor', 'DE', now()), +(18361, 'Doctor''s Diary', 'DE', now()), +(18363, 'Suojelijat', 'FI', now()), +(18364, 'Guthy-Renker Australia', 'AU', now()), +(18365, 'Tanssii Tähtien Kanssa', 'FI', now()), +(18366, 'Randy Jackson Presents: America''s Best Dance Crew', 'US', now()), +(18367, 'Veljet', 'FI', now()), +(18368, 'Lemur Kingdom', 'US', now()), +(18369, 'Escape to Chimp Eden', 'US', now()), +(18370, '10 Years Younger (US)', 'US', now()), +(18371, 'Chandon Pictures', 'AU', now()), +(18372, 'Forsthaus Falkenau', 'DE', now()), +(18373, 'Borettslaget', 'NO', now()), +(18374, 'Farmen', 'NO', now()), +(18375, 'Ring of Honor', 'US', now()), +(18376, 'Petfinder', 'US', now()), +(18377, 'LIFE (ライフ)', 'JP', now()), +(18378, 'Code Geass', 'JP', now()), +(18379, 'George of the Jungle (2007)', 'US', now()), +(18380, 'Luksusfellen', 'NO', now()), +(18381, 'Reinlykke', 'NO', now()), +(18382, 'Bella', 'FI', now()), +(18383, 'Åndenes Makt', 'NO', now()), +(18384, 'Bloch', 'DE', now()), +(18385, 'Commissario Laurenti', 'DE', now()), +(18386, 'Winners', 'AU', now()), +(18387, 'Wildside (AU)', 'AU', now()), +(18388, 'Fringe', 'US', now()), +(18389, 'Galileo Mystery', 'DE', now()), +(18390, 'Urban Vermin', 'CA', now()), +(18391, 'We Can Be Heroes', 'AU', now()), +(18394, 'Phoo Action', 'UK', now()), +(18395, 'Two Men in a Tinnie', 'AU', now()), +(18396, 'TwentyfourSeven (AU)', 'AU', now()), +(18397, 'The Cleaner', 'US', now()), +(18398, 'E24', 'UK', now()), +(18399, 'SAS: The Originals', 'UK', now()), +(18400, 'Kerwhizz', 'UK', now()), +(18401, 'The Life and Times of Tim', 'US', now()), +(18402, 'Kröd Mändoon and the Flaming Sword of Fire', 'US', now()), +(18403, 'The Goode Family', 'US', now()), +(18404, 'Lewis Black''s Root of All Evil (US)', 'US', now()), +(18405, 'Riget', 'DK', now()), +(18406, 'Berulfsens Pengebinge', 'NO', now()), +(18407, 'Golden Goal', 'NO', now()), +(18408, 'Cutters', 'US', now()), +(18409, 'Charterfeber', 'NO', now()), +(18410, 'Samurai Girl', 'US', now()), +(18411, 'Leverage', 'US', now()), +(18412, 'Dawn ...', 'UK', now()), +(18413, 'Hjelpekorpset', 'NO', now()), +(18414, 'Ping-Pong', 'NO', now()), +(18415, 'Sommeren I Mitt Liv', 'NO', now()), +(18416, 'El Síndrome de Ulises', 'ES', now()), +(18417, 'Más Vale Tarde', 'US', now()), +(18418, 'Empty', 'UK', now()), +(18419, 'Big Brother (Albania)', 'AL', now()), +(18420, 'Big Brother (Argentina)', 'AR', now()), +(18421, 'Big Brother (Belgium)', 'BE', now()), +(18423, 'Big Brother (Canada)', 'CA', now()), +(18424, 'The Zoo', 'AU', now()), +(18425, 'Ultimate Recipe Showdown', 'US', now()), +(18426, 'Bulging Brides', 'CA', now()), +(18427, 'Lalola', 'AR', now()), +(18428, 'Sirkusliv', 'NO', now()), +(18429, 'Dyrlegene', 'NO', now()), +(18430, 'Et Lite Stykke Thailand', 'NO', now()), +(18431, 'Showbiz India', 'IN', now()), +(18432, 'Bruce', 'DE', now()), +(18433, 'History of the Joke', 'US', now()), +(18434, 'Being Human (UK)', 'UK', now()), +(18435, 'Stupid Stupid Man', 'AU', now()), +(18436, 'Andra Avenyn', 'SE', now()), +(18437, 'Kungamordet', 'SE', now()), +(18438, 'BrainBox Challenge', 'UK', now()), +(18439, 'Fredsstyrkan', 'SE', now()), +(18440, 'Klass 9A', 'SE', now()), +(18441, 'Showbiz India Xtreme', 'US', now()), +(18442, 'Freezing (UK)', 'UK', now()), +(18443, 'Rakt på med K-G Bergström', 'SE', now()), +(18444, 'Bygglov', 'SE', now()), +(18445, 'Packat Och Klart', 'SE', now()), +(18446, 'Uti Vår Hage', 'NO', now()), +(18447, 'Tid For Hjem', 'NO', now()), +(18448, 'EarthPulse', 'AU', now()), +(18449, 'Koffee with Karan', 'IN', now()), +(18450, 'Big Boss', 'IN', now()), +(18451, 'Odwróceni', 'PL', now()), +(18452, 'Huis Anubis, Het', 'NL', now()), +(18453, 'Sleek Geeks', 'AU', now()), +(18454, 'Norske Talenter', 'NO', now()), +(18455, 'When Were we Funniest?', 'UK', now()), +(18456, 'Bingolotto', 'UK', now()), +(18457, 'Fathers and Sons (US)', 'US', now()), +(18458, 'First Impressions', 'US', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(18459, 'Mallorca - Auf der Suche nach dem Paradies', 'ES', now()), +(18460, 'Rock Rivals', 'UK', now()), +(18461, 'Dis/Connected', 'UK', now()), +(18462, 'Out of the Question', 'AU', now()), +(18463, 'Foot in the Door', 'US', now()), +(18464, 'Half Nelson', 'US', now()), +(18465, 'Unter uns', 'DE', now()), +(18466, 'So ist das Leben', 'DE', now()), +(18467, 'Geliebte Schwestern', 'DE', now()), +(18468, 'Alle zusammen - Jeder für sich', 'DE', now()), +(18469, 'Marienhof', 'DE', now()), +(18470, 'Pucca', 'US', now()), +(18471, 'The Latest Buzz', 'CA', now()), +(18472, 'The Story Of India', 'UK', now()), +(18473, 'Die Marco Rima Show', 'DE', now()), +(18474, 'Transamerican Love Story', 'US', now()), +(18475, 'Sykehuset', 'NO', now()), +(18476, 'God kveld, Dagfinn', 'NO', now()), +(18477, 'Pokerfjes', 'NO', now()), +(18478, 'Showbiz', 'NO', now()), +(18479, 'The Jean Carroll Show', 'US', now()), +(18480, 'Recipe for Success (UK)', 'UK', now()), +(18481, 'AX Men', 'US', now()), +(18483, 'ProSieben Funny Movie', 'DE', now()), +(18484, 'SOKO Leipzig', 'DE', now()), +(18485, 'Der Alte', 'DE', now()), +(18486, 'Ein Fall für zwei', 'DE', now()), +(18487, 'SketchNews', 'DE', now()), +(18488, 'Deal Or No Deal (DE)', 'DE', now()), +(18489, 'Wer wird Millionär?', 'DE', now()), +(18490, 'Rote Rosen', 'DE', now()), +(18491, 'Crusoe', 'US', now()), +(18492, 'Final Report', 'US', now()), +(18493, 'Joe & Mabel', 'US', now()), +(18494, 'Just in Time', 'US', now()), +(18495, 'Leave It to Larry', 'US', now()), +(18496, 'Kuba Wojewódzki', 'PL', now()), +(18497, 'The Fixer', 'UK', now()), +(18498, 'Autofil', 'NO', now()), +(18499, 'Jakten På Den 6 Sans', 'NO', now()), +(18500, 'Nordkalotten 365', 'NO', now()), +(18501, 'Breaking Into Tesco', 'UK', now()), +(18502, 'Pastewka', 'DE', now()), +(18503, 'Die Harald Schmidt Show', 'DE', now()), +(18504, 'Harald Schmidt', 'DE', now()), +(18506, 'Die Wochenshow', 'DE', now()), +(18507, 'RTL Samstag Nacht', 'DE', now()), +(18508, 'Sat.1 Nachrichten', 'DE', now()), +(18509, 'Your Mama Don''t Dance', 'US', now()), +(18510, 'Glaskäke - världens bästa tv-program', 'SE', now()), +(18511, 'Newstime', 'DE', now()), +(18512, 'Tagesschau', 'DE', now()), +(18513, 'RTL aktuell', 'DE', now()), +(18514, 'Battle 360', 'US', now()), +(18515, 'The ABC Afternoon Playbreak', 'US', now()), +(18516, 'Freaky Eaters', 'UK', now()), +(18517, 'Here Come the Newlyweds', 'US', now()), +(18518, 'Miss Austen Regrets', 'UK', now()), +(18519, 'Way To Blue', 'UK', now()), +(18520, 'Blue Dragon (US)', 'AJ', now()), +(18521, 'Kids Unlimited', 'US', now()), +(18522, 'The Secret Life of a Soccer Mom', 'US', now()), +(18523, 'After the Attack', 'US', now()), +(18524, 'Women Behind Bars', 'US', now()), +(18525, 'The Real Housewives of New York City', 'US', now()), +(18526, 'Deliver Me', 'US', now()), +(18527, 'Delia', 'UK', now()), +(18528, 'Laura, Ben And Him', 'UK', now()), +(18529, 'Fear Itself', 'US', now()), +(18530, 'Real Life Mysteries', 'US', now()), +(18531, 'Flashpoint', 'CA', now()), +(18532, 'Crime 360', 'US', now()), +(18533, 'TTN', 'AU', now()), +(18534, 'The Western Front', 'AU', now()), +(18535, 'Deal or No Deal (South Africa)', 'ZA', now()), +(18536, 'Deal or No Deal (Canada)', 'CA', now()), +(18537, 'Deal or No Deal (NL)', 'NL', now()), +(18538, 'Chop Socky Chooks', 'US', now()), +(18539, 'Deal or No Deal (Norway)', 'NO', now()), +(18540, 'Dear Detective', 'US', now()), +(18541, 'Whodunnit?', 'US', now()), +(18542, 'Presenting Susan Anton', 'US', now()), +(18543, 'The Big Show', 'US', now()), +(18544, 'Idol (Norway)', 'NO', now()), +(18545, 'Flip That Restaurant', 'US', now()), +(18546, 'Shields and Yarnell', 'US', now()), +(18547, 'The Kelly Monteith Show', 'US', now()), +(18548, 'Keyzer en de Boer Advocaten', 'NL', now()), +(18549, 'Vampire Knight', 'JP', now()), +(18550, 'Allison & Lillia', 'JP', now()), +(18551, 'Glass Maiden', 'JP', now()), +(18552, 'Robins', 'SE', now()), +(18553, 'Kure-nai', 'JP', now()), +(18554, 'Itazura na Kiss (2008)', 'JP', now()), +(18555, 'Pop Fiction', 'US', now()), +(18556, 'Junjo Romantica', 'JP', now()), +(18557, 'Kamen no Maid Guy', 'JP', now()), +(18558, 'Kanokon', 'JP', now()), +(18559, 'Macross Frontier', 'JP', now()), +(18560, 'The Steve Wilkos Show', 'US', now()), +(18561, 'That''s Amoré!', 'US', now()), +(18562, 'Cheerleader U', 'US', now()), +(18563, 'The Brothers Brannagan', 'US', now()), +(18564, 'Monochrome Factor', 'JP', now()), +(18565, 'Nabari no Ō', 'JP', now()), +(18566, 'Neo Angelique Abyss', 'JP', now()), +(18567, 'S.A', 'JP', now()), +(18568, 'Soul Eater', 'JP', now()), +(18569, 'To-Love-Ru', 'JP', now()), +(18570, 'Library War', 'JP', now()), +(18571, 'The Passions Of Girls Aloud', 'UK', now()), +(18572, 'High School Confidential', 'US', now()), +(18573, 'Dave Navarro''s Spread', 'US', now()), +(18574, 'Melodifestivalen', 'SE', now()), +(18575, 'The Suite Life on Deck', 'US', now()), +(18577, 'Keith Lemon''s Very Brilliant World Tour', 'UK', now()), +(18578, 'How It Was', 'US', now()), +(18579, 'Captain David Grief', 'US', now()), +(18580, 'John Adams', 'US', now()), +(18581, 'The Diets That Time Forgot', 'UK', now()), +(18582, 'TV tiglon', 'GR', now()), +(18583, 'Istera irthan oi melisses', 'GR', now()), +(18584, 'Τo Kokkino Domatio', 'GR', now()), +(18585, 'Gordo Visita', 'BR', now()), +(18586, 'True Caribbean Pirates', 'US', now()), +(18587, 'How William Shatner Changed the World', 'US', now()), +(18588, 'Classic Albums (US)', 'US', now()), +(18589, 'Street Match', 'US', now()), +(18590, 'I Can Make You Thin with Paul McKenna', 'US', now()), +(18591, 'Im Namen des Gesetzes', 'DE', now()), +(18592, 'Tribos', 'BR', now()), +(18593, 'Samt und Seide', 'DE', now()), +(18594, 'Så ska det låta', 'SE', now()), +(18595, 'Meine wunderbare Familie', 'DE', now()), +(18596, 'Wege zum Glück', 'DE', now()), +(18597, 'Láskanie', 'SK', now()), +(18598, 'Myles of Style', 'US', now()), +(18599, 'Kyōran Kazoku Nikki', 'JP', now()), +(18600, 'Hunters and Hunted', 'US', now()), +(18601, 'Nijū-Mensō no Musume', 'JP', now()), +(18602, 'Iron Ring', 'US', now()), +(18603, 'Pick Up', 'IL', now()), +(18604, 'Survivor (Israel)', 'IL', now()), +(18605, 'Marie', 'US', now()), +(18606, 'Sagir Oda', 'TR', now()), +(18607, 'He Kills Coppers', 'UK', now()), +(18608, 'SOKO Köln', 'DE', now()), +(18609, 'SOKO Wismar', 'DE', now()), +(18610, 'The Everly Brothers Show', 'US', now()), +(18611, 'America''s Prom Queen', 'US', now()), +(18620, 'I Know My Kid''s A Star', 'US', now()), +(18613, 'The Shark Net', 'AU', now()), +(18621, 'Power of 10 (DE)', 'DE', now()), +(18615, 'Playa del Sol', 'SE', now()), +(18619, 'Hollywood Residential', 'US', now()), +(18618, 'Black Poker Stars Invitational', 'US', now()), +(18622, 'Soria Moria', 'NO', now()), +(18624, 'Iubire ca in filme', 'RO', now()), +(18625, 'Amor a Palos', 'VE', now()), +(18626, 'Inima de tigan', 'RO', now()), +(18627, 'Katie & Peter: The Next Chapter Down Under', 'UK', now()), +(18628, 'Mi prima ciela', 'VE', now()), +(18629, 'I Survived', 'US', now()), +(18630, 'T and T', 'US', now()), +(18632, 'Latin American Idol', 'AR', now()), +(18634, 'Contra reloj', 'VE', now()), +(18635, 'Zorro: La Espada y la Rosa', 'CO', now()), +(18636, 'Daily Cooks Challenge', 'UK', now()), +(18637, 'Familiesagaen De syv søstre', 'NO', now()), +(18638, 'Häxdansen', 'SE', now()), +(18639, 'The Truth Behind the Sitcom Scandals', 'US', now()), +(18640, 'Rock the Cradle', 'US', now()), +(18641, 'American Chronicles', 'US', now()), +(18642, 'Tiger - Spy In The Jungle', 'UK', now()), +(18643, 'Family Foreman', 'US', now()), +(18644, 'Secret Talents of the Stars', 'US', now()), +(18645, 'Teenage Kicks', 'UK', now()), +(18646, 'A Grande Família', 'BR', now()), +(18647, 'The Blues', 'US', now()), +(18648, 'The Surgery', 'UK', now()), +(18649, 'Dance on Sunset', 'US', now()), +(18650, 'Missing Persons Unit (US)', 'US', now()), +(18651, 'Date My House', 'US', now()), +(18652, 'Das jüngste Gericht', 'AT', now()), +(18653, 'Zur Sache, Lena!', 'DE', now()), +(18654, 'Emerald Falls', 'AU', now()), +(18655, 'Hallo Taxi', 'DE', now()), +(18656, 'WunderBar', 'DE', now()), +(18657, 'Anna Maria - Eine Frau geht ihren Weg', 'DE', now()), +(21951, 'NCRV Natuurlijk - Op reis met Van Rossem', 'NL', now()), +(18659, 'Bingo America', 'US', now()), +(18661, 'The Paper', 'US', now()), +(18662, 'Find Me The Face', 'UK', now()), +(18663, 'Later Live - With Jools Holland', 'UK', now()), +(18664, 'Johnny''s New Kingdom', 'UK', now()), +(18665, 'Dan Cruickshank''s Adventures In Architecture', 'UK', now()), +(18666, 'Im Tal der wilden Rosen', 'DE', now()), +(18667, 'Kreuzfahrt ins Glück', 'DE', now()), +(18668, 'Austin Golden Hour', 'US', now()), +(18669, 'Dicas de um Sedutor', 'BR', now()), +(18671, 'Party Heat', 'US', now()), +(18672, 'Casos e Acasos', 'BR', now()), +(18673, 'Zevensprong, De', 'NL', now()), +(18674, 'Kozure Ōkami', 'JP', now()), +(18675, 'Celebrity Mentor', 'US', now()), +(18676, 'Headcases', 'UK', now()), +(18677, 'Melvyn Bragg''s Travels In Written Britain', 'UK', now()), +(18678, 'Young Mum''s Mansion', 'UK', now()), +(18679, 'The Wall', 'UK', now()), +(18680, 'DEA (2008)', 'US', now()), +(18681, 'Pinoy Idol', 'PH', now()), +(18682, 'Sanctuary (US)', 'US', now()), +(18683, 'My Own Worst Enemy', 'US', now()), +(18684, 'Kath & Kim (US)', 'US', now()), +(18685, 'Kings', 'US', now()), +(18686, 'Playing Shakespeare', 'UK', now()), +(18687, 'Drop In', 'CA', now()), +(18700, 'Faça sua história', 'BR', now()), +(18689, 'The Listener', 'CA', now()), +(18690, 'Big, Bigger, Biggest', 'UK', now()), +(18691, 'Step It Up and Dance', 'US', now()), +(18703, 'Chefography', 'US', now()), +(18693, 'Crow Road', 'UK', now()), +(18694, 'Sunday Best (1991)', 'US', now()), +(18695, 'Sunday Best (2007)', 'US', now()), +(18696, 'The Kids Are All Right', 'UK', now()), +(18697, 'All Star Mr & Mrs', 'UK', now()), +(18698, 'Oliver''s Twist', 'UK', now()), +(18699, 'Ben 10: Alien Force', 'US', now()), +(18701, 'Jaguar Adventure With Nigel Marven', 'UK', now()), +(18702, 'America''s Port', 'US', now()), +(18704, 'Extreme Fishermen', 'US', now()), +(18706, 'Am I Normal?', 'UK', now()), +(18707, 'The Complainers', 'UK', now()), +(18708, 'Age Of Terror', 'UK', now()), +(18709, 'Chaotic', 'US', now()), +(18710, 'Kan Du Teksten?', 'NO', now()), +(18711, 'Paris Precinct', 'US', now()), +(18712, 'Diamant', 'NL', now()), +(18713, 'Sex Change Hospital', 'UK', now()), +(18714, 'The Law', 'US', now()), +(18715, 'The Baron (2008)', 'UK', now()), +(18716, 'The Chopping Block', 'AU', now()), +(18717, 'How Art Made The World', 'UK', now()), +(18718, 'Groomer Has It', 'US', now()), +(18719, 'Deion and Pilar: Prime Time Love', 'US', now()), +(18720, 'Operation MySpace', 'KW', now()), +(18721, 'Vrienden voor het Leven', 'NL', now()), +(18722, 'Night of Too Many Stars', 'US', now()), +(18723, 'The American Music Awards', 'US', now()), +(18724, 'Academy of Country Music Awards', 'US', now()), +(18725, 'America the Beautiful', 'US', now()), +(18726, 'Viva Hollywood', 'US', now()), +(18727, 'The Restaurant: You''re Fired!', 'UK', now()), +(18728, 'The Human Journey', 'UK', now()), +(18729, 'Mutual Friends', 'UK', now()), +(18730, 'Margaret', 'UK', now()), +(18731, 'New Town', 'UK', now()), +(18732, 'New Shoots', 'UK', now()), +(18733, 'Beat the Star', 'UK', now()), +(18734, 'Miss Rap Supreme', 'US', now()), +(18735, 'Mamma Søker Kjæreste', 'MP', now()), +(18736, 'Ungkaren 20 VS 40', 'NO', now()), +(18737, 'Carrier', 'US', now()), +(18738, 'Money Man', 'eu', now()), +(18739, 'Grand Designs Trade Secrets', 'UK', now()), +(18740, 'The Cleveland Show', 'US', now()), +(18741, 'Under One Roof (2008)', 'US', now()), +(18742, 'Big 4-0', 'US', now()), +(18743, 'Squawk Box', 'US', now()), +(18744, 'Canal Road', 'AU', now()), +(18745, 'Blood Sweat And T-Shirts', 'UK', now()), +(18746, 'Glamour Girls', 'UK', now()), +(18747, 'The Invisibles', 'UK', now()), +(18748, 'Landstinget', 'NO', now()), +(18749, 'Unnatural Causes: Is Inequality Making Us Sick?', 'US', now()), +(18750, 'Tougher in Alaska', 'US', now()), +(18751, 'In Plain Sight', 'US', now()), +(18752, 'Greatest American Dog', 'US', now()), +(18753, 'The Inbetweeners', 'UK', now()), +(18754, 'Jingles', 'US', now()), +(18755, 'The Unpleasant World of Penn & Teller', 'UK', now()), +(18757, 'Can You Duet?', 'US', now()), +(18758, 'Wagaya no Oinarisama', 'JP', now()), +(18759, 'Slam Tour mit Kuttner', 'DE', now()), +(18760, 'Windows', 'US', now()), +(18761, 'Eye Witness', 'US', now()), +(18762, 'Verminators', 'US', now()), +(18763, 'Celebracadabra', 'US', now()), +(18764, 'Kekkaishi', 'JP', now()), +(18765, 'Pacatele Evei', 'RO', now()), +(18766, 'Daria, iubirea mea', 'RO', now()), +(18767, 'The Best of the Worst (US)', 'US', now()), +(18768, 'The Colour of Magic', 'UK', now()), +(18769, 'Zettai Kareshi', 'JP', now()), +(18770, 'ZOS: Zone of Separation', 'CA', now()), +(18772, 'Living With The Dead', 'UK', now()), +(18773, 'Agentul VIP', 'RO', now()), +(18774, 'Secrets of the Dead', 'US', now()), +(18775, 'Sordid Lives: The Series', 'US', now()), +(18776, 'Fleksnes fataliteter', 'NO', now()), +(18777, 'Passport to Danger', 'US', now()), +(18778, 'The Pursuers', 'UK', now()), +(18779, 'Einer gegen Hundert', 'DE', now()), +(18780, 'Natascha Zuraw', 'DE', now()), +(18781, 'Police Interceptors', 'UK', now()), +(18782, 'It''s Not What You Know', 'UK', now()), +(18783, 'Bobby Jones Gospel', 'US', now()), +(18784, 'Teen Summit', 'US', now()), +(18785, 'Celebration of Gospel', 'US', now()), +(18786, 'A Girl''s Guide to 21st Century Sex', 'UK', now()), +(18787, 'Midnight Money Madness', 'US', now()), +(18788, 'The Hal Lindsey Report', 'US', now()), +(18789, 'Aftershock - Earthquake In New York', 'US', now()), +(18790, 'Do You Trust Me?', 'US', now()), +(18791, 'The New Shmoo', 'US', now()), +(18792, 'Fred and Barney Meet the Thing', 'US', now()), +(18793, 'The New Fred and Barney Show', 'US', now()), +(18794, 'Buford and the Galloping Ghost', 'US', now()), +(18795, 'Jana of the Jungle', 'US', now()), +(18796, 'The Flintstone Comedy Hour', 'US', now()), +(18797, 'Archie''s Funhouse', 'US', now()), +(18798, 'Go', 'US', now()), +(18799, 'Uncle Croc''s Block', 'US', now()), +(18800, 'Junior Almost Anything Goes', 'US', now()), +(20806, 'Week van het Jaar, De', 'NL', now()), +(18802, 'The Philanthropist', 'US', now()), +(18803, 'Raw Nature', 'US', now()), +(18804, 'Popeye and Son', 'US', now()), +(18805, 'Grand Designs Today', 'UK', now()), +(18807, 'The Last Word Monologues', 'UK', now()), +(18808, 'Sunshine', 'UK', now()), +(18809, 'Midnight Man', 'UK', now()), +(18810, 'CBS Children''s Film Festival', 'US', now()), +(18811, 'The Robonic Stooges', 'US', now()), +(18812, 'Thune', 'NO', now()), +(18813, '90210', 'US', now()), +(18814, 'Wrestling Reality', 'CA', now()), +(18815, 'Sand Blasters: The Extreme Sand Sculpting Championship', 'US', now()), +(18817, 'The Middleman', 'US', now()), +(18818, 'King of Diamonds', 'US', now()), +(18819, 'Joanna Lumley: Land Of The Northern Lights', 'UK', now()), +(18820, 'Ian Hislop Goes Off The Rails', 'UK', now()), +(18821, 'Beautiful People (2008)', 'UK', now()), +(18822, 'So You Think You Can Dance Scandinavia', 'NO', now()), +(18823, 'Norges Styggeste Rom', 'NO', now()), +(18824, 'Ekipa (PL)', 'PL', now()), +(18825, 'Vampire Host', 'JP', now()), +(18826, 'Ganges', 'UK', now()), +(18827, 'Gladiators (2008)', 'UK', now()), +(18829, 'Scoundrels', 'US', now()), +(18830, 'Cupid (2009)', 'US', now()), +(18831, 'Single White Millionaire', 'US', now()), +(18832, 'America''s Toughest Jobs', 'US', now()), +(18833, 'Shark Taggers', 'US', now()), +(18834, 'Merlin (2008)', 'UK', now()), +(18835, 'De Som Bygger Landet', 'NO', now()), +(18836, 'Warship (2008)', 'UK', now()), +(18837, 'The Secret Life of the American Teenager', 'US', now()), +(18838, 'Stiamo lavorando per noi', 'IT', now()), +(18839, 'Roommates', 'US', now()), +(18840, 'The Mighty Hercules', 'US', now()), +(18841, 'Quelli che... il calcio', 'IT', now()), +(18842, 'Louis Theroux''s Weird Weekends', 'UK', now()), +(18843, 'Car Torque', 'ZA', now()), +(18844, 'URBO: The Adventures of Pax Afrika', 'ZA', now()), +(18845, 'Police Story (1988)', 'US', now()), +(18846, 'These Are My Children', 'US', now()), +(18847, 'Winner Take All', 'US', now()), +(18848, 'Sale of the Century (US)', 'US', now()), +(18849, 'Child''s Play (US)', 'US', now()), +(18850, 'Hot Potato', 'US', now()), +(18851, 'Now You See It (US)', 'US', now()), +(18852, 'Blank Check', 'US', now()), +(18853, 'To Say the Least', 'US', now()), +(18854, '50 Grand Slam', 'US', now()), +(18855, 'Name That Tune (1974)', 'US', now()), +(18856, 'Bullseye (US)', 'US', now()), +(18857, 'Inside the NFL', 'US', now()), +(18858, 'In the Loop with iVillage', 'US', now()), +(18859, 'On the Road Again', 'CA', now()), +(18860, 'The George Michael Sports Machine', 'US', now()), +(18861, 'The Gill Deacon Show', 'CA', now()), +(18862, 'The Money Maze', 'US', now()), +(18863, 'Texas Justice', 'US', now()), +(18864, 'Black Gold', 'US', now()), +(18865, 'Living Lohan', 'US', now()), +(18866, 'Denise Richards: It''s Complicated', 'US', now()), +(18867, 'Christina''s Court', 'US', now()), +(18868, 'Dr. Keith Ablow', 'US', now()), +(18869, 'Judge David Young', 'US', now()), +(18870, 'TMZ on TV', 'US', now()), +(18871, 'Get the Message', 'US', now()), +(18872, 'Temptation (1967)', 'US', now()), +(18873, 'Trivia Trap', 'US', now()), +(18874, 'Hot Streak', 'US', now()), +(18875, 'Seven Keys', 'US', now()), +(18876, 'Yours for a Song', 'US', now()), +(18878, 'Missing Links', 'US', now()), +(18879, 'Double Talk', 'US', now()), +(18880, 'Bargain Hunters', 'US', now()), +(18881, 'Camouflage', 'US', now()), +(18882, 'Showoffs', 'US', now()), +(18883, 'Hot Seat', 'US', now()), +(18884, 'Make a Face', 'US', now()), +(18885, 'Funny You Should Ask', 'US', now()), +(18886, 'Split Second (US)', 'US', now()), +(18887, 'The Rebus Game', 'US', now()), +(18888, 'Rhyme and Reason', 'US', now()), +(18889, 'The Big Showdown', 'US', now()), +(18890, 'Mean Green Machines', 'CA', now()), +(18891, 'Sportschau: Bundesliga', 'DE', now()), +(18892, 'Project MyWorld', 'US', now()), +(18893, 'Winning Lines (UK)', 'UK', now()), +(18894, 'Winning Lines (US)', 'US', now()), +(18895, 'Give-n-Take', 'US', now()), +(18896, 'Pass the Buck (US)', 'US', now()), +(18897, 'Blackout (1988)', 'US', now()), +(18898, 'Whew!', 'US', now()), +(18899, 'Hollywood''s Talking', 'US', now()), +(18900, 'Musical Chairs', 'US', now()), +(18901, 'Body Language', 'US', now()), +(18902, 'Fractured Phrases', 'US', now()), +(18903, 'Eye Guess', 'US', now()), +(18904, 'Snap Judgment', 'US', now()), +(19099, 'Shenanigans', 'US', now()), +(18906, 'It Takes Two (AU)', 'AU', now()), +(18907, 'Time Machine', 'US', now()), +(18908, 'Scrabble', 'US', now()), +(18909, 'What''s This Song?', 'US', now()), +(18910, 'Winning Streak', 'US', now()), +(18911, 'Family Secrets', 'US', now()), +(18912, 'Showdown', 'US', now()), +(18913, 'Stumpers', 'US', now()), +(18914, 'Shoot for the Stars', 'US', now()), +(18915, 'Knockout', 'US', now()), +(18916, 'Battlestars', 'US', now()), +(18917, 'Hit Man', 'US', now()), +(18918, 'Dream House (US)', 'US', now()), +(18919, 'The Fun Factory', 'US', now()), +(18920, 'Mindreaders', 'US', now()), +(18921, 'Caesar''s Challenge', 'US', now()), +(18922, 'I''ll Bet', 'US', now()), +(18923, 'It''s Your Bet', 'US', now()), +(18924, 'Name Droppers', 'US', now()), +(18926, 'Wordplay', 'US', now()), +(18927, 'Scattergories', 'US', now()), +(18928, 'Words and Music (US)', 'US', now()), +(18929, 'Memory Game', 'US', now()), +(18930, 'Three on a Match', 'US', now()), +(18931, 'Captains and the Kings', 'US', now()), +(18932, 'Opportunity Knocks (US)', 'US', now()), +(18933, 'Eleventh Hour (US)', 'US', now()), +(18934, 'Once an Eagle', 'US', now()), +(18935, 'The Ex List', 'US', now()), +(18936, 'Game Show In My Head', 'US', now()), +(18937, 'Harper''s Island', 'US', now()), +(18938, 'Calling Scotland Yard', 'UK', now()), +(18939, 'U.S. Border Patrol', 'US', now()), +(18940, 'At Home With The Hattons', 'UK', now()), +(18941, 'The Duchess In Hull', 'UK', now()), +(18942, 'The Supersizers Go', 'UK', now()), +(18943, 'Charlie Wild, Private Detective', 'US', now()), +(18944, 'China Smith', 'US', now()), +(18945, 'Citizen Solider', 'US', now()), +(18946, 'Code 3 (1956)', 'US', now()), +(18947, 'Combat Sergeant', 'US', now()), +(18948, 'Rod Brown of the Rocket Rangers', 'US', now()), +(18949, 'Atom Squad', 'US', now()), +(18950, 'Confidential File', 'US', now()), +(18951, 'Congressional Investigator', 'US', now()), +(18952, 'My New Best Friend', 'UK', now()), +(18953, 'Craig Kennedy, Criminologist', 'US', now()), +(18954, 'Crunch and Des', 'US', now()), +(18955, 'House Guest', 'UK', now()), +(18956, 'Dance Machine', 'US', now()), +(18957, 'High School Musical: Get In The Picture', 'US', now()), +(18958, 'I Survived A Japanese Game Show', 'US', now()), +(18959, 'Wipeout (US)', 'US', now()), +(18960, 'My Boy Jack', 'UK', now()), +(18961, 'The Doctor', 'US', now()), +(18962, 'Doctor Christian', 'US', now()), +(18963, 'Dr. Hudson''s Secret Journal', 'US', now()), +(18964, 'Duffy''s Tavern', 'US', now()), +(18965, 'Higurashi no Naku Koro ni kai', 'JP', now()), +(18966, 'Chopper Challenge', 'US', now()), +(18967, 'The Mentalist', 'US', now()), +(18968, 'Gary Unmarried', 'US', now()), +(18969, 'Worst Week', 'US', now()), +(18970, '13 – Fear Is Real', 'US', now()), +(18971, 'The Files of Jeffrey Jones', 'US', now()), +(18972, 'Foreign Intrigue', 'US', now()), +(18973, 'Front Page Detective', 'US', now()), +(18974, 'The Lawrenceville Stories', 'CA', now()), +(18975, 'The Great Gildersleeve', 'US', now()), +(18976, 'Stylista', 'US', now()), +(18977, 'Privileged', 'US', now()), +(18978, 'Hollywood Off Beat', 'US', now()), +(18979, 'Sit Down, Shut Up', 'US', now()), +(18980, 'The Jim Backus Show', 'US', now()), +(18981, 'I''m the Law', 'US', now()), +(18982, 'Janet Dean, Registered Nurse', 'US', now()), +(18983, 'Johnny Midnight', 'US', now()), +(18984, 'Bed of Roses', 'AU', now()), +(18985, 'Will and Dewitt', 'CA', now()), +(18986, 'Magi-Nation', 'CA', now()), +(18987, 'World of Quest', 'US', now()), +(18988, 'Life With Father', 'US', now()), +(18989, 'Dragon', 'CA', now()), +(18990, '3-2-1 Penguins!', 'US', now()), +(18991, 'My Friend Rabbit', 'US', now()), +(18992, 'Care Bears: Adventures in Care-a-Lot', 'US', now()), +(18993, 'Sushi Pack', 'US', now()), +(18994, 'DinoSquad', 'US', now()), +(18995, 'Horseland', 'US', now()), +(18996, 'Cake', 'US', now()), +(18997, 'Admin', 'UK', now()), +(18998, 'A Taste of My Life', 'UK', now()), +(18999, 'Man Called X', 'US', now()), +(19000, 'Manhunt (1959)', 'US', now()), +(19001, 'Mark Saber Mystery Theatre', 'US', now()), +(19002, 'Miami Undercover', 'US', now()), +(19003, 'Capri', 'IT', now()), +(19005, 'Juvenile Jury', 'US', now()), +(19006, 'Four Star Revue', 'US', now()), +(19007, 'I Cover Times Square', 'US', now()), +(19011, 'Do Not Disturb', 'US', now()), +(19012, 'Secret Millionaire', 'US', now()), +(19013, 'Crime with Father', 'US', now()), +(19014, 'Dankert & Dankert', 'NL', now()), +(19015, 'Kings Row', 'US', now()), +(19016, 'Giant Step', 'US', now()), +(19017, 'Génesis: en la mente del asesino', 'ES', now()), +(19018, 'The Ed Wynn Show (1958)', 'US', now()), +(19019, 'Rescue Chef', 'US', now()), +(19020, 'Mike & Maty', 'US', now()), +(19021, 'Caryl & Marilyn: Real Friends', 'US', now()), +(19022, 'Let''s Make a Deal (2003)', 'US', now()), +(19023, 'Let''s Make a Deal (1990)', 'US', now()), +(19024, 'The Don Ho Show', 'US', now()), +(19025, 'Treasure Isle', 'US', now()), +(19026, 'Music Bingo', 'US', now()), +(19027, 'Chance for Romance', 'US', now()), +(19028, 'Day in Court', 'US', now()), +(19029, 'Confidential for Women', 'US', now()), +(19030, 'The New Dating Game', 'US', now()), +(19031, 'The All-New Dating Game', 'US', now()), +(19032, 'The Dating Game (1996)', 'US', now()), +(19033, 'The New Newlywed Game', 'US', now()), +(19034, 'The Newlywed Game (1996)', 'US', now()), +(19035, 'Dream Girl of ''67', 'US', now()), +(19036, 'The Girl in My Life', 'US', now()), +(19037, 'Sing Along With Mitch', 'US', now()), +(19038, 'Delta Forever', 'UK', now()), +(19039, 'Ray Mears Goes Walkabout', 'UK', now()), +(19040, 'Kidnapped Abroad', 'UK', now()), +(19041, 'Las Vegas Gambit', 'US', now()), +(19042, 'Voetbalvrouwen', 'NL', now()), +(19043, 'Watch Mr. Wizard', 'US', now()), +(19044, 'The New Beat the Clock', 'US', now()), +(19045, 'The All New Beat the Clock', 'US', now()), +(19046, 'Dames in de Dop', 'NL', now()), +(19047, 'Lieve Lust', 'NL', now()), +(19048, 'Double Exposure (US)', 'US', now()), +(19049, 'The Verdict is Yours', 'US', now()), +(19050, 'Tic Tac Dough', 'US', now()), +(19051, 'The New Truth or Consequences', 'US', now()), +(19052, 'The All-New Truth or Consequences', 'US', now()), +(19053, 'Freedom Rings', 'US', now()), +(19054, 'For Better or Worse', 'US', now()), +(19055, 'The Big Payoff', 'US', now()), +(19056, 'Goede Tijden, Slechte Tijden', 'NL', now()), +(19057, 'Stump the Stars', 'US', now()), +(19058, 'Ranking the Stars', 'NL', now()), +(19059, 'Ik hou van Holland', 'NL', now()), +(19060, 'Spoed', 'BE', now()), +(19062, 'Naked Earth', 'US', now()), +(19063, 'Crime & Punishment (1993)', 'US', now()), +(19064, 'Dough Re Mi', 'US', now()), +(19065, 'It Takes Two (1969)', 'US', now()), +(19066, 'Dinah''s Place', 'US', now()), +(19067, 'The Regis Philbin Show', 'US', now()), +(19068, 'The Way of the World', 'US', now()), +(19069, 'Word for Word', 'US', now()), +(19070, 'America Alive!', 'US', now()), +(19071, 'Feather Your Nest', 'US', now()), +(19072, 'It Could Be You', 'US', now()), +(19073, 'Flodder', 'NL', now()), +(19074, 'Blind Date (DE)', 'DE', now()), +(19075, 'Blind Date 2 - Taxi nach Schweinau', 'DE', now()), +(19076, 'Ihr Auftrag, Pater Castell', 'DE', now()), +(19077, 'Anke', 'DE', now()), +(19078, 'Anke Late Night', 'DE', now()), +(19079, 'Ladykracher', 'DE', now()), +(19080, 'Ladyland', 'DE', now()), +(19081, 'RTL Comedy Nacht', 'DE', now()), +(19082, 'The Jerry Lewis Show (1967)', 'US', now()), +(19083, 'Here''s Edie', 'US', now()), +(19084, 'The Sid Caesar Show', 'US', now()), +(19085, 'Fox Reality Awards', 'US', now()), +(19086, 'Mobile Home Disaster', 'US', now()), +(19087, 'People Will Talk', 'US', now()), +(19088, 'Haggis Baggis', 'US', now()), +(19089, 'It Pays to be Married', 'US', now()), +(19090, 'On Your Account', 'US', now()), +(19091, 'Letters to Laugh-In', 'US', now()), +(19092, 'Storybook Squares', 'US', now()), +(19093, 'The Pinky Lee Show', 'US', now()), +(19094, 'Courtroom K', 'US', now()), +(19095, 'Momento', 'SE', now()), +(19096, 'The Hector Heathcote Show', 'US', now()), +(19097, 'Nytt Läge', 'SZ', now()), +(19100, 'Markus Lanz', 'DE', now()), +(19101, 'Julia''s Tango', 'NL', now()), +(19102, 'Hoppity Hopper', 'US', now()), +(19103, 'Popularity Contest', 'US', now()), +(19104, 'The Beagles', 'US', now()), +(19105, 'The Batman/Superman Hour', 'US', now()), +(19106, 'Take a Giant Step', 'US', now()), +(19107, 'Masters of Dance', 'US', now()), +(21867, 'My Coolest Years', 'US', now()), +(19109, 'Legally Blonde The Musical: The Search For Elle Woods', 'US', now()), +(19110, 'The Next GAC Star', 'US', now()), +(19111, 'From The Ground Up', 'US', now()), +(19112, 'The Mumbly Cartoon Show', 'US', now()), +(19113, 'The Bay City Rollers Show', 'US', now()), +(19114, 'Monkey Life', 'UK', now()), +(19115, 'GP2', 'UK', now()), +(19116, 'The All Star Talent Show', 'UK', now()), +(19117, 'Worlds Apart', 'US', now()), +(19118, 'Rebuilt: The Human Body Shop', 'US', now()), +(19119, 'Operation Homecoming', 'US', now()), +(19120, 'Go Ahead, Make My Dinner', 'US', now()), +(19121, 'Inner Chef with Marcus Samuelsson', 'US', now()), +(19122, '9mm São Paulo', 'BR', now()), +(19123, 'Goldie Gold and Action Jack', 'US', now()), +(19124, 'Wolf Rock', 'US', now()), +(19125, 'Berenstain Bears', 'CA', now()), +(19126, 'Little Clowns of Happytown', 'US', now()), +(19127, 'The Adventures of Raggedy Ann and Andy', 'US', now()), +(19128, 'The Last Templar', 'US', now()), +(19129, 'Momma''s Boys', 'US', now()), +(19130, 'Scallywagga', 'UK', now()), +(19131, 'Good Buy/Bad Buy', 'US', now()), +(19132, 'Life & Cooking', 'NL', now()), +(19133, 'Where''s My Mortgage Gone?', 'UK', now()), +(19134, 'Barely Legal', 'UK', now()), +(19135, 'The Great British Body', 'UK', now()), +(19136, 'How TV Changed Britain', 'UK', now()), +(19137, 'Marge and Jeff', 'US', now()), +(19138, 'Alexei Sayle''s Liverpool', 'UK', now()), +(19139, 'The Steve Lawrence Show', 'US', now()), +(19140, 'The Sammy Davis Jr. Show', 'US', now()), +(19141, 'The Alaska Experiment', 'US', now()), +(19142, 'Away We Go', 'US', now()), +(19143, 'Factory Made', 'US', now()), +(19144, 'The Dom DeLuise Show (1968)', 'US', now()), +(19145, '911: The Bronx', 'US', now()), +(19146, 'In Search of Myths and Heroes', 'UK', now()), +(19147, 'In Search of the Trojan War', 'UK', now()), +(19148, 'The Don Rickles Show (1968)', 'US', now()), +(19149, 'Operation: Entertainment', 'US', now()), +(19150, 'Take It Or Leave It', 'UK', now()), +(19151, 'Explosiv - Das Magazin', 'DE', now()), +(19152, 'The Berenstain Bears', 'US', now()), +(19153, 'The Melba Moore-Clifton Davis Show', 'US', now()), +(19154, 'The Jerry Reed When You''re Hot, You''re Hot Hour', 'US', now()), +(19155, 'The Ken Berry "Wow" Show', 'US', now()), +(19156, 'The Bobby Darin Show', 'US', now()), +(19157, 'Holland''s Got Talent', 'NL', now()), +(19158, 'The Burns and Schreiber Comedy Hour', 'US', now()), +(19159, 'Joey and Dad', 'US', now()), +(19160, 'Gladys Knight and the Pips', 'US', now()), +(19161, 'The Jim Stafford Show', 'US', now()), +(19162, 'Manhattan Transfer', 'US', now()), +(19163, 'Elite XC Saturday Night Fights', 'US', now()), +(19164, 'When We Left Earth: The NASA Missions', 'US', now()), +(19165, 'Your Place or Mine?', 'US', now()), +(19166, 'Prescriptions', 'US', now()), +(19167, 'Kenny Starfighter', 'SE', now()), +(19168, 'Bravo A-List Awards', 'US', now()), +(19169, 'The Beast (2009)', 'US', now()), +(19170, 'Under', 'US', now()), +(19171, 'The Meant to Be''s', 'US', now()), +(19173, 'I Love Money', 'US', now()), +(19174, 'River Cottage Spring', 'UK', now()), +(19175, 'Trash To Cash (UK)', 'UK', now()), +(19176, 'The Late Summer Early Fall Bert Convy Show', 'US', now()), +(19177, 'Johnny Cash and Friends', 'US', now()), +(19178, 'Motorsports Weekly', 'US', now()), +(19179, 'The Marilyn McCoo and Billy Davis Jr. Show', 'US', now()), +(19180, 'The Keane Brothers Show', 'US', now()), +(19181, 'Celebrity Family Feud', 'US', now()), +(19182, 'In the Mix (1991)', 'US', now()), +(19183, 'The Baxters', 'US', now()), +(19184, 'The Unusuals', 'US', now()), +(19185, 'Hurl!', 'US', now()), +(19186, 'Stephen King''s Storm of the Century', 'US', now()), +(19187, 'Star Wars: The Clone Wars (2008)', 'US', now()), +(19188, 'Torn Up Tales', 'UK', now()), +(19189, 'The Hanna-Barbera Happy Hour', 'US', now()), +(19190, 'Mel and Susan Together', 'US', now()), +(19191, 'The Chuck Barris Rah-Rah Show', 'US', now()), +(19192, 'Reaching for the Skies', 'UK', now()), +(19193, 'The Trojan Horse', 'CA', now()), +(19194, 'The Marvelous Misadventures of Flapjack', 'US', now()), +(19195, 'Ritas Welt', 'DE', now()), +(19196, 'A Date With Judy', 'US', now()), +(19197, 'Date My Ex: Jo & Slade', 'US', now()), +(19198, 'The Rachel Zoe Project', 'US', now()), +(19199, 'The Dom DeLuise Show (1987)', 'US', now()), +(19200, 'The Duke (1954)', 'US', now()), +(19201, 'Gülcan und Collien ziehen aufs Land', 'DE', now()), +(19202, 'Gülcans Traumhochzeit', 'DE', now()), +(19203, 'Lanz kocht', 'DE', now()), +(19204, 'Wie is... de Mol?', 'NL', now()), +(19205, 'Blueprint', 'US', now()), +(19206, 'Men of a Certain Age', 'US', now()), +(19207, 'Midlife Crisis', 'NL', now()), +(19208, 'She''s Got The Look', 'US', now()), +(19209, 'Mitten im Leben!', 'DE', now()), +(19210, 'Heirate mich!', 'DE', now()), +(19211, 'The Girls', 'US', now()), +(19212, 'Surviving History', 'US', now()), +(19213, 'Dall-As (DE)', 'DE', now()), +(19214, 'Schmidteinander', 'DE', now()), +(19215, 'Anne Will', 'DE', now()), +(19216, 'Lindenstraße', 'DE', now()), +(19217, 'The Growing Paynes', 'US', now()), +(19218, 'Brains & Brawn', 'US', now()), +(19219, 'Waltz', 'NL', now()), +(19220, 'BET Awards', 'US', now()), +(19221, 'The Hartmans', 'US', now()), +(19222, 'F.C. De Kampioenen', 'BE', now()), +(19223, 'The Donald O''Connor Show', 'US', now()), +(19224, 'The Laytons', 'US', now()), +(19225, 'Rich and Reckless', 'US', now()), +(19226, 'Animal Cops: South Africa', 'US', now()), +(19227, 'Madame''s Place', 'US', now()), +(19228, 'The Man in the Family', 'US', now()), +(19229, 'Total Drama Island', 'CA', now()), +(19230, 'Happy Otto! Wir haben Grund zum Feiern', 'DE', now()), +(19231, 'Otto - Die Serie', 'DE', now()), +(19232, 'Offifanten', 'DE', now()), +(19233, 'Die Otto-Show', 'DE', now()), +(19234, 'Alles Atze', 'DE', now()), +(19235, 'Die Camper', 'DE', now()), +(19236, 'Der Heiland auf dem Eiland', 'DE', now()), +(19237, 'Das Amt', 'DE', now()), +(19238, 'Bully & Rick', 'DE', now()), +(19239, 'Elton vs. Simon - Die Show', 'DE', now()), +(19240, 'rent a Pocher', 'DE', now()), +(19241, 'Masters of Illusion: Impossible Magic', 'US', now()), +(19242, 'Crocodile Shoes', 'UK', now()), +(19243, 'Elton John: Me, Myself and I', 'US', now()), +(19244, 'The Road Hammers', 'US', now()), +(19245, 'Dana Carvey: Squatting Monkeys Tell No Lies', 'US', now()), +(19246, 'Rate My Space', 'US', now()), +(19247, 'Live From Abbey Road', 'UK', now()), +(19248, 'Xtreme Building', 'US', now()), +(19249, 'The Stagers', 'US', now()), +(19250, 'Summer Showdown', 'US', now()), +(19251, 'We gaan nog niet naar huis', 'NL', now()), +(19252, 'Untamed and Uncut', 'US', now()), +(19253, 'Jong geleerd', 'NL', now()), +(19254, 'Baantjer', 'NL', now()), +(19255, 'Joling & Gordon Over De Vloer', 'NL', now()), +(19256, 'Newlywed, Nearly Dead?', 'CA', now()), +(19257, 'On the Road in America', 'US', now()), +(19258, 'Making Tracks', 'NZ', now()), +(19259, 'Ozzie''s Girls', 'US', now()), +(19260, 'Dating The Enemy', 'US', now()), +(19261, 'Deconstruction', 'US', now()), +(19262, 'Virtuality', 'US', now()), +(19263, 'Martin Lawrence Presents 1st Amendment Stand-Up', 'US', now()), +(19264, 'Ask Aida', 'US', now()), +(19265, 'Built To Shred', 'US', now()), +(19267, 'Castle (2009)', 'US', now()), +(19268, 'Alphas', 'US', now()), +(19269, 'Hole in the Wall', 'US', now()), +(19270, 'Killing For A Living', 'US', now()), +(19271, 'Gimme Sugar', 'US', now()), +(19272, 'Tribal Wives', 'UK', now()), +(19273, 'The Jews', 'UK', now()), +(19274, 'Sweet Surrender', 'US', now()), +(19275, 'Bingo Live', 'UK', now()), +(19276, 'Edel & Starck', 'DE', now()), +(19277, 'KDD - Kriminaldauerdienst', 'DE', now()), +(19278, 'Beyond Tomorrow (US)', 'US', now()), +(19279, 'Psychic Kids: Children of the Paranormal', 'US', now()), +(19281, 'What''s That About?', 'US', now()), +(19282, 'Outnumbered (US)', 'US', now()), +(19283, 'Glam God with Vivica A. Fox', 'US', now()), +(19284, 'Valentine', 'US', now()), +(19285, 'In Harm''s Way', 'US', now()), +(19286, 'Surviving Suburbia', 'US', now()), +(19287, 'Easy Money', 'US', now()), +(19288, 'F.A.T. City', 'US', now()), +(19289, 'The Bonnie Hunt Show (2008)', 'US', now()), +(19290, 'NOVA scienceNOW', 'US', now()), +(19291, 'The Great Ride Open', 'US', now()), +(19292, 'THS Investigates', 'US', now()), +(19293, 'Ecoluxe', 'US', now()), +(19294, 'Fabriek, De', 'NL', now()), +(19295, 'Lie to Me', 'US', now()), +(19296, 'Mobsters', 'US', now()), +(19297, 'Motorsport UK', 'UK', now()), +(19298, 'Alter Eco', 'US', now()), +(19299, 'Greensburg', 'US', now()), +(19300, 'G Word', 'US', now()), +(19301, 'Torsdagsklubben', 'NO', now()), +(19302, 'Greenovate', 'US', now()), +(19303, 'Hollywood Green', 'US', now()), +(19304, 'Wa$ted', 'US', now()), +(19305, 'The Singing Office', 'US', now()), +(19306, 'Commesse', 'MK', now()), +(19307, 'The Natalie Gulbis Show', 'US', now()), +(19308, 'Queen Bees', 'US', now()), +(19309, 'Britain''s Lost World', 'UK', now()), +(19310, 'Commercial Breakdown With Jimmy Carr', 'UK', now()), +(19311, 'Ghost Trackers', 'CA', now()), +(22352, 'Code Geass (US)', 'AJ', now()), +(19313, 'The Adrenaline Project', 'CA', now()), +(19314, 'The Animated Adventures of Bob & Doug McKenzie', 'CA', now()), +(19315, 'Sverige Pussas Och Kramas', 'SE', now()), +(19316, 'The Pacific', 'US', now()), +(19317, 'Les Dennis''s Home Video Heroes', 'UK', now()), +(19318, 'Snog, Marry, Avoid?', 'UK', now()), +(19319, 'Brits Who Made The Modern World', 'UK', now()), +(19320, 'Young Mr. Bobbin', 'US', now()), +(19321, 'Top Gear (1978)', 'UK', now()), +(19322, 'Revealed', 'UK', now()), +(19324, 'I Love the New Millennium', 'US', now()), +(19325, 'Marco''s Great British Feast', 'UK', now()), +(19326, 'Personal Services Required', 'UK', now()), +(19327, 'Heir Hunters (UK)', 'UK', now()), +(19328, 'Good Bid, Good Buy', 'UK', now()), +(19330, 'Gok''s Fashion Fix', 'UK', now()), +(19331, 'The End of Steve', 'US', now()), +(19332, 'The Emancipation of Ernesto', 'US', now()), +(19333, 'Pretty/Handsome', 'US', now()), +(19334, 'F''N MTV Premieres', 'US', now()), +(19336, 'Private Sessions', 'US', now()), +(19337, 'An Evening at the Improv', 'US', now()), +(19338, 'Sorry, I''ve Got No Head', 'UK', now()), +(19339, 'Tabatha Takes Over', 'US', now()), +(19340, 'Reality Bites Back', 'US', now()), +(19341, 'The Gong Show with Dave Attell', 'US', now()), +(19342, 'Who Dares, Sings!', 'UK', now()), +(19343, 'Crisis Point', 'US', now()), +(19344, 'Sunday Life', 'UK', now()), +(19345, 'MeeBOX', 'UK', now()), +(19346, 'By Royal Appointment', 'UK', now()), +(19347, 'Clutch Cargo', 'US', now()), +(19348, 'Colonel Bleep', 'US', now()), +(19349, 'Critter Gitters', 'US', now()), +(19350, 'Diver Dan', 'US', now()), +(19351, 'Glam Me Up!', 'US', now()), +(19352, 'Get Out', 'US', now()), +(19353, 'Terra Nostra', 'BR', now()), +(19354, 'Scream Queens', 'US', now()), +(19355, 'Hulk Hogan’s Celebrity Championship Wrestling', 'US', now()), +(19356, 'Brooke Knows Best', 'US', now()), +(19357, 'Yago, pasion Morena', 'AR', now()), +(19358, 'Banged Up', 'UK', now()), +(19359, 'CCTV Cities', 'UK', now()), +(19360, 'Bannatyne Takes on Big Tobacco', 'UK', now()), +(19361, 'Idols', 'NL', now()), +(19362, 'Shonen Onmyouji', 'JP', now()), +(19363, 'Speak Up America', 'US', now()), +(19364, 'Gillend naar huis', 'NL', now()), +(19365, 'Muffin the Mule (2005)', 'UK', now()), +(19366, 'Chinese Food Made Easy', 'UK', now()), +(19367, 'The Phone (NL)', 'NL', now()), +(19368, 'Herrie in het Hotel', 'NL', now()), +(19369, 'Hermans Helden', 'NL', now()), +(19370, 'Mijn Tent is Top', 'NL', now()), +(19371, 'Lab Rats', 'UK', now()), +(19372, 'Herman Helpt', 'NL', now()), +(19373, 'Up All Night (1986)', 'US', now()), +(19374, 'Above Suspicion', 'UK', now()), +(19375, 'Kinderen geen bezwaar', 'NL', now()), +(19376, 'Extraordinary Animals', 'US', now()), +(19377, 'The Boot', 'US', now()), +(19378, 'Holland''s Next Top Model', 'NL', now()), +(19379, 'Norway''s Next Top Model', 'NO', now()), +(19380, 'Italia''s Next Top Model', 'IT', now()), +(19381, 'Superstars (2008)', 'UK', now()), +(19382, 'Cash in the Celebrity Attic', 'UK', now()), +(19383, 'Factory', 'US', now()), +(19384, 'Spooks: Code 9', 'UK', now()), +(19385, 'Occupation', 'UK', now()), +(19386, 'Philippe Starck''s School of Design', 'UK', now()), +(19387, 'Britain''s Missing Top Model', 'UK', now()), +(19388, 'Last Choir Standing', 'UK', now()), +(19389, 'Big Brother (NL)', 'NL', now()), +(19390, 'Expeditie Robinson', 'NL', now()), +(19391, 'Beste idee van Nederland, Het', 'NL', now()), +(19392, 'Spoorloos verdwenen', 'NL', now()), +(19393, 'Crazy 88', 'NL', now()), +(19394, 'Costa!', 'NL', now()), +(19395, 'GRΣΣK UNCOVΣRΣD', 'UK', now()), +(19396, 'Arranged Marriage', 'US', now()), +(19397, 'The Black Carpet', 'US', now()), +(19398, 'Flikken Maastricht', 'NL', now()), +(19399, 'Vita lögner', 'SE', now()), +(19400, 'Vendetta', 'SE', now()), +(19401, 'Literary Superstar', 'US', now()), +(19403, 'Ny-Lon (US)', 'US', now()), +(19404, 'Can Openers', 'US', now()), +(19405, 'Don''t Bring Frank', 'US', now()), +(19406, '1%', 'US', now()), +(19407, 'Danny Fricke', 'US', now()), +(19408, 'My Best Friend''s Girl', 'US', now()), +(19409, 'Zip', 'US', now()), +(19410, 'Splitsville', 'US', now()), +(19411, 'Sunday! Sunday! Sunday!', 'US', now()), +(19412, 'Exit 19', 'US', now()), +(19413, 'Starting Under', 'US', now()), +(19414, 'Man of Your Dreams', 'US', now()), +(19415, 'Almost', 'US', now()), +(19416, 'Sun Sea And Bargain Spotting', 'UK', now()), +(19417, 'The Elegant Universe', 'US', now()), +(19418, 'Shouf Shouf!', 'NL', now()), +(19419, 'Striscia la notizia', 'IT', now()), +(19420, 'This Time Tomorrow', 'UK', now()), +(19421, 'Meiden van de Wit', 'NL', now()), +(19422, 'Sports Mastermind', 'UK', now()), +(19423, 'Francesco''s Mediterranean Voyage', 'UK', now()), +(19424, 'Return To ...', 'UK', now()), +(19425, 'Band, De', 'NL', now()), +(19426, 'Connections (1985)', 'UK', now()), +(19427, 'Living With', 'UK', now()), +(19428, 'Ibiza', 'UK', now()), +(19429, 'Grijpstra & De Gier', 'NL', now()), +(19430, 'Van Speijk', 'NL', now()), +(19431, 'Red Hot and Green', 'US', now()), +(19432, 'The National Lottery: This Time Tomorrow', 'UK', now()), +(19433, 'The NHS: A Difficult Beginning', 'UK', now()), +(19434, 'I Want to Work for Diddy', 'US', now()), +(19435, 'New York Goes to Hollywood', 'US', now()), +(19436, 'The Cho Show', 'US', now()), +(19437, 'Luke’s Parental Advisory', 'US', now()), +(19438, 'Send In The Dogs', 'UK', now()), +(19439, 'Burying Brian', 'NZ', now()), +(19440, 'Comedy Central Roast', 'US', now()), +(19441, 'M/V', 'NL', now()), +(19442, 'Harley Street', 'UK', now()), +(19443, 'Bureau Kruislaan', 'NL', now()), +(19444, 'Try Before You Die', 'NL', now()), +(19445, 'Guerra e Paz', 'BR', now()), +(19446, 'Crazy Crosswords', 'AU', now()), +(19447, 'Ruckus', 'US', now()), +(19448, 'Disney Channel Games', 'US', now()), +(19449, 'Impact', 'CA', now()), +(19450, 'Brazil''s Next Top Model', 'BR', now()), +(19451, 'Topmodel (BE)', 'BE', now()), +(19452, 'Israel''s Next Top Model', 'IL', now()), +(19453, 'Scandinavia''s Next Top Model', 'DK', now()), +(19454, 'China''s Next Top Model', 'CN', now()), +(19455, 'Medisch Centrum West', 'NL', now()), +(19456, 'Katja vs De Rest', 'NL', now()), +(19457, 'Med Lisens Til Å Sende', 'NO', now()), +(19458, 'Hrvatski Top Model', 'HR', now()), +(19459, 'Liquid Soapz', 'CA', now()), +(19460, 'Silent Voices', 'UK', now()), +(19461, 'The Hollowmen', 'AU', now()), +(19462, 'Topmodel (DN)', 'DK', now()), +(19463, 'Rauw', 'NL', now()), +(19464, 'Africa''s Next Supermodel', 'ZA', now()), +(19465, 'Afghanistan''s Next Top Model', 'AF', now()), +(19466, 'Aruba Model Search', 'AW', now()), +(19467, 'Super Model Centroamérica', 'CR', now()), +(19468, 'Searching for Finland''s Top Model', 'FI', now()), +(19469, 'France''s Next Top Model', 'FR', now()), +(19470, 'Hungary''s Next Top Model', 'HU', now()), +(19471, 'Ты — супермодель', 'RU', now()), +(19472, 'Karl & Co', 'NO', now()), +(19473, 'The Conspiracy Files', 'UK', now()), +(19474, 'Slovakia''s Next Top Supermodel', 'SK', now()), +(19475, 'Top Model Ghana', 'GH', now()), +(19476, 'A Match Made In Heaven', 'UK', now()), +(19477, 'Jimmy Doherty''s Farming Heroes', 'UK', now()), +(19478, 'Diet On The Dancefloor', 'UK', now()), +(19479, 'The Thirties In Colour', 'UK', now()), +(19480, 'Make My Body Younger', 'UK', now()), +(19481, 'Kicken!', 'NL', now()), +(19482, 'IC', 'NL', now()), +(19483, 'NFL Network Total Access', 'US', now()), +(19484, 'Caribbean Model Search', 'JM', now()), +(19485, 'Kazakhstan''s Next Top Model', 'KZ', now()), +(19486, 'Click & Clack''s As The Wrench Turns', 'US', now()), +(19487, 'Transgeneration', 'US', now()), +(19488, 'Ashley Paige: Bikini or Bust', 'US', now()), +(19489, 'Bringing Home Baby', 'US', now()), +(19490, 'Take Home Handyman', 'US', now()), +(19491, 'Take Home Nanny', 'US', now()), +(19492, 'Tomtesterom', 'BE', now()), +(19493, 'Honduras Next Top Model', 'HN', now()), +(19494, 'Nigeria''s Next Top Model', 'NG', now()), +(19495, 'Spain''s Next Top Model', 'ES', now()), +(19496, 'Sweden''s Next Top Model', 'SE', now()), +(19497, 'Switzerland''s Next Supermodel', 'CH', now()), +(19498, 'Step Up To The Plate', 'UK', now()), +(19499, 'Eating with the Enemy', 'UK', now()), +(19500, 'Lama''s, De', 'NL', now()), +(19501, 'Lama Gezocht', 'NL', now()), +(19502, 'Extreme Living', 'US', now()), +(19503, 'The Works', 'US', now()), +(19504, 'Anna und die Liebe', 'DE', now()), +(19505, 'Spuiten en Slikken', 'NL', now()), +(19506, 'Nu we er toch zijn', 'NL', now()), +(19507, 'El Gallinero', 'ES', now()), +(19508, 'The Hotel Inspector', 'UK', now()), +(19509, 'Fire 000', 'AU', now()), +(19510, 'Wereld draait door, De', 'NL', now()), +(19511, 'Mike & Thomas Show, De', 'NL', now()), +(19512, 'Makeover Train', 'US', now()), +(19513, 'Rock the Reception', 'US', now()), +(19514, 'Must Love Kids', 'US', now()), +(19515, 'The N''s Student Body', 'US', now()), +(19516, 'Disorderly Conduct: Video on Patrol', 'US', now()), +(19517, 'Reality Binge', 'US', now()), +(19518, 'World Of Stupid', 'US', now()), +(19519, 'Wimps to Warriors', 'UK', now()), +(19520, 'Shatner''s Raw Nerve', 'US', now()), +(19521, 'Amazing Adventures of a Nobody', 'UK', now()), +(19522, 'America''s Hardest Bounty Hunters', 'UK', now()), +(19523, 'America''s Trashiest Weddings', 'UK', now()), +(19524, 'Celebrity Daredevils', 'UK', now()), +(19525, 'Chasing Time', 'UK', now()), +(19526, 'Cheating Spouses Caught on Tape', 'US', now()), +(19527, 'The Kevin Bishop Show', 'UK', now()), +(19528, 'Pauw & Witteman', 'NL', now()), +(19529, 'Pittige tijden', 'NL', now()), +(19530, 'The One: The search for Australia''s Most Gifted Psychic', 'AU', now()), +(19531, '''t Schaep Met De 5 Pooten', 'NL', now()), +(19532, 'Peking Express', 'NL', now()), +(19533, 'Home Made Simple', 'US', now()), +(19534, 'Dunya en Desie', 'NL', now()), +(19535, 'Peking Express VIP', 'NL', now()), +(19536, 'The A-List', 'US', now()), +(19537, 'Race2Replace', 'US', now()), +(19538, 'Vrouwenvleugel', 'NL', now()), +(19539, 'Boks', 'NL', now()), +(19540, 'Cash & Treasures', 'US', now()), +(19541, 'Bug Attack', 'UK', now()), +(19542, 'Celebrity singing bee', 'AU', now()), +(19543, 'Wrecked', 'US', now()), +(19544, 'Lemur Island', 'UK', now()), +(19545, 'Battleground Earth: Ludacris vs. Tommy Lee', 'US', now()), +(19546, 'Gimme My Reality Show', 'US', now()), +(19547, 'How’d That Get On My Plate?', 'US', now()), +(19548, 'The New Show', 'US', now()), +(19549, 'Grill It! with Bobby Flay', 'US', now()), +(19550, 'The Shape of Things', 'US', now()), +(19551, 'Chic & Easy', 'US', now()), +(19552, 'Cooking for Real', 'US', now()), +(19553, 'Down Home with the Neelys', 'US', now()), +(19554, 'Food Detectives with Ted Allen', 'US', now()), +(19555, 'Food Finds', 'US', now()), +(19556, 'FoodNation With Bobby Flay', 'US', now()), +(19557, 'Food Network Awards', 'US', now()), +(19558, 'Glutton for Punishment', 'US', now()), +(19559, 'Gourmet Next Door', 'US', now()), +(19560, 'Healthy Appetite with Ellie Krieger', 'US', now()), +(19561, 'The Hungry Detective', 'US', now()), +(19562, 'Nigella Bites', 'UK', now()), +(19563, 'Nigella Feasts', 'US', now()), +(19564, 'Nigella', 'UK', now()), +(19565, 'Trexx And Flipside', 'UK', now()), +(19566, 'Party Line with The Hearty Boys', 'US', now()), +(19567, 'Paula''s Best Dishes', 'US', now()), +(19568, 'Party Starters', 'US', now()), +(19569, 'Mystery ER', 'US', now()), +(19570, 'The Hitchhiker Chronicles', 'US', now()), +(19571, 'Pam: Girl on the Loose', 'US', now()), +(19572, 'Nogizaka Haruka no Himitsu', 'JP', now()), +(19573, 'Strike Witches', 'JP', now()), +(19574, 'Mahō Tsukai ni Taisetsu na Koto: Natsu no Sora', 'JP', now()), +(19575, 'Sekirei', 'JP', now()), +(20990, 'Lachend het jaar in', 'NL', now()), +(25338, 'Shin Koihime Musou: Otome Tairan', 'JP', now()), +(19578, 'Blassreiter', 'JP', now()), +(19579, 'Amatsuki', 'JP', now()), +(19580, 'Tower of Druaga: the Aegis of Uruk', 'JP', now()), +(19581, 'Hakaba Kitarō', 'JP', now()), +(19582, 'Chi''s Sweet Home', 'JP', now()), +(19583, 'From G''s to Gents', 'US', now()), +(19584, 'MLB All-Star Game', 'US', now()), +(19585, 'The Black Panther', 'AU', now()), +(19586, 'Iron Man: Armored Adventures', 'US', now()), +(19587, 'Testees', 'US', now()), +(19588, 'Jurassic Fight Club', 'US', now()), +(19589, 'The Singing Bee (DE)', 'DE', now()), +(19590, 'In aller Freundschaft', 'DE', now()), +(19591, 'Mother May I', 'US', now()), +(19592, 'Animal Cops: Philadelphia', 'US', now()), +(19593, 'I Had Three Wives', 'US', now()), +(19594, 'The Motown Revue', 'US', now()), +(19595, 'Road Tasted with the Neelys', 'US', now()), +(19596, 'Secrets of a Restaurant Chef', 'US', now()), +(19597, 'Simply Delicioso', 'US', now()), +(19598, 'Battle of the Brains', 'UK', now()), +(19599, '112 - Sie retten dein Leben', 'DE', now()), +(19600, 'Anwälte der Toten (1999)', 'DE', now()), +(19601, 'Anwälte der Toten (2008)', 'DE', now()), +(19602, 'Unter den Linden', 'DE', now()), +(19603, 'Gräfin gesucht - Adel auf Brautschau', 'DE', now()), +(19604, 'Die Abzocker', 'DE', now()), +(19605, 'Rogue Restaurants', 'UK', now()), +(19606, 'Mabe in America', 'US', now()), +(19607, 'Boldly Going Nowhere', 'US', now()), +(19608, 'Above the Line', 'CA', now()), +(19609, 'Legend of the Seeker', 'US', now()), +(19610, 'Sex Wars', 'US', now()), +(19611, 'Sos mi vida', 'AR', now()), +(19612, 'Showcase ''68', 'US', now()), +(19613, 'Musical Merry-Go-Round', 'US', now()), +(19614, 'Michael Nesmith in Television Parts', 'US', now()), +(19615, 'Monopoly', 'US', now()), +(19616, 'The Party Machine With Nia Peeples', 'US', now()), +(19617, 'Vegas Live! with Clint Holmes & Sheena Easton', 'US', now()), +(19618, 'Monarchy with David Starkey', 'UK', now()), +(19619, 'Skip Beat!', 'JP', now()), +(19620, 'Russen', 'NL', now()), +(19621, 'Project Runway Australia', 'AU', now()), +(19622, 'Onderweg naar morgen', 'NL', now()), +(19623, 'Q & Q', 'NL', now()), +(19624, 'Brug, De', 'NL', now()), +(19625, 'Doe maar normaal', 'NL', now()), +(19626, 'Katja & Sophie', 'NL', now()), +(19627, 'Hard Copy (1987)', 'US', now()), +(19628, 'Strip Search', 'US', now()), +(19629, 'Strip Search (2003)', 'CA', now()), +(19630, 'Strip Search (2001)', 'NZ', now()), +(19631, 'Stripsearch', 'US', now()), +(19632, 'Tim and Eric Nite Live', 'US', now()), +(19633, 'Chimera', 'UK', now()), +(19634, 'Rozengeur & Wodka Lime', 'NL', now()), +(19635, 'Co-assistent, De', 'NL', now()), +(19636, 'Telepathy Shoujo Ran', 'JP', now()), +(19637, 'Mark Loves Sharon', 'AU', now()), +(19638, 'Vets In Action', 'UK', now()), +(19639, 'Lost Land Of The Jaguar', 'UK', now()), +(19640, 'Shipwrecked: Battle of the Islands', 'UK', now()), +(19641, 'Buzzin''', 'US', now()), +(19642, 'Whatever Happened To Clement and La Frenais', 'UK', now()), +(19643, 'FHM Lara Croft Challenge', 'US', now()), +(19644, 'American Artist', 'US', now()), +(19645, 'Cash Or Capture', 'US', now()), +(19646, 'Dance Your Ass Off', 'US', now()), +(19647, 'Estate Of Panic', 'US', now()), +(19648, 'Outer Space Astronauts', 'US', now()), +(19649, 'Top Chef: Masters', 'US', now()), +(19650, 'Little Britain USA', 'US', now()), +(19651, 'Nurse Jackie', 'US', now()), +(19652, 'Into The Unknown With Josh Bernstein', 'US', now()), +(19654, 'Discovery Project Earth', 'US', now()), +(19655, 'The Grizzly Man Diaries', 'US', now()), +(19656, 'Evolve', 'US', now()), +(19657, 'Jimmy Nail - Somewhere In Time Somewhere On Tour', 'UK', now()), +(19658, 'Wow! Wow! Wubbzy!', 'US', now()), +(19659, 'Hope For Your Home', 'US', now()), +(19660, 'Iditarod: Toughest Race on Earth', 'US', now()), +(19661, 'Mr. And Mrs. Wolf', 'US', now()), +(19662, 'Over Designed', 'US', now()), +(19663, 'Cabecita', 'AR', now()), +(19664, 'Verano del ''98', 'AR', now()), +(19665, 'No hay 2 sin 3', 'AR', now()), +(19666, 'Prototype This!', 'US', now()), +(19667, 'Osbournes: Reloaded', 'US', now()), +(19668, 'Real Vice Cops Uncut', 'US', now()), +(19669, 'Who Are You Wearing', 'US', now()), +(19670, 'The Chris Isaak Hour', 'US', now()), +(19671, 'Female Forces', 'US', now()), +(19672, 'The Real Housewives Of Atlanta', 'US', now()), +(19673, 'Jacked: Auto Theft Task Force', 'US', now()), +(19674, 'Why I Ran', 'US', now()), +(19675, 'X Factor (NL)', 'NL', now()), +(19676, 'Live From The House Of Blues', 'US', now()), +(19677, 'Live! Dick Clark Presents', 'US', now()), +(19678, 'Music City Tonight', 'US', now()), +(19679, 'Music Country USA', 'US', now()), +(19680, 'Music For A Summer Night', 'US', now()), +(19681, 'Music Hall (1952)', 'US', now()), +(19682, 'Banged Up Abroad', 'UK', now()), +(19683, 'All New Planet''s Funniest Animals', 'US', now()), +(19684, 'Impossible Journeys', 'US', now()), +(19685, 'Factor Giel!', 'NL', now()), +(19686, 'Onder de tram', 'NL', now()), +(19687, 'Music at the Meadowbrook', 'US', now()), +(19688, 'Music From Chicago', 'US', now()), +(19689, 'Music Hall America', 'US', now()), +(19690, 'Music In Velvet', 'US', now()), +(19691, 'Music On Ice', 'US', now()), +(19692, 'The Music Shop', 'US', now()), +(19693, 'Rebelde Way', 'AR', now()), +(19694, 'Casi ángeles', 'AR', now()), +(19695, 'Dinosaur King (JP)', 'JP', now()), +(19696, 'BBC Olympics 2008', 'UK', now()), +(19697, 'Down and Dirty with Jim Norton', 'US', now()), +(19698, 'Trust Me (US)', 'US', now()), +(19699, 'Memphis Beat', 'US', now()), +(19700, 'Morse Code', 'US', now()), +(19701, 'Angel City', 'US', now()), +(19702, 'Tough Trade', 'US', now()), +(19703, 'National Banana Already in Progress', 'US', now()), +(19704, 'Top Ten', 'US', now()), +(19705, 'On Record: The Soundtrack of Our Lives', 'US', now()), +(19706, 'Friday Night''s All Wright', 'UK', now()), +(19707, 'Brunch', 'UK', now()), +(19708, 'The Jaquie Brown Diaries', 'NZ', now()), +(19709, '2900 Happiness', 'DK', now()), +(19710, 'Ultraviolet: Code 044', 'JP', now()), +(23098, 'Strange Rituals', 'US', now()), +(19712, 'Through The Dragon''s Eye', 'UK', now()), +(19713, 'Flog It', 'UK', now()), +(19714, 'SCU: Serious Crash Unit', 'NZ', now()), +(19715, 'Educating Oz', 'UK', now()), +(19716, 'The Gruen Transfer', 'AU', now()), +(19717, 'C.A.B', 'UK', now()), +(19718, 'Mike Bassett: Manager', 'UK', now()), +(19719, 'The 2008 Summer Olympics', 'CN', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(19720, 'Jacks And The Beanstalk', 'UK', now()), +(19721, 'The Tony Rock Project', 'US', now()), +(19722, 'Maneaters', 'US', now()), +(19723, 'L.A. Hard Hats', 'US', now()), +(19724, 'Studio DC: Almost Live', 'US', now()), +(19725, 'The Truth With Jeff Johnson', 'US', now()), +(21953, 'The Marriage Ref', 'US', now()), +(19727, 'The Cooking Loft', 'US', now()), +(19728, 'Celebrity Rides: Dillon and the Rebel', 'US', now()), +(19729, 'The Locator', 'US', now()), +(19730, 'Tommy Hilfiger Presents: Ironic Iconic America', 'US', now()), +(19731, 'My Fair Wedding', 'US', now()), +(19732, 'Herrie Aan De Horizon', 'NL', now()), +(19733, 'Help Mijn Man Heeft Een Hobby', 'NL', now()), +(19734, 'Million Dollar Wedding', 'NL', now()), +(19735, 'Moment Van De Waarheid, Het', 'NL', now()), +(19736, 'Howard Stern on Demand', 'US', now()), +(19737, 'Wie is de chef?', 'NL', now()), +(19738, 'Prisionera', 'US', now()), +(19739, 'Dragons'' Den (NL)', 'NL', now()), +(19740, 'Max Glick', 'CA', now()), +(19741, 'Koefnoen', 'NL', now()), +(19742, 'From Alaska with love', 'NL', now()), +(19743, 'Aspe', 'BE', now()), +(19744, 'Zes minuten', 'NL', now()), +(19745, 'Britain From Above', 'UK', now()), +(19746, 'Then Came Six', 'US', now()), +(19747, 'Spangen', 'NL', now()), +(19748, 'Verkeerd verbonden', 'NL', now()), +(19749, 'Hartslag', 'NL', now()), +(19750, 'Hoofdprijs, De', 'NL', now()), +(19751, 'Erfenis, De', 'NL', now()), +(19752, 'Lotte', 'NL', now()), +(19753, 'Popstars (NL)', 'NL', now()), +(19754, 'Wie ben ik? (2008)', 'NL', now()), +(19755, 'Maestro', 'UK', now()), +(19756, 'Tonightly', 'UK', now()), +(19757, 'Next World', 'US', now()), +(19758, 'S1ngle', 'NL', now()), +(19759, 'Return to Sender', 'NL', now()), +(19760, 'Pure Passie', 'NL', now()), +(19761, 'Bloemenstal, De', 'NL', now()), +(19762, 'Blok, Het', 'NL', now()), +(19763, 'Smaken Verschillen', 'NL', now()), +(19764, 'Tussen de oren', 'NL', now()), +(19765, 'The Taste of Life', 'NL', now()), +(19766, 'Eten & daten', 'NL', now()), +(19767, 'Knevel & Van den Brink', 'NL', now()), +(19768, 'Bankgiro Loterij: De Gemene Deler', 'NL', now()), +(19769, 'NL vertrekt', 'NL', now()), +(19770, 'Sonny With A Chance', 'US', now()), +(19771, 'Paranormal Egypt', 'US', now()), +(19772, 'NASA''s X-Files', 'US', now()), +(19773, 'Zomergasten', 'NL', now()), +(19774, 'Ernstige delicten', 'NL', now()), +(19775, 'Man & Paard', 'NL', now()), +(19776, 'Die Is de mol!', 'NL', now()), +(31186, 'This is Lionel Richie', 'UK', now()), +(19778, 'Wet & Waan', 'NL', now()), +(19779, 'Missie Warmoesstraat', 'NL', now()), +(19780, 'Kees & Co.', 'NL', now()), +(19781, '12 steden, 13 ongelukken', 'NL', now()), +(19782, 'Wet volgens Milo, De', 'BE', now()), +(19783, 'Glazen huis, Het', 'NL', now()), +(19784, 'Combat', 'NL', now()), +(19785, 'Goudkust', 'NL', now()), +(19786, 'Weg met BNN', 'NL', now()), +(19787, 'Over mijn lijk', 'NL', now()), +(19788, 'Je zal het maar hebben', 'NL', now()), +(19789, 'Baby te huur', 'NL', now()), +(19790, 'Olympische sportquiz', 'NL', now()), +(19791, 'So you wanna be a popstar', 'NL', now()), +(19792, 'Jan Smit, de zomer voorbij', 'NL', now()), +(19793, 'Ultieme woondroom, De', 'NL', now()), +(19794, 'Rock Nation', 'NL', now()), +(19795, 'Can’t buy me love', 'NL', now()), +(19796, 'Pacific Abyss', 'UK', now()), +(19797, 'The Cup', 'UK', now()), +(19798, 'SuperDoctors', 'UK', now()), +(19799, 'So You Think You Can Dance (NL/BE)', 'NL', now()), +(19800, 'Ik wed dat ik het kan!', 'NL', now()), +(19801, 'Switch Reloaded', 'DE', now()), +(19802, 'We zijn weer thuis', 'NL', now()), +(19803, 'Sprint!', 'NL', now()), +(19804, 'Klein Holland', 'NL', now()), +(19805, 'Wogan''s Perfect Recall', 'UK', now()), +(19806, 'Thank God it''s Friday', 'NL', now()), +(19807, 'Stellenbosch', 'NL', now()), +(19808, 'Antique Bakery', 'JP', now()), +(19809, 'Birdy the Mighty Decode', 'JP', now()), +(19810, 'Ryoko''s Case File', 'JP', now()), +(19811, 'Natsume Yūjin-Chō', 'JP', now()), +(19812, 'Mission-E', 'JP', now()), +(19813, 'Blade of the Immortal', 'JP', now()), +(19814, 'Unbeatable Banzuke', 'US', now()), +(19815, 'Draadstaal', 'NL', now()), +(19816, 'Dit was het nieuws', 'NL', now()), +(19817, 'Zesde zintuig, Het', 'NL', now()), +(19818, 'Schnitzelparadijs', 'NL', now()), +(19819, 'My Family''s Got Guts', 'US', now()), +(19820, 'Xam''d: Lost Memories', 'JP', now()), +(19821, 'Te leuk om waar te zijn', 'NL', now()), +(19822, 'Die Sturmflut', 'DE', now()), +(19823, 'Dresden', 'DE', now()), +(19824, 'Contergan', 'DE', now()), +(19825, 'Toen was geluk heel gewoon', 'NL', now()), +(19826, 'Oppassen!!!', 'NL', now()), +(19827, 'Back to Norm', 'US', now()), +(19828, 'Grenzeloos verliefd', 'NL', now()), +(19829, 'Nieuwste show, De', 'NL', now()), +(19830, 'Fiddles, Cheats and Scams', 'UK', now()), +(19831, 'Nieuw dier', 'NL', now()), +(19832, 'Tales of the Unexpected (US)', 'US', now()), +(19833, 'Yu-Gi-Oh! 5D''s', 'AJ', now()), +(19834, 'Di-Gata Defenders', 'CA', now()), +(19835, 'Fox Soccer Report', 'CA', now()), +(19836, 'MLS Saturday on FSC', 'CA', now()), +(19837, 'Packed To The Rafters', 'AU', now()), +(19838, 'How Not to Live Your Life', 'UK', now()), +(19839, 'Masterchef - The Professionals', 'UK', now()), +(19840, 'Lost In Austen', 'UK', now()), +(19841, 'Sandhogs', 'US', now()), +(19842, 'Exiled', 'US', now()), +(19843, 'The Children', 'UK', now()), +(19844, 'Breakfast News', 'UK', now()), +(19845, 'College Tour', 'NL', now()), +(19846, 'You Wrote It, You Watch It', 'US', now()), +(19847, 'The Strip', 'AU', now()), +(19848, 'Confidences', 'FR', now()), +(19849, 'The What in the World Quiz', 'UK', now()), +(19850, 'Chiquititas', 'AR', now()), +(19851, 'Hairspray: The School Musical', 'UK', now()), +(19852, 'Popstars: Argentina', 'AR', now()), +(19853, 'S.Q.P.', 'CL', now()), +(19854, 'Uitstel van executie', 'NL', now()), +(19855, 'Wegmisbruikers', 'NL', now()), +(19856, 'Smaakpolitie, De', 'NL', now()), +(19857, '3e klasse D', 'NL', now()), +(19858, 'Vrienden houden huis', 'NL', now()), +(19859, 'Fearfighters', 'NL', now()), +(19860, 'Die Jagd nach dem Schatz der Nibelungen', 'DE', now()), +(19861, 'Der Bibelcode', 'DE', now()), +(19862, 'Hemelpaort, De', 'NL', now()), +(19863, 'Super Sunday +', 'US', now()), +(19864, 'RTL Boulevard', 'NL', now()), +(19865, 'Achmea Kennisquiz', 'NL', now()), +(19866, 'NOS Studio Voetbal', 'NL', now()), +(19867, 'You Rock, Let''s Roll', 'US', now()), +(19868, 'Outsider''s Inn', 'US', now()), +(19869, 'Ocean Force: Huntington Beach, O.C.', 'US', now()), +(19870, 'Rebelde Way (2008)', 'PT', now()), +(19871, 'Jensen!', 'NL', now()), +(19872, 'Lakesiders', 'UK', now()), +(19873, 'Fox Football Fone-In', 'CA', now()), +(19874, 'Pleidooi', 'NL', now()), +(19875, 'Oud geld', 'NL', now()), +(19876, 'Bij ons in de PC', 'NL', now()), +(19877, 'Fox Soccer Match Day', 'CA', now()), +(19878, 'Mooi! Weer De Leeuw', 'NL', now()), +(19879, 'Elizabeth R', 'UK', now()), +(19880, 'Britain''s Really Disgusting Foods', 'UK', now()), +(19881, 'Flat van Ali B, De', 'NL', now()), +(19882, 'Hof van Joosten, Het', 'NL', now()), +(19883, 'Najib wordt wakker', 'NL', now()), +(19884, 'Kwestie van smaak, De', 'NL', now()), +(19886, 'CelebAir', 'UK', now()), +(19887, 'When Women Rule The World (UK)', 'UK', now()), +(19888, 'Chateau Monty', 'UK', now()), +(19889, 'The Great Italian Escape', 'UK', now()), +(19890, 'Extreme Fishing With Robson Green', 'UK', now()), +(19891, 'My Kind of Town', 'US', now()), +(19892, 'What Are You Like?', 'UK', now()), +(19893, 'Talento Argentino', 'AR', now()), +(19894, 'Supertalent in Vlaanderen', 'BE', now()), +(19895, 'Expedition Unlimited', 'NL', now()), +(19896, 'Puur Smaak', 'NL', now()), +(19897, 'Talent', 'DK', now()), +(19898, 'Alleen nog een man', 'NL', now()), +(19899, 'SamenWonen', 'NL', now()), +(19900, 'Bloot, zweet en banen', 'NL', now()), +(19901, 'Seventh Avenue', 'US', now()), +(19902, 'Sheena, Queen of the Jungle', 'US', now()), +(19903, 'Ramar of the Jungle', 'US', now()), +(19904, 'Talent Suomi', 'FI', now()), +(19905, 'Rush (2008)', 'AU', now()), +(19906, 'Feasting On Waves', 'US', now()), +(19907, 'Better Off Ted', 'US', now()), +(19908, 'Single with Parents', 'US', now()), +(19909, 'La France A Un Incroyable Talent', 'FR', now()), +(19910, 'Ελλάδα, έχεις ταλέντο', 'GR', now()), +(19911, 'Csillag születik', 'HU', now()), +(19912, 'הגדול הב', 'IL', now()), +(19913, 'Bijna Beroemd', 'NL', now()), +(19914, 'Ich heirate eine Familie', 'DE', now()), +(19915, 'Sofia''s diary UK', 'UK', now()), +(19916, 'Deal or no Deal (US) Daytime', 'US', now()), +(19917, 'Morning Express with Robin Meade', 'US', now()), +(19918, 'The Wrong Door', 'UK', now()), +(19919, 'Find My Family', 'AU', now()), +(19920, 'New Zealand''s Got Talent', 'NZ', now()), +(19921, 'Talentadong Pinoy', 'PH', now()), +(19922, 'Effe Geen Cent Te Makken', 'NL', now()), +(19923, 'Op zoek naar Joseph', 'NL', now()), +(19924, 'Mam Talent!', 'PL', now()), +(19925, 'Double Trouble (AU)', 'AU', now()), +(19926, 'Aqui Há Talento', 'PT', now()), +(19927, 'Die Schwarzwaldklinik', 'DE', now()), +(19928, 'Das Erbe der Guldenburgs', 'DE', now()), +(19929, 'Percy Stuart', 'DE', now()), +(19930, 'Accidental Heroes', 'UK', now()), +(19931, 'Topstylist: Home Edition', 'NL', now()), +(19932, 'Red Mijn Vakantie!', 'NL', now()), +(19933, 'Echte Gooische Meisjes', 'NL', now()), +(19934, 'Nicht Von Schlechten Eltern', 'DE', now()), +(19935, 'Unser Lehrer Doktor Specht', 'DE', now()), +(19936, 'Rivalen Der Rennbahn', 'DE', now()), +(19937, 'Zwei Münchner In Hamburg', 'DE', now()), +(19938, 'Lukas', 'DE', now()), +(19939, 'Минута славы', 'RU', now()), +(19940, 'Tienes Talento', 'ES', now()), +(19941, 'Massive', 'UK', now()), +(19942, 'Talang', 'SE', now()), +(19943, 'It''s Showtime!', 'AT', now()), +(19944, '¿Quien Tiene Estrella?', 'MX', now()), +(19945, 'Taken Out', 'AU', now()), +(19946, 'Zone interdite', 'FR', now()), +(19947, 'Love Bugs 2', 'IT', now()), +(19948, 'Love Bugs', 'IT', now()), +(19949, 'Three delivery', 'US', now()), +(19950, 'Speed Racer: The Next Generation', 'US', now()), +(19951, 'The Xtacles', 'US', now()), +(19952, 'Sid the Science Kid', 'US', now()), +(19953, 'Hoe word Ik mama In Amsterdam Zuid?', 'NL', now()), +(19954, 'Gouden Kooi, De', 'NL', now()), +(19955, 'Imagination Movers', 'US', now()), +(19956, 'Glastonbury', 'UK', now()), +(19958, 'Mordgeständnis', 'DE', now()), +(19959, 'The Culture Show Uncut', 'UK', now()), +(19960, 'The Principal''s Office', 'US', now()), +(19961, 'Westermans Nieuwe Wereld', 'NL', now()), +(19962, 'Op uw gezondheid', 'NL', now()), +(19963, 'Opgelicht?!', 'NL', now()), +(19964, '18 - Allein unter Mädchen', 'DE', now()), +(19965, 'Sarah & Marc in Love', 'DE', now()), +(19966, 'Sarah & Marc crazy in Love', 'DE', now()), +(19967, 'Charley Boorman: By Any Means', 'UK', now()), +(19968, 'Earth: The Climate Years', 'UK', now()), +(19969, 'The Price Of Property', 'UK', now()), +(19970, 'The Sex Education Show', 'UK', now()), +(19971, 'Paralympics 2008', 'UK', now()), +(19972, 'Avedot Vemetziot', 'IL', now()), +(19973, 'Beyond the Box', 'US', now()), +(19974, 'The Fashion Show', 'UK', now()), +(19975, 'Naakte waarheid, De', 'NL', now()), +(19976, 'Op de bon', 'NL', now()), +(19977, 'Eet Smakelijk!', 'NL', now()), +(19978, 'SpangaS', 'NL', now()), +(19979, 'Very Small Business', 'AU', now()), +(19980, 'Nieuwslicht', 'NL', now()), +(19981, 'Met het mes op tafel', 'NL', now()), +(19982, 'Destroyed in Seconds', 'US', now()), +(19983, 'Bruce Parry''s Amazon', 'UK', now()), +(19984, 'The Family', 'UK', now()), +(19985, 'No Heroics', 'UK', now()), +(19986, 'Gezocht: Politie', 'NL', now()), +(19987, 'Ik vertrek', 'NL', now()), +(19988, 'Toren C', 'NL', now()), +(19989, 'Frans & Marianne', 'NL', now()), +(19990, 'Aan de Bak', 'NL', now()), +(19991, 'Boer zoekt vrouw', 'NL', now()), +(19992, 'Pogoda na piatek', 'PL', now()), +(19993, 'Per seconde wijzer', 'NL', now()), +(19994, 'Ruby Wax Goes Dutch', 'NL', now()), +(19995, 'Urwisy z Doliny Mlynow', 'PL', now()), +(19996, 'Klinik am Alex', 'DE', now()), +(19997, 'Bestemming Nederland', 'NL', now()), +(19998, 'Wat Schat Je?', 'NL', now()), +(19999, 'Stenders late vermaak', 'NL', now()), +(20000, 'Hoe?Zo!', 'NL', now()), +(20001, 'Evelien', 'NL', now()), +(20002, 'Sil de strandjutter', 'NL', now()), +(20003, 'When Weather Changed History', 'US', now()), +(20004, 'Ultimate Choice', 'US', now()), +(20005, 'The All-New Let''s Make a Deal', 'US', now()), +(20006, 'Stuff Happens Hosted by Bill Nye', 'US', now()), +(20007, 'Amazing Wedding Cakes', 'US', now()), +(20008, 'CMA Music Festival', 'US', now()), +(20010, 'WordGirl', 'US', now()), +(21952, 'Take Me Out', 'NL', now()), +(20012, 'Project Xtreme', 'US', now()), +(20013, 'Gegen Den Wind', 'DE', now()), +(20014, 'Hagedorns Tochter', 'DE', now()), +(20015, 'Der Kapitän', 'DE', now()), +(20016, 'Der Landarzt', 'DE', now()), +(20017, 'Herenstraat 10', 'NL', now()), +(20018, 'The Secret Saturdays', 'US', now()), +(20019, 'Willem van Oranje', 'NL', now()), +(20020, 'Wij Alexander', 'NL', now()), +(20021, 'In de Vlaamsche pot', 'NL', now()), +(20022, 'Inga Lindström', 'SE', now()), +(20023, 'The Dish', 'US', now()), +(20024, 'For One Night Only', 'UK', now()), +(20025, 'Holland Sport', 'NL', now()), +(20026, 'Country Music Across America', 'US', now()), +(20027, 'The CMU Variety Hour', 'US', now()), +(20028, 'Verborgen gebreken', 'NL', now()), +(20029, 'Flikken', 'BE', now()), +(20030, 'MTV''s Top Pop Group', 'US', now()), +(20031, 'Fashion Rocks', 'US', now()), +(20032, 'Wunderkind Little Amadeus', 'US', now()), +(20033, 'Puberruil', 'NL', now()), +(20034, 'Op zoek naar Evita', 'NL', now()), +(20035, 'Lotta in Love', 'DE', now()), +(20036, 'Elfde uur, Het', 'NL', now()), +(20037, 'Voetbal International', 'NL', now()), +(20038, 'Somebodies', 'US', now()), +(20039, 'What To Eat Now', 'UK', now()), +(20041, 'Bassie en Adriaan', 'NL', now()), +(20042, 'Wie ben ik? (1990)', 'NL', now()), +(20043, 'Undercover in Nederland', 'NL', now()), +(20045, 'Top Chef Junior', 'US', now()), +(20046, 'Afvallers, De', 'NL', now()), +(20047, 'Irish Matchmaker, The', 'NL', now()), +(20048, 'zo: RAYMANN', 'NL', now()), +(20049, 'Schatjes', 'NL', now()), +(20050, 'Hollandse krijgers', 'NL', now()), +(20051, 'High school musical, la selección', 'MX', now()), +(20052, 'Place of Execution', 'UK', now()), +(20053, 'A Thousand Apologies', 'NZ', now()), +(20054, 'Leugen Regeert, De', 'NL', now()), +(20055, 'GameVille', 'NL', now()), +(20056, 'Hole in the Wall (UK)', 'UK', now()), +(20057, 'Dom''s On The Case', 'UK', now()), +(20058, 'Comedy Factory (NL)', 'NL', now()), +(20059, 'Vem kan slå Filip och Fredrik', 'SE', now()), +(20060, 'Verre verwanten', 'NL', now()), +(20061, 'Blauw bloed', 'NL', now()), +(20062, 'Kaaskoppen & waterlanders', 'NL', now()), +(20063, 'Praatjesmakers', 'NL', now()), +(20064, 'Nieuwe Uri Geller, De', 'NL', now()), +(20066, 'Minami-ke', 'JP', now()), +(20067, 'Zonnetje in huis, Het', 'NL', now()), +(20068, 'So You Think You Can Dance Canada', 'CA', now()), +(20069, 'Who Wants To Be A Millionaire (NZ)', 'NZ', now()), +(20070, 'Yvon in de Buurt', 'NL', now()), +(20071, 'Chocolate News', 'US', now()), +(20072, 'Memories (NL)', 'NL', now()), +(20073, 'Memories Tour d''amour', 'NL', now()), +(20074, 'Reünie, De', 'NL', now()), +(20075, 'Radar', 'NL', now()), +(20076, 'Tom Green''s House Tonight', 'US', now()), +(20077, 'Rita Rocks', 'US', now()), +(20078, 'Surf & Rescue: Dewey Beach', 'US', now()), +(20079, 'Pauly Shore''s America', 'US', now()), +(20080, 'Zone stad', 'BE', now()), +(20081, 'Real Rescues', 'UK', now()), +(20082, 'The Dark Side of Fame With Piers Morgan', 'UK', now()), +(20083, 'Ingang Oost', 'NL', now()), +(20084, 'Neanderthal Code', 'US', now()), +(20085, 'Flight of the Jet Man', 'US', now()), +(20086, 'Afslag UMC', 'NL', now()), +(20087, 'The Underdog Show (2008)', 'UK', now()), +(20088, 'Rijdende Rechter, De', 'NL', now()), +(20089, 'Celebrity Juice', 'UK', now()), +(20090, 'Dagvaktin', 'IS', now()), +(20091, 'Ríkið', 'IS', now()), +(20092, 'hæðin', 'IS', now()), +(20093, 'Logi í Beinni', 'IS', now()), +(20094, 'Nature Shock', 'UK', now()), +(20095, 'Jamie''s Ministry of Food', 'UK', now()), +(20096, 'Dawn Porter: Free Lover', 'UK', now()), +(20097, 'Green Balloon Club', 'UK', now()), +(20098, 'Hello Goodbye (NL)', 'NL', now()), +(20099, 'Sjálfstætt Fólk', 'IS', now()), +(20100, 'Achter de voordeur', 'NL', now()), +(20101, 'Dat kan beter', 'NL', now()), +(20102, '25, De', 'NL', now()), +(20103, 'Italiaanse droom, De', 'NL', now()), +(20104, 'Live From Lincoln Center', 'US', now()), +(20105, 'Hål I Väggen', 'SE', now()), +(20106, 'Stor I Japan', 'SE', now()), +(20107, 'RIX MorronZoo', 'SE', now()), +(20108, 'Svartir Englar', 'IS', now()), +(20109, 'Trauma NL', 'NL', now()), +(20110, 'James May''s Big Ideas', 'UK', now()), +(20111, 'Wipeout (NL/BE)', 'NL', now()), +(20112, 'Tekinn', 'IS', now()), +(20113, 'Útsvar', 'IS', now()), +(20114, 'Grote beurt, De', 'NL', now()), +(20115, 'Kassa', 'NL', now()), +(20116, 'Restauratie', 'NL', now()), +(20117, 'Hakushaku to Yōsei', 'JP', now()), +(20118, 'Toradora!', 'JP', now()), +(20119, 'Casshern Sins', 'JP', now()), +(20120, 'Hyakko', 'JP', now()), +(20121, 'Shikabane Hime: Aka', 'JP', now()), +(20122, 'Kuroshitsuji', 'JP', now()), +(20123, 'Akane-Iro ni Somaru Saka', 'JP', now()), +(20124, 'Hokuto no Ken Raoh Gaiden: Ten no Haoh', 'JP', now()), +(20125, 'Yozakura Quartet', 'JP', now()), +(20126, 'Tales of the Abyss', 'JP', now()), +(20127, 'Tentai Senshi Sunred', 'JP', now()), +(20128, 'Linebarrels of Iron', 'JP', now()), +(20129, 'Shugo Chara!', 'JP', now()), +(20130, 'Kannagi: Crazy Shrine Maidens', 'JP', now()), +(20131, 'To Aru Majutsu no Index', 'JP', now()), +(20132, 'Kemeko Deluxe!', 'JP', now()), +(20133, 'Ga-Rei -Zero-', 'JP', now()), +(20134, 'David Blaine: Dive of Death', 'US', now()), +(20135, 'Aaron Stone', 'US', now()), +(20136, 'RoboDz Kazagumo Hen', 'JP', now()), +(20137, 'Andere Tijden', 'NL', now()), +(20138, 'Untouched America', 'US', now()), +(20139, 'Hero Ships', 'US', now()), +(20140, 'Sana''y wala ng wakas', 'PH', now()), +(20141, 'Spoorloos', 'NL', now()), +(20142, 'Parents of the Band', 'UK', now()), +(20143, 'Sterren voor de klas', 'NL', now()), +(20144, 'Hart en Ziel', 'NL', now()), +(20145, 'Macademi Wasshoi!', 'JP', now()), +(20146, 'ef - a tale of melodies', 'JP', now()), +(20147, 'The Chef Jeff Project', 'US', now()), +(20148, 'Whatever, Martha!', 'US', now()), +(20149, 'Big Daddy''s House', 'US', now()), +(20150, 'Chew or False', 'US', now()), +(20151, 'Eat the Clock', 'US', now()), +(20152, 'Eating on the Edge', 'US', now()), +(20153, 'Food Jobs', 'US', now()), +(20154, 'Z Rock', 'US', now()), +(20155, 'Guy Off the Hook', 'US', now()), +(20156, 'Kitchen Zero to Superhero', 'US', now()), +(20157, 'The Next Iron Chef America International', 'US', now()), +(20158, 'Iron Chef America: Battle of the Masters', 'US', now()), +(20159, 'Soldier of Fortune, Inc.', 'US', now()), +(20160, 'The Power of Food', 'US', now()), +(20161, 'Rock Bottom', 'US', now()), +(20162, 'Unbreakable', 'UK', now()), +(20163, 'The Story of Maths', 'UK', now()), +(20164, 'Gethin Jones'' Danger Hunters', 'UK', now()), +(20165, 'Gouden Televizier-Ring Gala, Het', 'NL', now()), +(20166, 'Machines of Malice', 'US', now()), +(20167, 'Coming Of Age (UK)', 'UK', now()), +(20168, 'Loose at 5:30', 'UK', now()), +(20169, 'Catch 21', 'US', now()), +(20170, 'Peter R. de Vries misdaadverslaggever', 'NL', now()), +(20171, 'Road Tasted', 'US', now()), +(20172, 'Adventures in Eating', 'US', now()), +(20173, 'Dear Green Place', 'UK', now()), +(20174, 'Two Bob Rocket', 'UK', now()), +(20175, 'Ruffian Hearts', 'UK', now()), +(20176, 'Kung Mahawi Man Ang Ulap', 'PH', now()), +(20177, 'British Style Genius', 'UK', now()), +(20178, 'Paul Merton in India', 'UK', now()), +(20179, 'Greatest Cities of the World with Griff Rhys Jones', 'UK', now()), +(20180, 'Wilderness Explored', 'UK', now()), +(20181, 'Homes and Property', 'UK', now()), +(20182, 'Dorpsdokter, De', 'NL', now()), +(20183, 'Ursäkta röran (vi bygger om)', 'SE', now()), +(20184, 'Ikbenwiedu', 'NL', now()), +(20185, 'Gina''s Laughing Gear', 'UK', now()), +(20186, 'Escape from Scorpion Island', 'UK', now()), +(20187, 'Öppna Dagar', 'SE', now()), +(20188, 'Kurozuka', 'JP', now()), +(20189, 'Chaos;HEAd', 'JP', now()), +(20190, 'Tytania', 'JP', now()), +(20191, 'World''s Toughest Fixes', 'US', now()), +(20192, 'Tegenlicht', 'NL', now()), +(20193, 'Pop''s Ultimate Star', 'NZ', now()), +(20194, 'Popstars (Finland)', 'FI', now()), +(20195, '4Pop', 'FI', now()), +(20196, 'Thuis', 'BE', now()), +(20197, 'Rebelde', 'MX', now()), +(20198, 'Centrale Huisartsenpost, De', 'NL', now()), +(20199, 'Pop Goes The Band', 'UK', now()), +(20200, 'VidaTv', 'MX', now()), +(20201, 'Trasniti din N.A.T.O.', 'RO', now()), +(20202, 'The Wonderful Maladys', 'US', now()), +(20203, '19 Kids and Counting', 'US', now()), +(20204, 'Dead Set', 'UK', now()), +(20205, 'Pop Idol Extra', 'UK', now()), +(20206, 'Lights, Camera, Animals', 'UK', now()), +(20207, 'Tot de dood ons scheidt', 'NL', now()), +(20208, 'Richard And Judy''s New Position', 'UK', now()), +(20209, 'Blik op de weg', 'NL', now()), +(20210, '''t Zal je maar gebeuren', 'NL', now()), +(20211, 'Wheels on 7', 'NL', now()), +(20212, 'Put Your Money Where Your Mouth Is', 'UK', now()), +(20213, 'The Story Of The Guitar', 'UK', now()), +(20214, 'Sex... with Mom and Dad', 'US', now()), +(20215, 'I ditt ansikte', 'SE', now()), +(20216, 'Paris Hilton''s My New BFF', 'US', now()), +(20217, 'Hem till Midgård', 'SE', now()), +(20218, 'Last Chance for Romance', 'CA', now()), +(20219, 'Wij zijn de Geschiedenis', 'NL', now()), +(20220, 'Kinderziekenhuis, Het', 'NL', now()), +(20221, 'Blush: The Search for the Next Great Makeup Artist', 'US', now()), +(20222, 'Wired', 'UK', now()), +(20223, 'Albert', 'NL', now()), +(20225, 'Stephen Fry In America', 'UK', now()), +(20226, 'Howie Do It', 'US', now()), +(20227, 'Temptation Island (NL)', 'NL', now()), +(20228, 'Last Man Standing (UK)', 'UK', now()), +(20229, 'Undercover Lover', 'NL', now()), +(20230, 'Factory Floor With Marshall Brian', 'US', now()), +(20231, 'Going For Gold (2008)', 'UK', now()), +(20232, 'Garage, De', 'NL', now()), +(20233, 'Luifel & Luifel', 'NL', now()), +(20234, 'Koppensnellers', 'NL', now()), +(20235, 'Foreign Body', 'US', now()), +(20894, 'Pleasure for Sale', 'US', now()), +(20237, 'Prom Queen: Summer Heat', 'US', now()), +(20238, 'Tokyo Prom Queen', 'JP', now()), +(20239, 'Sam Has 7 Friends', 'US', now()), +(20240, 'Se Busca Un Hombre', 'MX', now()), +(20241, 'Cambio De Vida', 'MX', now()), +(20242, 'Sexo Fuerte', 'MX', now()), +(20243, 'Lo Que Callamos Las Mujeres', 'MX', now()), +(20244, 'La Vida Es Una Cancion', 'MX', now()), +(20245, 'Breaking the Magician''s Code: Magic''s Biggest Secrets Finally Revealed', 'US', now()), +(20246, 'Enamorarte', 'AR', now()), +(20247, 'Abre Tus Ojos', 'AR', now()), +(20248, 'Los Roldan', 'AR', now()), +(20249, 'Te La Sabes? Cantala Famosos', 'MX', now()), +(20250, 'Desesperadas por el Aire', 'AR', now()), +(20251, 'Danger Men', 'UK', now()), +(20252, 'The Big Match', 'UK', now()), +(20253, 'Westzijde Posse', 'NL', now()), +(20254, 'The Capture of the Green River Killer', 'CA', now()), +(20255, 'Aanpakken & Wegwezen!', 'NL', now()), +(20256, '30 Hoog', 'NL', now()), +(20257, 'Topstars', 'NL', now()), +(20258, '3 op reis', 'NL', now()), +(20259, 'Guinea Pig', 'CA', now()), +(20260, 'Kenny''s World', 'AU', now()), +(20261, 'Malini Iyer', 'IN', now()), +(20262, 'BBC Wild Weather', 'UK', now()), +(20263, 'Pulse (NL)', 'NL', now()), +(20264, 'Watching The Detectives', 'US', now()), +(20265, 'Fredag hela veckan', 'SE', now()), +(20266, 'Ride with the Devil', 'NZ', now()), +(20267, 'Campinglife', 'NL', now()), +(20268, 'My Big Amazing Renovation', 'US', now()), +(20269, 'The Million Dollar Con Man', 'NZ', now()), +(20270, 'Downsize Me', 'NZ', now()), +(20271, 'Home and Away (UK)', 'UK', now()), +(20272, 'Twiggy''s Frock Exchange', 'UK', now()), +(20273, 'Jong', 'NL', now()), +(20274, 'Judge Jeanine Pirro', 'US', now()), +(20275, 'The Pretender (NZ)', 'NZ', now()), +(20276, 'The WotWots', 'NZ', now()), +(20277, 'Time Warp', 'US', now()), +(20278, 'Spain...on the road Again', 'US', now()), +(20279, 'Open House', 'UK', now()), +(20280, 'World''s Funniest Moments', 'US', now()), +(20281, 'In De Hoofdrol', 'NL', now()), +(20282, 'My Life In Food', 'US', now()), +(20283, 'Championship Ballroom Dancing', 'US', now()), +(20284, 'Are You An Egghead?', 'UK', now()), +(20285, 'Basil''s Game Show', 'UK', now()), +(20286, 'Waar is de Mol?', 'NL', now()), +(20287, 'Get 100', 'UK', now()), +(20288, 'Sports Soup', 'US', now()), +(20289, 'Rookies', 'US', now()), +(20290, 'Klondike: The Quest for Gold', 'CA', now()), +(20291, 'Ancestors In The Attic', 'CA', now()), +(20292, 'Pinks: All Out', 'US', now()), +(20293, 'Pinks All Outtakes', 'US', now()), +(20294, 'Giada At Home', 'US', now()), +(20295, 'Coolio''s Rules', 'US', now()), +(20296, 'Real Chance of Love', 'US', now()), +(20297, 'The Record', 'UK', now()), +(20298, 'Holyrood Live', 'UK', now()), +(20299, 'Market Kitchen', 'UK', now()), +(20300, 'Cachito De Mi Corazon', 'MX', now()), +(20301, 'Planet in Peril Battle Lines', 'US', now()), +(20302, 'Rocco Gets Real', 'US', now()), +(20303, 'We Mean Business', 'US', now()), +(20304, 'Titans of Taste', 'US', now()), +(20305, 'RTL Travel', 'NL', now()), +(20306, 'Dogs 101', 'US', now()), +(20307, 'Beauty & de Nerd', 'NL', now()), +(20308, 'Cha$e (2008)', 'US', now()), +(20309, '3Way', 'US', now()), +(20310, 'HypaSpace', 'CA', now()), +(20311, 'The Circuit (2008)', 'CA', now()), +(20312, 'In voor- en tegenspoed', 'NL', now()), +(20313, '71° Noord', 'BE', now()), +(20314, 'Help, mijn man is klusser!', 'NL', now()), +(20315, 'Co-Ed Confidential', 'US', now()), +(20316, 'Zane''s Sex Chronicles', 'US', now()), +(20317, 'Torvill & Dean''s Dancing on Ice', 'AU', now()), +(20318, 'Bert''s Family Feud', 'AU', now()), +(20319, 'Fashion Trix', 'NL', now()), +(20320, 'Moordspel', 'NL', now()), +(20321, 'Investigation X', 'US', now()), +(20322, 'Bogan Pride', 'AU', now()), +(20323, 'TV Makelaar', 'NL', now()), +(20324, 'Top Gear Australia', 'AU', now()), +(20325, 'Fobiac', 'NL', now()), +(20326, 'Eye Opener', 'NL', now()), +(20327, 'Ranked', 'US', now()), +(20328, 'Britannia High', 'UK', now()), +(20329, 'Miss Naked Beauty', 'UK', now()), +(20330, 'Zeg ‘ns AAA (2009)', 'NL', now()), +(20331, 'Zeg ''ns AAA (1981)', 'NL', now()), +(20332, 'Cash Cab: After Dark', 'US', now()), +(20333, 'Real Simple. Real Life.', 'US', now()), +(20334, 'Vegas Confessions', 'US', now()), +(20335, 'Creature', 'US', now()), +(20336, 'Jockeys', 'US', now()), +(20337, 'Extreme Trains', 'US', now()), +(20338, 'Ghost Adventures', 'US', now()), +(20339, 'Trinity Xaveria', 'TT', now()), +(20340, 'Ski Patrol', 'US', now()), +(20341, 'Man vs. Cartoon', 'US', now()), +(20342, 'Lisa Williams: Voices from the Other Side', 'US', now()), +(20343, 'The Adventures of Danny & The Dingo', 'US', now()), +(20344, 'The Captain & Casey Show', 'US', now()), +(20345, 'American Misfits', 'US', now()), +(20346, 'Camp Woodward', 'US', now()), +(20347, 'Check 1,2', 'US', now()), +(20348, 'Hyakujūō GoLion', 'JP', now()), +(20349, 'Batman: The Brave and The Bold', 'US', now()), +(20350, 'Niania', 'PL', now()), +(20351, 'SexTV', 'CA', now()), +(20352, 'Bump & Grind', 'UK', now()), +(20353, 'Bump & Grind: The Making of a Burlesque Diva', 'CA', now()), +(20354, 'Beyond Carnival: Sex in Brazil', 'CA', now()), +(20355, 'X - A People''s History', 'CA', now()), +(20356, 'Sex Wars: Gender in the Age of Representation', 'CA', now()), +(20357, 'Paris Hilton''s My New BBF', 'UK', now()), +(20358, 'Erotic City', 'CA', now()), +(20359, 'Sexplorations', 'US', now()), +(20360, 'Voyeur: SexTV Uncut', 'US', now()), +(20361, 'Making a Scene', 'US', now()), +(20362, 'The Erotic Traveler', 'US', now()), +(20363, 'Sin City Diaries', 'US', now()), +(20364, 'Life After Film School', 'US', now()), +(20365, '4Real', 'US', now()), +(20366, 'Casting Session', 'US', now()), +(20367, 'Speeders Fight Back', 'US', now()), +(20368, 'truTV Presents: World''s Dumbest...', 'US', now()), +(20369, 'Under Investigation', 'US', now()), +(20370, 'The Doctors (2008)', 'US', now()), +(20371, 'One Week to Save Your Marriage', 'US', now()), +(20372, 'The Rachel Maddow Show', 'US', now()), +(20373, 'Living With the Wolfman', 'US', now()), +(20374, 'Mondenii', 'RO', now()), +(20375, 'Neil Morrissey''s Risky Business', 'UK', now()), +(20376, 'Dr. Molly & Karl', 'DE', now()), +(20377, 'Plötzlich Papa - Einspruch abgelehnt!', 'DE', now()), +(20378, 'My Family at War', 'UK', now()), +(20379, 'The Home Show (UK)', 'UK', now()), +(20380, 'The People''s Hospital', 'UK', now()), +(20381, 'Derek Ogilvie: The Ghost Whisperer', 'NL', now()), +(20382, 'Gemini Division', 'US', now()), +(20383, 'Nederland te Koop', 'NL', now()), +(20384, 'Diggnation', 'US', now()), +(20385, 'Plutón BRB Nero', 'ES', now()), +(20386, 'Muchachada Nui', 'ES', now()), +(20387, 'Politiets Indsatsstyrke', 'DK', now()), +(20388, 'On the Prowl with Cat Greenleaf', 'US', now()), +(20389, 'Cat on the Prowl', 'US', now()), +(20390, 'Redemption Song', 'US', now()), +(20391, 'Hotel De Witte Raaf', 'NL', now()), +(20392, '''t Vrije Schaep', 'NL', now()), +(20393, 'Hollands Glorie', 'NL', now()), +(20394, 'Ghost Hunters Academy', 'US', now()), +(20395, 'Otto live! Das Original', 'DE', now()), +(21917, 'All American Girl (2003)', 'US', now()), +(20795, 'Voor hete vuren', 'NL', now()), +(20398, 'Willa''s Wild Life', 'CA', now()), +(20399, 'Whale Wars', 'US', now()), +(20400, 'Ruby (2008)', 'US', now()), +(20401, 'Ecopolis', 'US', now()), +(20402, 'World Baseball Classic Tonight', 'US', now()), +(20403, 'Download', 'DK', now()), +(20404, 'Download: The True Story of the Internet', 'US', now()), +(20405, 'How Do They Do It?', 'CA', now()), +(20406, 'Invention Nation', 'US', now()), +(20407, 'As Filhas da Mãe', 'BR', now()), +(20408, 'Metamorphoses', 'BR', now()), +(20409, '123 saker', 'SE', now()), +(20411, 'Spin Star', 'UK', now()), +(20412, 'Sterren dansen op het ijs', 'NL', now()), +(20413, 'Sex Change Hospital (US)', 'US', now()), +(20414, 'Conversations With A Serial Killer', 'UK', now()), +(20415, 'Special Forces Heroes', 'UK', now()), +(20416, 'Shaken Not Stirred', 'US', now()), +(20417, 'Six For the Road', 'US', now()), +(20418, 'Hart in aktie', 'NL', now()), +(20420, 'Liefdesmakelaar, De', 'NL', now()), +(20421, 'Dangerous Adventures for Boys', 'UK', now()), +(20422, 'The Last Millionaire', 'UK', now()), +(20423, 'The Real Exorcist', 'US', now()), +(20424, 'Mouth To Mouth', 'UK', now()), +(20425, 'In Europa', 'NL', now()), +(20426, 'Grave Justice', 'US', now()), +(20427, 'family rosary crusade', 'PH', now()), +(20428, 'Balitanghali', 'PH', now()), +(20429, 'Groeten uit de Rimboe', 'NL', now()), +(20430, 'Groeten Terug', 'NL', now()), +(20431, 'Miss en Mrs Perfect', 'NL', now()), +(20432, 'Premtime', 'NL', now()), +(20433, 'Nederland in 12 moorden', 'NL', now()), +(20434, 'Verleden van Nederland', 'NL', now()), +(20435, 'Kruispunt', 'NL', now()), +(20436, 'Succes verzekerd', 'NL', now()), +(20437, 'America''s Top 10', 'US', now()), +(20438, 'Fama Show', 'PT', now()), +(20439, 'Voor elkaar', 'NL', now()), +(20440, 'Missers', 'NL', now()), +(20441, 'Opium', 'NL', now()), +(20442, 'Op z''n Spaans', 'NL', now()), +(20443, 'Een goed begin', 'NL', now()), +(20444, 'Trauma centrum', 'NL', now()), +(20445, 'Twee voor Twaalf', 'NL', now()), +(20446, 'Profiel', 'NL', now()), +(20447, 'Tu e Eu', 'PT', now()), +(20448, 'Lingo (2006)', 'PT', now()), +(20449, 'Sexta à Noite', 'PT', now()), +(20450, 'Malucos no Hospital', 'PT', now()), +(20451, 'Celebrity Fear Factor UK', 'UK', now()), +(20452, 'News On Q', 'PH', now()), +(20453, 'Live On Q', 'PH', now()), +(20454, 'The Beat(PH)', 'PH', now()), +(20455, 'Living It Up (PH)', 'PH', now()), +(20456, 'Kids On Q!', 'PH', now()), +(20457, 'Tussen kunst & kitsch', 'NL', now()), +(20458, 'Lingo (NL)', 'NL', now()), +(20459, 'That''s the question (NL)', 'NL', now()), +(20460, 'Tv Patrol World', 'PH', now()), +(20461, 'Dirty Rotten Cheater (US)', 'US', now()), +(20462, 'The ½ Hour News Hour', 'US', now()), +(20463, 'First Class All The Way', 'US', now()), +(20464, 'The People''s Cookbook', 'UK', now()), +(20465, 'Sam Sam', 'NL', now()), +(20466, 'How to Survive the Property Crisis', 'UK', now()), +(20467, 'The Department Store', 'UK', now()), +(20468, 'Man bijt hond (NL)', 'NL', now()), +(20469, 'Vroege vogels', 'NL', now()), +(20470, 'Ha''Merotz La''Million', 'IL', now()), +(20471, 'A Place of Our Own', 'US', now()), +(20472, 'Baisden After Dark', 'US', now()), +(20473, 'The Amazing Race En Discovery Channel', 'AR', now()), +(20474, 'Ballbreakers', 'US', now()), +(20475, 'Ballers', 'US', now()), +(20476, 'Who''s Got Jokes?', 'US', now()), +(20477, 'Celebrity Says', 'US', now()), +(20478, 'Championship Gaming Series', 'US', now()), +(20479, 'The Checklist', 'US', now()), +(20480, 'ESPN Hollywood', 'US', now()), +(20481, 'Fashion Police', 'US', now()), +(20482, 'D.L. Hughley Breaks the News', 'US', now()), +(20483, 'Dancing on ice (NL)', 'NL', now()), +(20484, 'Unang Hirit', 'PH', now()), +(20485, 'Final Score (US)', 'US', now()), +(20486, 'The Pulse (US)', 'US', now()), +(20487, 'The Pulse (2006)', 'US', now()), +(20488, 'FOX NFL Sunday', 'US', now()), +(20489, 'Global Watch', 'US', now()), +(20490, 'The Gospel of Music with Jeff Majors', 'US', now()), +(20491, 'Rude Tube', 'UK', now()), +(20492, 'Totally Football', 'US', now()), +(20493, 'FSN Final Score Extra', 'US', now()), +(20494, 'Wild About Your Garden', 'UK', now()), +(20495, 'The Devil''s Whore', 'UK', now()), +(20496, 'Nationale Wetenschapsquiz, De', 'NL', now()), +(20497, 'College Football Final', 'US', now()), +(20498, 'ESPN College Football Saturday Primetime', 'US', now()), +(20499, 'College Football Live', 'US', now()), +(20500, 'Appelgaard, De', 'NL', now()), +(20501, 'College Football Scoreboard', 'US', now()), +(20502, 'ESPNU Summer House', 'US', now()), +(20503, 'Nationale Verkeersexamen, Het', 'NL', now()), +(20504, 'Kinderen van Dewindt', 'BE', now()), +(20505, 'Shadow Force', 'US', now()), +(20506, 'The Barristers', 'UK', now()), +(20507, 'Rondom Tien', 'NL', now()), +(20508, 'True Jackson, VP', 'US', now()), +(20509, 'Kannibalen', 'NL', now()), +(20510, 'Mannen, mannen', 'NL', now()), +(20511, 'Afdeling, De', 'NL', now()), +(20512, 'Oskyldigt dömd', 'SE', now()), +(20513, 'Tequila', 'NL', now()), +(20514, 'Tett på tre', 'NO', now()), +(20515, 'Toot & Puddle', 'US', now()), +(20516, 'Manhunters: Fugitive Task Force', 'US', now()), +(20805, 'Daleko od noszy', 'PL', now()), +(20518, 'Comedy Slapdown', 'AU', now()), +(20520, 'De Nationale BNN Test', 'NL', now()), +(20521, 'Het beste van Big Brother', 'NL', now()), +(20522, 'Matakuten', 'SE', now()), +(20523, 'Färjan', 'SE', now()), +(20524, 'De Grote Donorshow', 'NL', now()), +(20525, 'Familiediner, Het', 'NL', now()), +(20526, 'Extreme Loggers', 'US', now()), +(20527, 'Reunions', 'PH', now()), +(20528, 'Guinness World Records Smashed!', 'UK', now()), +(20529, 'Mevrouw Ten Kate', 'NL', now()), +(20530, 'Hospital Heroes', 'UK', now()), +(20531, 'Catastrophe', 'UK', now()), +(20532, 'Herberg De Verandering', 'NL', now()), +(20533, '40 Dagen zonder seks', 'NL', now()), +(20534, 'Mijn idee', 'NL', now()), +(20535, 'Rehab: Party at the Hard Rock Hotel', 'US', now()), +(23595, 'Gran Hermano del Pacífico', 'CL', now()), +(20537, 'Brothers to Brutha', 'US', now()), +(20538, 'A History of Scotland', 'UK', now()), +(20539, 'HowStuffWorks', 'US', now()), +(20540, 'Schoonmaakdiva van Nederland, De', 'NL', now()), +(20541, 'Buy It, Sell It, Bank It?', 'UK', now()), +(20542, 'Ruben vs Sophie', 'NL', now()), +(20543, 'Combat Chefs', 'UK', now()), +(20544, 'Vegas Revolution', 'US', now()), +(20545, '50 Cent: The Money and the Power', 'US', now()), +(20546, 'Out Of The Blue (1995)', 'US', now()), +(20547, 'Swift and Shift Couriers', 'AU', now()), +(20548, 'The Florence Henderson Show', 'US', now()), +(20549, 'T.H.E.M.', 'US', now()), +(20550, 'Op zoek naar Yolanda', 'NL', now()), +(20551, 'Lachende Scheerkwast, De', 'NL', now()), +(20552, 'Oceans', 'UK', now()), +(20553, 'Plafond over de vloer', 'NL', now()), +(20554, 'Postcode Loterij Miljoenenjacht', 'NL', now()), +(20555, 'Het is weer zo laat', 'NL', now()), +(20556, 'Geloof, seks & (wan)hoop', 'NL', now()), +(20557, 'Volgende keer beter', 'NL', now()), +(20558, '100 singles, De', 'NL', now()), +(20559, 'Akikan!', 'JP', now()), +(20560, 'Caribbean Cops', 'US', now()), +(20561, 'White Album', 'JP', now()), +(20562, 'Genji Monogatari Sennenki', 'JP', now()), +(20563, 'Mom''s Cooking', 'US', now()), +(20565, 'The Chopping Block (US)', 'US', now()), +(20566, 'National Heads-Up Poker Championship', 'US', now()), +(20567, 'Tornado Road', 'US', now()), +(20568, 'Top Gear (US)', 'US', now()), +(20569, 'Top Gear Motorsport', 'UK', now()), +(20570, 'Celebrity Rehab Presents Sober House', 'US', now()), +(20571, 'Fears. Regrets. Desires.', 'US', now()), +(20572, 'Swords: Life on the Line', 'US', now()), +(20573, 'XIII: The Conspiracy', 'CA', now()), +(20574, 'The Nighttime Price Is Right (1972)', 'US', now()), +(20044, 'The Price Is Right Million Dollar Spectacular', 'US', now()), +(20575, 'The Nighttime Price Is Right (1985)', 'US', now()), +(20576, 'The Price Is Right (1956)', 'US', now()), +(20577, 'Wayne Rooney''s Street Striker', 'UK', now()), +(20578, 'Extreme Bodies', 'US', now()), +(20579, 'Weltevreden op 10: Percy''s Place!', 'NL', now()), +(20580, 'Unexplained with George Noory', 'US', now()), +(20581, 'Operation Repo', 'US', now()), +(20582, 'Sex, Drugs and Rock ''n'' Roll: The 60s Revealed', 'UK', now()), +(20583, 'NCRV Natuurlijk - Bosch, Beuk & Haan', 'NL', now()), +(20584, 'NCRV Natuurlijk - Natuurlijk Nico', 'NL', now()), +(20585, 'NCRV Natuurlijk - NL onder water', 'NL', now()), +(20586, 'NCRV Natuurlijk - Natuur in de stad', 'NL', now()), +(20587, 'NCRV Natuurlijk - Nationale Landschappen', 'NL', now()), +(20588, 'NCRV Natuurlijk - Moeder Maas', 'NL', now()), +(20589, 'NCRV Natuurlijk - Het Blauwe Goud', 'NL', now()), +(20590, 'It Pays to Be Ignorant (1973)', 'US', now()), +(20591, 'It Pays to Be Ignorant', 'US', now()), +(20799, 'Delocated', 'US', now()), +(20593, 'A Colbert Christmas: The Greatest Gift of All!', 'US', now()), +(20594, 'ConsuMinderman, De', 'NL', now()), +(20595, 'Hoge Bomen', 'NL', now()), +(20596, 'Pro-Am Poker Equalizer', 'US', now()), +(20597, 'The Fantasy Show', 'US', now()), +(20598, 'Poker Dome Challenge', 'US', now()), +(20599, 'Intercontinental Poker Championship', 'US', now()), +(20600, 'Man vs Vegas', 'US', now()), +(20601, 'United States of Tara', 'US', now()), +(20602, 'Keuringsdienst van Waarde', 'NL', now()), +(20603, 'Late Night Stars of Poker', 'NL', now()), +(20604, 'Parels & zwijnen', 'NL', now()), +(20605, 'Super Swank', 'US', now()), +(20606, 'This Is Alice', 'US', now()), +(20607, 'Kip en het ei, De', 'NL', now()), +(20608, 'Rosie Live', 'US', now()), +(20609, 'Would Be Kings', 'CA', now()), +(20610, 'I''m a Celebrity Get Me Out of Here Now', 'UK', now()), +(20611, 'Ei van Columbus, Het', 'NL', now()), +(20612, 'Egypt Unwrapped', 'US', now()), +(20613, 'Gebak van Krul', 'NL', now()), +(20614, 'Rock & A Hard Place', 'US', now()), +(20615, 'Child Star Confidential', 'US', now()), +(20616, 'Brekers, De', 'NL', now()), +(20617, 'Ik ben je moeder niet', 'NL', now()), +(20618, 'Dagboek van een herdershond', 'NL', now()), +(20619, 'Homeland Security USA', 'US', now()), +(20620, 'The City (2008)', 'US', now()), +(20621, 'Jesse James is a Dead Man', 'US', now()), +(20622, 'Maui Chopper', 'US', now()), +(20623, 'Tyler Perry''s Meet the Browns', 'US', now()), +(20624, 'Party Monsters: Cabo', 'US', now()), +(20625, 'Smile You’re Under Arrest', 'US', now()), +(20626, 'Spectacle: Elvis Costello with ...', 'US', now()), +(20627, 'True Beauty', 'US', now()), +(20628, 'Chopped', 'US', now()), +(20629, 'Will Work For Food', 'US', now()), +(20630, 'Ik mis je', 'NL', now()), +(20631, 'Joris'' Showroom', 'NL', now()), +(20632, 'The Merrick & Rosso Show', 'AU', now()), +(20633, 'Snuf de hond', 'NL', now()), +(20634, 'Bitches', 'NL', now()), +(20635, 'Uur van de wolf, Het', 'NL', now()), +(20636, 'Ben zo terug', 'NL', now()), +(20637, 'Making It Home: Greensburg', 'US', now()), +(20638, 'Sexual Healing', 'US', now()), +(20639, 'Consult', 'NL', now()), +(20640, 'UFO''s Over Earth', 'US', now()), +(20641, 'National Lampoon''s Funny Money', 'US', now()), +(20642, 'R.I.S. - Delitti Imperfetti', 'IT', now()), +(20643, 'Thomas en Senior', 'NL', now()), +(20644, 'Hvaler', 'NO', now()), +(20645, 'Beehive', 'UK', now()), +(20646, 'Pasila', 'FI', now()), +(20647, 'Metsolat', 'FI', now()), +(20648, 'Country House Rescue', 'UK', now()), +(20649, 'Chris Ryan''s Elite World Cops', 'UK', now()), +(20650, 'Uitgedokterd?!', 'NL', now()), +(20651, 'Spoor van leven', 'NL', now()), +(20652, 'MLB Tonight', 'US', now()), +(20653, 'Work That Room', 'US', now()), +(20654, 'S.O.B.: Socially Offensive Behavior', 'US', now()), +(20655, 'Tuinruimers, De', 'NL', now()), +(20656, 'Koning van de Maas', 'NL', now()), +(20657, 'David, el gnomo', 'ES', now()), +(20658, 'Garage, De (VOO)', 'NL', now()), +(20659, 'Uit de school geklapt', 'NL', now()), +(21902, 'The Elephant Princess', 'AU', now()), +(20661, 'Question Time Extra', 'UK', now()), +(20662, 'UnSung', 'US', now()), +(20663, 'Superstars of Dance', 'US', now()), +(20664, 'Steven Seagal: Lawman', 'US', now()), +(20665, 'The Saint (2013)', 'US', now()), +(20666, 'Pink Panther & Pals', 'US', now()), +(20667, 'Toddlers and Tiaras', 'US', now()), +(20668, 'Rebuilding the Kingdom', 'US', now()), +(20670, 'Raccontami', 'IT', now()), +(20671, 'The Detonators', 'US', now()), +(20672, 'For Better or Worse (2009)', 'US', now()), +(20673, 'Jones & Jury', 'US', now()), +(20674, 'Star Jones Show', 'US', now()), +(20675, 'Things a Man Should Never Do Past 30', 'US', now()), +(20676, 'Possible Side Effects', 'US', now()), +(20677, 'Britney: For the Record', 'US', now()), +(20678, 'The Middle', 'US', now()), +(20679, 'AR2', 'US', now()), +(20680, 'Making Friends With Black People', 'US', now()), +(20681, 'The Electric Company (2009)', 'US', now()), +(20682, 'Greatest Inventions with Bill Nye', 'US', now()), +(20683, 'American Eats', 'US', now()), +(20684, 'Ultra Sound', 'US', now()), +(20685, 'Argumental', 'UK', now()), +(20687, 'Go for the Green', 'US', now()), +(20688, 'Pulp Sport', 'NZ', now()), +(20689, 'My Workout', 'US', now()), +(20690, 'Real Drive', 'JP', now()), +(20691, 'Maid in Manhattan', 'US', now()), +(20692, 'M.K. 22', 'IL', now()), +(20693, 'Mata Hari', 'NL', now()), +(20694, 'House vision', 'NL', now()), +(20695, 'Kanjers Van Goud', 'NL', now()), +(20696, 'Studio', 'US', now()), +(20697, 'De Pfaffs', 'BE', now()), +(20698, 'Korenslag', 'NL', now()), +(20699, 'The Channel Four Daily', 'UK', now()), +(20700, 'TV-am', 'UK', now()), +(20701, 'Bobo''s in the bush', 'NL', now()), +(20702, 'Hotel Big Brother', 'NL', now()), +(20703, 'Big Brother VIPS', 'NL', now()), +(20704, 'Bus, De', 'NL', now()), +(20705, 'Gardeners'' World Top Tips', 'UK', now()), +(20706, 'Nature''s Top 40', 'UK', now()), +(20707, 'Gordon''s late nicht show', 'NL', now()), +(20708, 'Fram, De', 'NL', now()), +(20709, 'Bar, The', 'NL', now()), +(20710, 'Patty''s Fort', 'NL', now()), +(20711, 'I Can''t Believe I''m Still Single', 'US', now()), +(20712, 'Devil''s Brigade', 'CA', now()), +(20713, 'Recreating Eden', 'CA', now()), +(20714, 'Evacuees Reunited', 'UK', now()), +(20715, 'KerstSterrenCircus, Het', 'NL', now()), +(20716, 'Alles Is Kerst', 'NL', now()), +(20717, 'Man v. Food', 'US', now()), +(20718, 'Gewoon Jan Smit', 'NL', now()), +(20719, 'Bij Nader Inzien', 'NL', now()), +(20720, 'White Collar', 'US', now()), +(20721, 'Coverstory', 'NL', now()), +(20722, 'Could You Survive?', 'US', now()), +(20723, 'Zwarte sneeuw', 'NL', now()), +(20724, 'Hoe voelen wij ons vandaag?', 'NL', now()), +(20725, 'Galerij, Een', 'NL', now()), +(20726, 'Jotei', 'JP', now()), +(20727, 'Rick & Steve: The Happiest Gay Couple in All the World', 'US', now()), +(20728, 'Cats 101', 'US', now()), +(20729, 'Hij & Julia', 'NL', now()), +(20730, 'Dok 12', 'NL', now()), +(20731, 'Acteurs, De', 'NL', now()), +(20732, 'Loenatik', 'NL', now()), +(20733, 'Dolly Dots', 'NL', now()), +(20734, 'Screwed Over', 'CA', now()), +(20735, 'Marriage Under Construction', 'CA', now()), +(20736, 'Cock''d Gunns', 'CA', now()), +(20737, 'The Next Star', 'CA', now()), +(20738, 'Opening Soon: By Design', 'CA', now()), +(20739, 'Chef School', 'CA', now()), +(20740, 'Outback House', 'AU', now()), +(20741, 'When Spicy Meets Sweet', 'US', now()), +(20742, 'Celebrity Stitch Up', 'UK', now()), +(20743, 'Perseverance', 'UK', now()), +(20744, 'Fáilte Towers', 'IE', now()), +(20745, 'Celebrity Bainisteoir', 'IE', now()), +(20746, 'Top 2000', 'NL', now()), +(20747, 'Bij Yerli', 'NL', now()), +(20748, 'Afkicken', 'NL', now()), +(20749, 'Zeker weten', 'NL', now()), +(20750, 'Spraakmakende zaken', 'NL', now()), +(20751, 'Wildebeesten', 'NL', now()), +(20752, 'Megasztár', 'HU', now()), +(20753, 'Sexual Predator Alert', 'US', now()), +(20754, 'Pure Design', 'CA', now()), +(20755, 'Sarah''s House', 'CA', now()), +(20756, 'Colin & Justin''s Home Heist', 'CA', now()), +(20757, 'Colin and Justin on the Estate', 'UK', now()), +(20758, 'Hogmanay Stories', 'UK', now()), +(20759, 'Home to Flip', 'CA', now()), +(20760, 'Big City Broker', 'CA', now()), +(20761, 'Disaster DIY', 'CA', now()), +(20762, 'House Poor', 'CA', now()), +(20763, 'Income Property', 'CA', now()), +(20764, '25 Great Holiday Ideas', 'CA', now()), +(20765, 'Design U', 'CA', now()), +(20766, 'The Fix', 'CA', now()), +(20767, 'Family Matters (NL)', 'NL', now()), +(20768, 'Van Etter tot Engel', 'NL', now()), +(20769, 'Zomer van ''45, De', 'NL', now()), +(20770, 'M''n dochter en ik', 'NL', now()), +(20771, 'Hertenkamp', 'NL', now()), +(20772, 'The Krypton Factor (2009)', 'UK', now()), +(20773, 'Around The World In 80 Faiths', 'UK', now()), +(20774, 'Kitchen Equipped', 'CA', now()), +(20775, 'Peter Perfect', 'US', now()), +(20776, 'SeeMore''s Playhouse', 'US', now()), +(20777, 'Neat', 'CA', now()), +(20778, 'The Big Flip', 'CA', now()), +(20779, 'The Million Pound Property Experiment', 'UK', now()), +(20843, 'Late Night with Jimmy Fallon', 'US', now()), +(20781, '20 Quickest Ways to lose money on your property', 'UK', now()), +(20782, 'The 20 Quickest Ways to Make Money on your Property', 'UK', now()), +(20783, 'Crooked House', 'UK', now()), +(20784, 'Tony Robinson And The Blitz Witch', 'UK', now()), +(20785, 'Celebrity Mastermind', 'UK', now()), +(20786, 'The Big Questions', 'UK', now()), +(20787, 'River Cottage Autumn', 'UK', now()), +(20788, 'Sex in Court', 'UK', now()), +(20789, 'The Gamekillers', 'US', now()), +(20790, 'Biz Kid$', 'US', now()), +(20791, 'Demons', 'UK', now()), +(20792, 'Aanklacht, De', 'NL', now()), +(20793, 'Roar (UK)', 'UK', now()), +(20794, 'World''s Wildest Vacation Videos', 'US', now()), +(20796, 'Roes', 'NL', now()), +(20800, 'Beugró', 'HU', now()), +(20801, 'Spirou et Fantasio', 'FR', now()), +(20802, 'Important Things with Demetri Martin', 'US', now()), +(20803, 'Miss America: Countdown To The Crown', 'US', now()), +(20804, 'Stringers: LA', 'US', now()), +(20808, 'Palingsoap, De', 'NL', now()), +(20809, 'Family Biz', 'CA', now()), +(20810, 'Model Latina', 'US', now()), +(20811, 'Zwei Weihnachtsmänner', 'DE', now()), +(20812, 'Hallo België', 'BE', now()), +(20813, 'InFANity', 'US', now()), +(20814, 'Shop Like a Star', 'US', now()), +(20815, 'A Muppets Christmas: Letters To Santa', 'US', now()), +(20816, 'TV7', 'NL', now()), +(20817, 'We Live Here', 'US', now()), +(20818, 'Being Erica', 'CA', now()), +(20819, 'Peter Kay''s Britain''s Got The Pop Factor', 'UK', now()), +(20820, 'Gouden Loeki', 'NL', now()), +(20822, 'Satellite City', 'UK', now()), +(20823, 'Fuse Celebrity Playlist', 'US', now()), +(20824, 'Talking Metal', 'US', now()), +(20825, 'Warped Hall of Fame', 'US', now()), +(20826, 'The Sauce', 'US', now()), +(20829, 'Munchies', 'US', now()), +(20830, 'The Phone (2009)', 'US', now()), +(20831, 'WWE: Tribute To The Troops', 'US', now()), +(20832, 'Pants-Off Dance-Off', 'US', now()), +(20833, 'The Wild Roses', 'CA', now()), +(20835, 'Total Wipeout', 'UK', now()), +(20836, 'Eurovision: Your Country Needs You', 'UK', now()), +(20837, '5 jaar later', 'NL', now()), +(20838, 'Hoogste Woord, Het', 'NL', now()), +(20839, 'Wintergasten', 'NL', now()), +(20840, 'Caught In A Trap', 'UK', now()), +(20841, 'Das Geheimnis meines Vaters', 'DE', now()), +(20844, 'Human Wrecking Balls', 'US', now()), +(20845, 'Mr. Friday', 'CA', now()), +(20846, 'At the End of My Leash', 'CA', now()), +(20847, 'Birth Days', 'CA', now()), +(20848, 'Dick Clark''s New Year''s Rockin'' Eve with Ryan Seacrest', 'US', now()), +(20849, 'Crash Test Mommy', 'CA', now()), +(20850, 'How to Make Love to My Wife', 'CA', now()), +(20851, 'The Mom Show', 'CA', now()), +(20852, 'Outlaw In-Laws', 'CA', now()), +(20853, 'Runway Moms', 'US', now()), +(20854, 'Say Yes & Marry Me', 'CA', now()), +(20855, 'Spoiled Rotten', 'CA', now()), +(20856, 'Style Star', 'US', now()), +(20857, 'Superstar Hair Challenge', 'CA', now()), +(20858, 'The List', 'CA', now()), +(20859, 'X-Weighted', 'CA', now()), +(20860, 'Women on Top', 'CA', now()), +(20861, 'The Last 10 Pounds Bootcamp', 'CA', now()), +(20862, 'Til Debt Do Us Part', 'CA', now()), +(20863, 'Trinny & Susannah Undress the Nation', 'UK', now()), +(20864, 'Vanity Insanity', 'CA', now()), +(20865, 'Weird Weddings', 'CA', now()), +(20866, 'PaPaul', 'NL', now()), +(20867, 'Secret Millionaire Nederland', 'NL', now()), +(20868, 'Sophie op 3', 'NL', now()), +(20869, 'Christmas in Washington', 'US', now()), +(20870, 'Warzone', 'UK', now()), +(20871, 'Oz And James Drink To Britain', 'UK', now()), +(20872, 'Nicholas Crane''s Britannia: The Great Elizabethan Journey', 'UK', now()), +(20873, 'Top Chef (NL)', 'NL', now()), +(20874, 'Char - het medium', 'NL', now()), +(20875, 'Very Bad Men', 'CA', now()), +(20876, 'Keeping It Real', 'CA', now()), +(20877, 'Secret Files Of The Inquisition', 'CA', now()), +(20878, 'Ghost Towns of Canada', 'CA', now()), +(20879, 'The Week the Women Went', 'CA', now()), +(20880, 'Smart Cookies', 'CA', now()), +(20881, 'Design Interns', 'CA', now()), +(20883, 'For Rent', 'US', now()), +(20884, 'Hey, Remember Christmas?', 'CA', now()), +(20885, 'Home to Stay', 'CA', now()), +(20886, 'Mansions', 'CA', now()), +(20887, 'Petal Pushers', 'CA', now()), +(20888, 'The Property Shop', 'CA', now()), +(20889, 'The Really Big Flip', 'CA', now()), +(20890, 'The Decorating Adventures of Ambrose Price', 'CA', now()), +(20891, 'The Style Dept.', 'CA', now()), +(20892, 'The Unsellables', 'CA', now()), +(20893, 'World''s Greenest Homes', 'CA', now()), +(20895, 'Hotbox', 'CA', now()), +(20896, 'She''s Crafty', 'CA', now()), +(20897, 'Word Travels', 'CA', now()), +(20898, 'Buffalo Air', 'CA', now()), +(20899, 'System Crash (2008)', 'CA', now()), +(20900, 'The Dolphin Dealer', 'CA', now()), +(20901, 'Shimmy', 'CA', now()), +(20902, 'Make Some Noise', 'CA', now()), +(20903, 'Handyman Superstar Challenge', 'CA', now()), +(20904, 'Superstar Chef Challenge', 'CA', now()), +(20905, 'Just One Bite', 'CA', now()), +(20906, 'Designer Superstar Challenge', 'CA', now()), +(20907, 'Clara Sheller', 'FR', now()), +(20908, 'Claire Sweeney - My Big Fat Diet', 'UK', now()), +(20909, 'Rick Stein''s Memoirs Of A Seafood Chef', 'UK', now()), +(20910, 'Life Of Riley (2008)', 'UK', now()), +(20911, 'Victorian Farm', 'UK', now()), +(20912, 'Total Emergency', 'UK', now()), +(20913, 'Cowboy Builders', 'UK', now()), +(20914, 'Plus One', 'UK', now()), +(20915, 'The District Nurse', 'UK', now()), +(20916, 'Shoot For The Sun', 'UK', now()), +(20917, 'Eilbheas', 'UK', now()), +(20918, 'John Nettles Applauds', 'UK', now()), +(20919, 'Beyond Invention', 'CA', now()), +(20920, 'The Shopping Bags', 'CA', now()), +(20921, 'Anna and Kristina''s Grocery Bag', 'CA', now()), +(20922, 'Renovation Nation', 'US', now()), +(20923, 'Villa Felderhof', 'NL', now()), +(20924, 'Mord in bester Gesellschaft', 'DE', now()), +(20925, 'Carla Cametti, PD', 'AU', now()), +(20926, 'Binbo Danshi', 'JP', now()), +(20927, 'The Insider''s List', 'US', now()), +(20928, 'Battle of the Hollywood Hotties', 'US', now()), +(20929, 'Plastic Surgery: Before & After', 'US', now()), +(20930, 'Single in the City', 'US', now()), +(20931, 'Combat Zone', 'US', now()), +(20932, 'Road Hockey Rumble', 'CA', now()), +(20933, 'The Passionate Eye', 'CA', now()), +(20934, 'The Thirsty Traveler', 'CA', now()), +(20935, 'Fresh!', 'CA', now()), +(20936, 'MegaWorld', 'CA', now()), +(20937, 'Degrassi''s 40 Most Go There-est Moments', 'US', now()), +(20938, 'Star Racer', 'CA', now()), +(20939, 'The Assistants', 'US', now()), +(20940, 'Design to Win', 'CA', now()), +(20941, 'Sex, Toys and Chocolate', 'CA', now()), +(20942, 'Broken House Chronicles', 'CA', now()), +(20943, 'Creepy Canada', 'CA', now()), +(20944, 'Canada''s Worst Handyman', 'CA', now()), +(20945, 'Canada''s Worst Driver', 'CA', now()), +(20946, 'Britain''s Worst Driver', 'UK', now()), +(20947, 'Race Car Driver', 'US', now()), +(20948, 'The Jon Dore Television Show', 'CA', now()), +(20949, 'Triple Sensation', 'CA', now()), +(20950, 'St. Brigid''s Medical', 'US', now()), +(20951, 'Black in the 80s', 'US', now()), +(20952, 'Yummy Mummy', 'CA', now()), +(20953, 'Maria Holic', 'JP', now()), +(20954, 'Minami-ke: Okaeri', 'JP', now()), +(20955, 'Sora Kake Girl', 'JP', now()), +(34741, 'Mindy McCready: Hope To Heartbreak', 'US', now()), +(20957, 'Viper''s Creed', 'JP', now()), +(20958, 'Asu no Yoichi!', 'JP', now()), +(20959, 'The Sex Files', 'CA', now()), +(20960, 'The Wumblers', 'US', now()), +(20961, 'Dr Tatiana''s Sex Guide to All Creation', 'UK', now()), +(20962, 'F2: Forensic Factor', 'CA', now()), +(20963, 'On the Run', 'CA', now()), +(20964, 'Affinity', 'UK', now()), +(20965, 'Morecambe & Wise: The Show What Paul Merton Did', 'UK', now()), +(20966, 'Coleen''s Christmas At Alder Hey', 'UK', now()), +(20967, 'Elton''s New Year''s Eve Party: Live From The O2 Arena', 'UK', now()), +(20968, 'The Naked Archaeologist', 'CA', now()), +(20969, 'Forbidden Science', 'US', now()), +(20970, 'Gospel Challenge', 'CA', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(20971, 'The Smart Woman Survival Guide', 'CA', now()), +(20972, 'Penn & Teller''s Magic and Mystery Tour', 'CA', now()), +(20973, '100 Greatest Kid Stars', 'US', now()), +(20974, 'Sex: The Revolution', 'US', now()), +(20975, 'Murder in Black & White', 'US', now()), +(20976, 'Kurokami The Animation', 'JP', now()), +(20977, 'Kemono no Souja Erin', 'JP', now()), +(20978, 'Chrome Shelled Regios', 'JP', now()), +(20979, 'Calendar', 'UK', now()), +(20980, 'Parallel Paths', 'US', now()), +(20981, 'ITV News London', 'UK', now()), +(21184, 'Van Der Vorst Ziet Sterren', 'NL', now()), +(20983, 'Reality Obsessed', 'CA', now()), +(20984, 'Sugar', 'CA', now()), +(20985, 'Bump!', 'CA', now()), +(20986, 'Chris & John to the Rescue!', 'CA', now()), +(20987, 'Rideback', 'JP', now()), +(20988, 'Sora o Miageru Shoujo no Hitomi ni Utsuru Sekai', 'JP', now()), +(20991, 'Shades of Darkness', 'UK', now()), +(20992, 'Chris & John''s Road Trip!', 'CA', now()), +(20993, 'Unforgiven', 'UK', now()), +(20994, 'Flow', 'NL', now()), +(20995, 'Trinny and Susannah Meet Their Match', 'UK', now()), +(20996, 'Legally Mad', 'US', now()), +(20997, 'The Nick and Jessica Variety Hour', 'US', now()), +(20998, 'Daddy''s Girls (2009)', 'US', now()), +(20999, 'GARO', 'JP', now()), +(21000, 'Confessions of a Teen Idol', 'US', now()), +(21001, 'CMT Cribs', 'US', now()), +(21002, '100 Greatest Teen Stars', 'US', now()), +(21003, 'Canada''s War in Colour', 'CA', now()), +(21004, 'Primetime: What Would You Do?', 'US', now()), +(21005, 'Mixed Blessings (2007)', 'CA', now()), +(21006, 'Best Damn Poker Challenge', 'US', now()), +(21007, 'Best Damn Dream Girl', 'US', now()), +(21008, 'House Party (2008)', 'CA', now()), +(21009, 'The Gathering', 'US', now()), +(21010, 'Heart Beat', 'CA', now()), +(21011, 'A.M.P.E.D.', 'US', now()), +(21012, '1000 Ways to Die', 'US', now()), +(21013, 'Geek-Ray Vision', 'US', now()), +(21014, 'The Playbook', 'US', now()), +(21015, 'PG Porn', 'US', now()), +(21016, 'Ghostly Encounters', 'CA', now()), +(21017, 'The Undercover Princes', 'UK', now()), +(21025, 'Jeff Ltd.', 'CA', now()), +(21026, 'True Crime Scene', 'CA', now()), +(21058, 'School van Prem, De', 'NL', now()), +(21059, 'Schrijvers op de veranda', 'NL', now()), +(21060, 'Paul de Leeuw Top 12', 'NL', now()), +(21061, 'Heerlijk eerlijk Heertje', 'NL', now()), +(21062, 'Metropolis (NL)', 'NL', now()), +(21073, 'DietTribe', 'US', now()), +(21074, 'Dogs with Jobs', 'US', now()), +(21075, 'In the Womb', 'US', now()), +(21076, 'The Greatest Canadian', 'CA', now()), +(21077, 'CMT Central', 'CA', now()), +(21078, 'The Toronto Show', 'CA', now()), +(21079, 'Zondagavond laat', 'NL', now()), +(21080, 'Bouwval Gezocht', 'NL', now()), +(21094, 'Dear Genevieve', 'US', now()), +(21095, 'Bygones', 'UK', now()), +(21096, 'Vice Squad', 'US', now()), +(21102, 'Bestemming Bereikt', 'NL', now()), +(21103, 'Million Dollar Traders', 'UK', now()), +(21104, 'Big Chef Takes on Little Chef', 'UK', now()), +(21105, 'Viva Daisy!', 'US', now()), +(21106, 'Wingman', 'US', now()), +(21107, 'Little Miss Perfect', 'US', now()), +(21108, 'Getting Abroad', 'US', now()), +(21109, 'What Makes It Tick', 'US', now()), +(21110, 'Bride vs. Bride', 'US', now()), +(21111, 'Try My Life', 'US', now()), +(21112, 'Big Spender', 'US', now()), +(21113, 'Million Dollar Agents', 'US', now()), +(21114, 'Get Packing', 'US', now()), +(21115, 'Make Room for Baby', 'US', now()), +(21116, 'Ready for the Road', 'US', now()), +(21117, 'NASCAR Garage', 'US', now()), +(21118, 'America''s Castles', 'US', now()), +(21119, 'Club Dance', 'US', now()), +(21120, 'Divine Canine', 'US', now()), +(21121, 'Tangle', 'AU', now()), +(21122, 'Battle of the Stars', 'NL', now()), +(21123, 'Party Planner with David Tutera', 'US', now()), +(21124, 'Relative Madness', 'US', now()), +(21125, 'Animal Planet Report', 'US', now()), +(21126, 'My Games Fever', 'US', now()), +(21127, 'TV-Moment van het Jaar', 'NL', now()), +(21128, 'DAS je goed recht', 'NL', now()), +(21131, 'Strip Poker', 'US', now()), +(21132, 'Ultimate Road Trip', 'US', now()), +(21133, 'The #1 College Sports Show', 'US', now()), +(21134, 'Everyday Baking from Everyday Food', 'US', now()), +(21135, 'Made in Spain', 'US', now()), +(21136, 'Everyday Food', 'US', now()), +(21137, 'Lidia''s Italy', 'US', now()), +(21138, 'NOPI Tunervision', 'US', now()), +(21140, 'Detroit SWAT', 'US', now()), +(21141, 'Kansas City SWAT', 'US', now()), +(21142, 'Insider Training', 'US', now()), +(21143, 'Party Girl (2005)', 'US', now()), +(21144, 'The American Future: A History', 'UK', now()), +(21145, 'Kunststof TV', 'NL', now()), +(21146, 'Hider in the house', 'NL', now()), +(21147, '106 & Park Presents: Generation Gospel', 'US', now()), +(21148, 'stern TV', 'DE', now()), +(21149, 'Dean Martin Presents The Golddiggers', 'US', now()), +(21150, 'Discovery Kids Ultimate Guide to the Awesome', 'US', now()), +(21151, 'Splurge and Save', 'US', now()), +(21152, 'Mind Your Manners (2007)', 'US', now()), +(21153, 'Behind the Label', 'US', now()), +(21154, 'Behind the Labels', 'US', now()), +(21155, 'Forecast Earth', 'US', now()), +(21156, 'Dinner Takes All', 'US', now()), +(21157, 'Date Patrol', 'US', now()), +(21158, 'Amazing Sports Stories', 'US', now()), +(21159, 'סרוגים', 'IL', now()), +(21160, 'Character Studies', 'US', now()), +(21161, 'Dog Days', 'US', now()), +(21162, 'Love Chronicles', 'US', now()), +(21163, 'The X Show', 'US', now()), +(21164, 'Architecture School', 'US', now()), +(21165, 'Gourmet''s Diary of a Foodie', 'US', now()), +(21166, 'The EcoZone Project', 'US', now()), +(21167, 'Moment of Luxury', 'US', now()), +(21168, 'Hip Hop Hold ''Em', 'US', now()), +(21169, 'Pull Up Selecta', 'JM', now()), +(21170, 'Daily Remix', 'US', now()), +(21171, 'החברים של נאור', 'IL', now()), +(21172, 'Paranormal Cops', 'US', now()), +(21173, 'Innocent Love', 'JP', now()), +(21174, 'Tenchijin', 'JP', now()), +(21175, 'Downtown Island', 'JM', now()), +(21176, 'Who Cares About Girls?', 'US', now()), +(21177, 'The World Cup: A Captain''s Tale', 'UK', now()), +(21178, 'Surviving West Point', 'US', now()), +(21179, 'The Hamptons (2002)', 'US', now()), +(21180, 'Make ''Em Laugh: The Funny Business of America', 'US', now()), +(21183, 'Saw For Hire', 'US', now()), +(21185, 'One Way Out', 'US', now()), +(21186, 'How Music Works with Howard Goodall', 'UK', now()), +(21187, 'Stage Moms', 'US', now()), +(21188, 'The Legend of Dick and Dom', 'UK', now()), +(21189, 'Biography of the Millennium: 100 People - 1000 Years', 'US', now()), +(21190, 'G String Divas', 'US', now()), +(21191, 'Lost Tapes', 'US', now()), +(21192, 'Jury Duty', 'US', now()), +(21193, 'Soho Blues', 'UK', now()), +(21194, 'Alisa - Folge deinem Herzen', 'DE', now()), +(21195, 'Supreme Court of Comedy', 'US', now()), +(21196, 'Firsthand', 'US', now()), +(21197, 'Southland', 'US', now()), +(21198, 'The New Movie Show with Chris Gore', 'US', now()), +(21199, 'Ultimate Fan League', 'US', now()), +(21200, 'Dancing With the Stars (NZ)', 'NZ', now()), +(21201, 'Perfect 10 Model Boxing', 'US', now()), +(21202, 'Wicked Attraction', 'US', now()), +(21804, 'Courage', 'US', now()), +(21204, 'Fearless (2003)', 'US', now()), +(21205, 'Fearless (2004)', 'US', now()), +(21206, 'A Nightmare on Elm Street: Real Nightmares', 'US', now()), +(21207, 'Conquistadors', 'UK', now()), +(21209, 'Where Did It Come From?', 'US', now()), +(21210, 'Vacation Challenge', 'US', now()), +(21211, 'Who Needs Hollywood?', 'US', now()), +(21212, 'Test Drive', 'US', now()), +(21213, 'Test Drive (2002)', 'US', now()), +(21214, 'Stranded with Cash Peters', 'US', now()), +(21215, 'Boom!', 'US', now()), +(21216, 'Fast Food Films', 'US', now()), +(21217, 'Afterworld', 'US', now()), +(21218, 'The Podge and Rodge Show', 'IE', now()), +(21219, 'Wami on Miami', 'US', now()), +(21220, 'Reality Chat', 'US', now()), +(21221, 'Ready, Set, Change!', 'US', now()), +(21222, 'Livin'' Large', 'US', now()), +(21223, 'Area', 'US', now()), +(21224, 'Wassende water, Het', 'NL', now()), +(21225, 'Top gun Holland', 'NL', now()), +(21226, 'Kamphues boeit', 'NL', now()), +(21227, 'Operation Style', 'US', now()), +(21228, 'A Dating Story', 'US', now()), +(21229, 'Mooiste meisje van de klas, Het', 'NL', now()), +(21230, 'Dromendokter, De', 'NL', now()), +(21231, 'Reporter', 'NL', now()), +(21232, 'Orangutan Diary', 'UK', now()), +(22528, 'Mandrake', 'BR', now()), +(21234, 'Studio Julmahuvi', 'FI', now()), +(21235, 'Kummeli', 'FI', now()), +(21236, 'Perfect Partner', 'US', now()), +(21237, 'Perfect Partner (2009)', 'US', now()), +(21238, 'Best in Town', 'US', now()), +(21239, 'Rough Crossing', 'US', now()), +(21240, 'Thrills', 'US', now()), +(21241, 'Cooking School Stories', 'US', now()), +(21242, 'Life Moments', 'US', now()), +(21243, 'Honeymoon Adventures', 'US', now()), +(21244, 'Intersection', 'US', now()), +(21245, 'You Rock with...', 'US', now()), +(21246, 'Inside Out (US)', 'US', now()), +(21247, 'Next Door with Katie Brown', 'US', now()), +(21248, 'The VIP', 'US', now()), +(21249, '7 Deadly Hollywood Sins', 'US', now()), +(21250, 'Strictly Dr. Drew', 'US', now()), +(21251, 'Babies: Special Delivery', 'US', now()), +(21252, 'Living Live!', 'US', now()), +(21253, 'Around The World In 20 Years with Michael Palin', 'UK', now()), +(21254, 'En Fyra För Tre', 'SE', now()), +(21647, 'Doing Da Vinci', 'US', now()), +(21500, 'Wie is er Nieuwsgierig?', 'AN', now()), +(21501, 'Fox Family Countdown', 'US', now()), +(21502, 'TechLive', 'US', now()), +(21503, 'Live Like a Star', 'US', now()), +(21504, 'Style Court', 'US', now()), +(21505, 'Life in the Fast Lane with Steve Natt', 'US', now()), +(21506, 'On Board Air Force One', 'US', now()), +(21507, 'Iron Chef Japan', 'US', now()), +(21508, 'All-Girl Getaways', 'US', now()), +(21509, 'All That''s Fit', 'US', now()), +(21510, 'American Shopper', 'US', now()), +(21511, 'The Art of the Party', 'US', now()), +(21512, 'Any Given Latitude', 'US', now()), +(21513, 'Born American', 'US', now()), +(21514, 'A CARography', 'US', now()), +(21515, 'Cool Kids'' Parties', 'US', now()), +(21516, 'Dinner Date (2006)', 'US', now()), +(21517, 'Dwell', 'US', now()), +(21518, 'Follow That Food', 'US', now()), +(21519, 'Jim Knox''s Wild Zoofari', 'US', now()), +(21520, 'Sound Affects', 'US', now()), +(21521, 'Musikministeriet', 'SE', now()), +(21522, 'Design Invasion', 'US', now()), +(21523, 'Nice Package', 'US', now()), +(21524, 'Perfect Proposal', 'US', now()), +(21525, 'Birth Day', 'US', now()), +(21526, 'Science And Islam', 'UK', now()), +(21527, 'Whitechapel', 'UK', now()), +(21528, 'Doctors and Nurses at War', 'UK', now()), +(21529, 'Minder (2009)', 'UK', now()), +(21530, 'Tien voor taal', 'NL', now()), +(21531, 'Epicurious', 'US', now()), +(21532, 'America''s Deadliest Season', 'US', now()), +(21533, 'Family Forensics', 'US', now()), +(21534, 'Speaking of Women''s Health', 'US', now()), +(21535, 'E:60', 'US', now()), +(21536, 'Trading Spaces: Home Free', 'US', now()), +(21537, 'That Metal Show', 'US', now()), +(21538, '40 Greatest Pranks', 'US', now()), +(21539, '40 Greatest Pranks 2', 'US', now()), +(21540, '40 Dumbest Celebrity Quotes... Ever', 'US', now()), +(21541, 'History''s Business', 'US', now()), +(21542, 'Taking Care of Business', 'US', now()), +(21543, 'Love''s a Trip', 'US', now()), +(21544, 'Destination Stardom', 'US', now()), +(21545, 'Core Culture', 'US', now()), +(21546, 'Million Dollar Christmas', 'US', now()), +(21547, 'Your New House', 'US', now()), +(21548, 'Second Opinion with Dr. Oz', 'US', now()), +(21549, 'Avoiding Armageddon', 'US', now()), +(21550, 'My Classic Car', 'US', now()), +(21551, 'Surviving Motherhood', 'US', now()), +(21552, 'Trip of a Lifetime', 'US', now()), +(21553, 'Food Fantasy', 'US', now()), +(21554, 'Battlefield Diaries', 'US', now()), +(21555, 'Miss America', 'US', now()), +(21556, 'Making Over America with Trinny & Susannah', 'US', now()), +(21557, 'Nationale IQ test, De', 'NL', now()), +(21558, 'Una voce particolare', 'NL', now()), +(21928, 'Postcode Challenge', 'UK', now()), +(21560, 'After Midnight', 'US', now()), +(21561, 'Super Tools', 'US', now()), +(21562, 'Men in ToolBelts', 'US', now()), +(21563, 'Tool Box', 'US', now()), +(21564, 'Furniture to Go', 'US', now()), +(21565, 'Hard Time', 'US', now()), +(21566, 'Fuse Get Malled Tour', 'US', now()), +(21567, 'Apartment 413', 'US', now()), +(21568, 'Master Blasters', 'US', now()), +(21569, 'K9 Karma', 'US', now()), +(21570, 'Backyard Habitat', 'US', now()), +(21571, 'Pritzker Military Library Presents', 'US', now()), +(21572, 'The Penguins of Madagascar', 'US', now()), +(21573, 'Nationaal Songfestival', 'NL', now()), +(21580, 'iVillage Live', 'US', now()), +(21581, 'Looking for Stars', 'US', now()), +(21583, 'Get Out There!', 'US', now()), +(21584, 'Catalog This!', 'US', now()), +(21585, 'Toppers op weg naar Moskou', 'NL', now()), +(21586, 'The Old Guys', 'UK', now()), +(21587, '100 Greatest Hard Rock Songs', 'US', now()), +(21588, 'Fit Nation', 'US', now()), +(21589, 'The Whole Picture', 'US', now()), +(21590, 'US Poker Championship', 'US', now()), +(21591, 'Robot Rivals', 'US', now()), +(21592, 'The Feelgood Factor', 'UK', now()), +(21593, 'Score', 'US', now()), +(21594, 'Declassified', 'US', now()), +(21595, 'Slaphappy', 'US', now()), +(21596, 'Firehouse USA: Boston', 'US', now()), +(21597, 'Expeditions to the Edge', 'US', now()), +(21598, 'Boys And Girls Alone', 'UK', now()), +(21599, 'Major League Gaming', 'US', now()), +(21600, 'Sexcetera', 'US', now()), +(21601, '100 Greatest Artists of Hard Rock', 'US', now()), +(21602, 'The Gym', 'US', now()), +(21603, 'L.A. Models', 'US', now()), +(21604, 'Loveline', 'US', now()), +(21605, 'Hollywood Science', 'US', now()), +(21606, 'Cosmic Collisions', 'US', now()), +(21607, 'Word Ik Rijk?', 'NL', now()), +(21608, 'Nature''s Great Events', 'UK', now()), +(21609, 'Madison Heights', 'US', now()), +(21610, 'Heavy: The Story of Metal', 'US', now()), +(21611, 'The Kari Whitman Show', 'US', now()), +(21612, 'Medical Miracles', 'US', now()), +(21613, 'Cinema Secrets', 'US', now()), +(21614, 'Outdoor Outtakes', 'US', now()), +(21615, 'The Drug Years', 'US', now()), +(21616, 'Club MTV', 'US', now()), +(21617, 'The Grind', 'US', now()), +(21927, 'Rachel Allen: Bake!', 'UK', now()), +(21619, 'Everything You Need to Know', 'US', now()), +(21620, 'Kahaani Ghar Ghar Kii', 'IN', now()), +(21621, 'Kyunki Saas Bhi Kabhi Bahu Thi', 'IN', now()), +(21622, 'Moses Jones', 'UK', now()), +(21623, 'Microkillers', 'US', now()), +(21624, 'Deadliest Warrior', 'US', now()), +(21625, 'Caught in the Action', 'US', now()), +(21626, 'Declassified (2009)', 'US', now()), +(21627, 'Dive For Treasure', 'US', now()), +(21628, 'Surviving Terror', 'US', now()), +(21629, 'Travel Scams & Rip-Offs Revealed', 'US', now()), +(21630, 'Second Chance: America’s Most Talented Senior', 'US', now()), +(21631, 'Remixed!', 'US', now()), +(21632, 'Planet Carnivore', 'US', now()), +(21633, 'Wild', 'US', now()), +(21634, 'Doctors Without Borders', 'US', now()), +(21635, 'Entertainment Tonight Canada', 'CA', now()), +(21636, 'Van Vlees en Bloed', 'BE', now()), +(21637, 'Free Agents (UK)', 'UK', now()), +(21638, 'Weird Travels', 'US', now()), +(21639, 'Shirts & Skins', 'US', now()), +(21640, 'MTV Show Choir', 'US', now()), +(21641, 'VH1 Classic One Hit Wonders', 'US', now()), +(21642, 'Real Estate Road Test', 'US', now()), +(21643, 'Kunst van Margreet Dolman, De', 'NL', now()), +(21644, 'Deals on the Bus', 'US', now()), +(21645, 'Top of flop', 'NL', now()), +(21646, 'How''s Your News?', 'US', now()), +(21648, 'Hawthorne', 'US', now()), +(21649, 'Dark Blue', 'US', now()), +(21650, 'What Perez Sez', 'US', now()), +(21651, 'Ask-Elizabeth', 'US', now()), +(21652, 'RuPaul''s Drag Race', 'US', now()), +(21653, 'One Punk Under God', 'US', now()), +(21654, 'Generation Boom', 'US', now()), +(21655, 'Getting on the Property Ladder', 'UK', now()), +(21656, 'History of Prostitution', 'UK', now()), +(21657, 'Rock Around the Block', 'UK', now()), +(21658, 'Self Portraits: The Me Generation', 'UK', now()), +(21659, 'Adrenaline Rush Hour', 'US', now()), +(21660, 'The Crazy Rulers of the World', 'UK', now()), +(21661, 'Porno Valley', 'UK', now()), +(21662, 'The People''s Museum', 'UK', now()), +(21663, 'The Reality of Reality', 'US', now()), +(21664, 'Anatomy of an Aircrash', 'US', now()), +(21665, 'Heli-Loggers', 'US', now()), +(21666, '100 Greatest Dance Songs of Rock & Roll', 'US', now()), +(21667, 'Coming Out Stories', 'US', now()), +(21668, 'VIP Passport', 'US', now()), +(21669, 'I Didn''t Know I Was Pregnant', 'US', now()), +(21670, 'Love Shack', 'US', now()), +(21671, 'Holy @#%*!', 'US', now()), +(21672, 'Crime Scene University', 'US', now()), +(21673, 'Clinically Wild: Alaska', 'US', now()), +(21674, 'Where Are They Now?', 'US', now()), +(21676, 'Bokura ga Ita', 'JP', now()), +(21677, 'How Britain Was Built', 'UK', now()), +(21678, 'For the Love of Ray J', 'US', now()), +(21679, 'Me and Mr. Jones', 'US', now()), +(21680, 'The 2010 Winter Olympics', 'CA', now()), +(21681, 'Enable Your Home', 'US', now()), +(21682, 'Weekend Landscaping', 'US', now()), +(21683, 'Blueprint for Homebuilding', 'US', now()), +(21684, 'Weekend Gardening', 'US', now()), +(21685, 'Growing Roses', 'US', now()), +(21686, 'Parks and Recreation', 'US', now()), +(21687, 'Klokhuis, Het', 'NL', now()), +(21688, 'De TV jaren van...', 'NL', now()), +(21689, 'Lawn Care Workshop', 'US', now()), +(21690, 'Kesar', 'IN', now()), +(21691, 'Grilling & BBQ', 'US', now()), +(21692, 'Stankervision', 'US', now()), +(21693, 'Oops TV', 'UK', now()), +(20517, 'In The Footsteps of Alexander the Great', 'UK', now()), +(21694, 'Watch This!', 'US', now()), +(21695, 'Rob Dyrdek''s Fantasy Factory', 'US', now()), +(21696, 'The CollegeHumor Show', 'US', now()), +(21697, 'Mark & Olly: Living with the Tribes', 'US', now()), +(21698, 'Nitro Circus', 'US', now()), +(21699, 'The Girls of Hedsor Hall', 'US', now()), +(21700, 'T.I.''s Road to Redemption', 'US', now()), +(21702, '10 Things I Hate About You', 'US', now()), +(21703, 'Ruby and The Rockits', 'US', now()), +(21704, 'Glee', 'US', now()), +(21705, 'Kaahin Kissii Roz', 'IN', now()), +(21706, 'Ladies of Letters', 'UK', now()), +(21708, 'Bananasplit (2009)', 'NL', now()), +(21709, 'Bananasplit (1980)', 'NL', now()), +(21710, 'Movie & a Makeover', 'US', now()), +(21711, 'Leeza', 'US', now()), +(21712, 'K. Street Pali Hill', 'IN', now()), +(21713, 'Kkavyanjali', 'IN', now()), +(21714, 'Tumhari Disha', 'IN', now()), +(21715, 'Kabhi Haan Kabhi Naa', 'IN', now()), +(21716, 'Kaisa Ye Pyar Hai', 'IN', now()), +(21717, 'Harlem Heights', 'US', now()), +(21718, 'Played by Fame', 'US', now()), +(21719, 'Dik Voormekaar Show, De', 'NL', now()), +(21720, 'Rehab', 'UK', now()), +(21721, 'RAW comedy club', 'SE', now()), +(21722, 'Wipeout Australia', 'AU', now()), +(21723, 'The Victorians', 'UK', now()), +(21724, '9am with David and Kim', 'AU', now()), +(21725, 'Meet or Delete', 'US', now()), +(21726, 'Daily Download', 'US', now()), +(21727, 'Weekend Vibe', 'US', now()), +(21728, 'Million Dollar Wheel of Fortune', 'AU', now()), +(21729, 'Kahiin To Hoga', 'IN', now()), +(21730, 'Kasautii Zindagii Kay', 'IN', now()), +(21731, 'American Greed', 'US', now()), +(21732, 'Engine Room', 'US', now()), +(21733, 'Cause Effect', 'US', now()), +(21734, 'Half of Us', 'US', now()), +(21735, 'My Shot With', 'US', now()), +(21736, 'Day the Universe Changed', 'UK', now()), +(21738, 'Backstage Pass', 'US', now()), +(21739, 'MTVU Stand In', 'US', now()), +(21740, 'House Band', 'US', now()), +(21741, 'Sucks Less with Kevin Smith', 'US', now()), +(21742, 'Baccano!', 'JP', now()), +(21743, 'Morning Joe', 'US', now()), +(21744, 'ITV News at 6:30', 'UK', now()), +(21745, 'MSNBC Live', 'US', now()), +(21746, 'Innocent Venus', 'JP', now()), +(21747, 'The Strategy Room', 'US', now()), +(21748, 'The Big Story (2000)', 'US', now()), +(21749, 'The Lineup (2005)', 'US', now()), +(21750, 'Both Sides', 'US', now()), +(25360, 'L''ispettore Coliandro', 'IT', now()), +(21752, 'The Abrams Report', 'US', now()), +(21753, 'Wolf Blitzer Reports', 'US', now()), +(21754, 'Fox Business', 'US', now()), +(21755, 'KYW Eyewitness News', 'US', now()), +(21756, 'Buona Domenica', 'IT', now()), +(21757, 'Tigerenten Club', 'DE', now()), +(21758, 'Van Moskou tot Magadan', 'NL', now()), +(21759, 'Sterke verhalen uit Zoutvloed', 'NL', now()), +(21760, 'Per ongeluk', 'NL', now()), +(21761, 'Wereld op zijn kop, De', 'NL', now()), +(21886, 'Drop Dead Diva', 'US', now()), +(21763, 'Morphed', 'US', now()), +(21764, 'King (US)', 'US', now()), +(21765, 'QB VII', 'US', now()), +(21766, 'The Vampire Diaries', 'US', now()), +(21767, 'Body Politic', 'US', now()), +(21768, 'IFC News: 2008 Uncut', 'US', now()), +(21769, 'The Beltway Boys', 'US', now()), +(21770, 'DaySide', 'US', now()), +(21771, 'CNN Pipeline', 'US', now()), +(21772, 'America''s Pulse', 'US', now()), +(21773, 'The Live Desk', 'US', now()), +(21774, 'Cashin'' In', 'US', now()), +(21775, 'Fox Report with Shepard Smith', 'US', now()), +(21776, 'PowNed', 'NL', now()), +(21778, 'What''s On', 'US', now()), +(21779, 'Customs', 'AU', now()), +(21780, 'The Kennedys of Massachusetts', 'US', now()), +(21781, 'Ek Ladki Anjaani Si', 'IN', now()), +(21782, 'Kkusum... Ek Aam Ladki Ki Kahani', 'IN', now()), +(21783, 'Oorlogswinter', 'NL', now()), +(21785, 'Studio B', 'US', now()), +(21786, 'Happening Now', 'US', now()), +(21787, 'Special Report with Bret Baier', 'US', now()), +(21788, 'Charlie Chalk', 'UK', now()), +(21789, 'Coyote Ragtime Show', 'AJ', now()), +(21790, 'Johnny og Johanna', 'NO', now()), +(21791, 'The Fashion Show (2009)', 'US', now()), +(21793, 'Double Exposure (2010)', 'US', now()), +(21794, 'The Dubai Project', 'US', now()), +(21795, 'Fashionality', 'US', now()), +(21796, 'Polo', 'US', now()), +(21797, 'Take My Kids, Please!', 'US', now()), +(21798, 'Jinki Extend', 'AJ', now()), +(21799, 'Open House USA', 'US', now()), +(21800, 'Take It Off!', 'US', now()), +(21801, '801 TTS Airbats', 'AJ', now()), +(21802, 'Billy Connolly: Journey To The Edge Of The World', 'UK', now()), +(21803, 'Hello Goodbye (UK)', 'UK', now()), +(21805, 'Ground Rules!', 'US', now()), +(21806, 'Garden Police', 'US', now()), +(21807, 'Dude Room', 'US', now()), +(21808, 'Faking It (US)', 'US', now()), +(21809, 'Michael Palin and the Mystery of Hammershoi', 'UK', now()), +(21810, 'Your Reality Checked', 'US', now()), +(21811, 'Great Railway Journeys of the World', 'UK', now()), +(21812, 'Sciography', 'US', now()), +(21813, 'Dream Living', 'US', now()), +(21814, 'Stuntmasters', 'US', now()), +(21815, 'Let''s Dance for Comic Relief', 'UK', now()), +(21816, 'The Colour of Money', 'UK', now()), +(21817, 'Richard Hammond''s Engineering Connections', 'UK', now()), +(21818, 'Piers Morgan''s Life Stories', 'UK', now()), +(21819, 'I Was Bitten', 'US', now()), +(21820, 'Hagane no Renkinjutsushi (2009)', 'JP', now()), +(21821, 'Viraasat', 'IN', now()), +(21822, 'Kyaa Hoga Nimmo Ka', 'IN', now()), +(21823, 'Annu Ki Ho Gayee Waah Bhai Waah', 'IN', now()), +(21824, 'Chhoona Hai Aasmaan', 'IN', now()), +(21825, 'India Calling!', 'IN', now()), +(21826, 'Bhabhi', 'IN', now()), +(21827, 'Hatim', 'IN', now()), +(21828, 'Kabhi Aaye Na Judaai', 'IN', now()), +(21829, 'One Minute Wonders', 'UK', now()), +(21830, 'Half Moon Investigations', 'UK', now()), +(21831, 'Meri Awaz Ko Mil Gayi Roshni', 'IN', now()), +(21832, 'Millee', 'IN', now()), +(21833, 'Worth Every Penny', 'US', now()), +(21834, 'In the Motherhood', 'US', now()), +(21835, 'S.W.A.T. USA', 'US', now()), +(21836, 'Unwrapping Macy''s', 'US', now()), +(21837, 'Exhibit A: Secrets of Forensic Science', 'US', now()), +(21838, 'Jacob and Joshua: Nemesis Rising', 'US', now()), +(21839, 'Romancing America', 'US', now()), +(21840, 'Al Murray''s Multiple Personality Disorder', 'UK', now()), +(21841, 'The Fish Tank', 'US', now()), +(21842, 'House Rules (2009)', 'US', now()), +(21843, 'Happy Town', 'US', now()), +(21844, 'Trauma', 'US', now()), +(21847, 'HaShminiya', 'IL', now()), +(21848, 'Parashat Ha-Shavua', 'IL', now()), +(21849, 'Seitenblicke', 'AT', now()), +(21850, 'Xposé', 'IE', now()), +(21851, 'Ayakashi', 'JP', now()), +(21852, 'The Day the Universe Changed', 'UK', now()), +(21853, 'House Smarts', 'US', now()), +(21854, 'Business World News', 'US', now()), +(21855, 'Axe the Agent?', 'UK', now()), +(21856, 'Known Universe', 'US', now()), +(21857, 'A Cook on the Wild Side', 'UK', now()), +(21858, 'The Revolution (2007)', 'US', now()), +(21859, 'Lenßen & Partner', 'DE', now()), +(21860, 'Resident Life', 'US', now()), +(21882, 'La Familia Mata', 'ES', now()), +(21862, 'Legendary Nights', 'US', now()), +(25583, 'The Best of I Love the', 'US', now()), +(21864, 'Kurtlar Vadisi', 'TR', now()), +(21865, 'Peter Powers: Payback', 'NL', now()), +(21866, 'Doe-het-zelf-date', 'NL', now()), +(21868, 'Dogg After Dark', 'US', now()), +(21869, 'Javier Guzman presenteert: Comedy Explosion', 'NL', now()), +(21870, 'Take the Cake', 'US', now()), +(21871, 'Rosemary: Queen of the Kitchen', 'US', now()), +(21872, 'Zaara - Pyaar Ki Saugat', 'IN', now()), +(21873, 'Solhah Singaarr', 'IN', now()), +(21874, 'Jiya Jale', 'IN', now()), +(21875, 'Jhoome Jiya Re', 'IN', now()), +(21904, 'Lovebites', 'CA', now()), +(21877, 'Sportsround', 'UK', now()), +(21887, 'American Loggers', 'US', now()), +(21888, 'Hammertime', 'US', now()), +(21889, 'Iran and The West', 'UK', now()), +(21890, 'Titanic', 'US', now()), +(21891, 'Nurse Witch Komugi', 'AJ', now()), +(21892, 'Ronin Warriors (US)', 'AJ', now()), +(21893, '.hack//Roots (US)', 'AJ', now()), +(21894, 'The Bridge', 'CA', now()), +(21918, 'For Better or for Worse (2003)', 'US', now()), +(21919, 'WinTuition', 'US', now()), +(21920, 'VH1 Guerilla Concerts', 'US', now()), +(21921, 'Famous Homes & Hideaways', 'US', now()), +(21922, 'Priceless Antiques Roadshow', 'UK', now()), +(21923, 'Rampage!', 'US', now()), +(21924, 'Music in High Places', 'US', now()), +(21925, 'Uncorking the Bottle', 'US', now()), +(21926, 'The Endless Feast', 'US', now()), +(21929, 'Fight For Your Ride', 'NL', now()), +(21930, 'Tineke Schouten', 'NL', now()), +(21931, 'Black to the Future', 'US', now()), +(21932, 'Grow Your Own Drugs', 'UK', now()), +(21933, 'Dancing With the Stars (NL)', 'NL', now()), +(21934, 'NCIS: Los Angeles', 'US', now()), +(21935, '28 Days in Rehab', 'US', now()), +(21936, 'Help Wanted', 'US', now()), +(21937, 'Sinndoor Tere Naam Ka', 'IN', now()), +(21938, 'Karl III', 'NO', now()), +(21939, 'Jetstream', 'CA', now()), +(21940, 'Go Girls', 'NZ', now()), +(21941, 'Salvage', 'US', now()), +(21942, 'Hung', 'US', now()), +(21943, 'Building The Olympic Dream', 'UK', now()), +(21944, 'Natalie Cassidy''s Real Britain', 'UK', now()), +(21945, 'Team van Toen', 'NL', now()), +(21946, 'Dennis vs Valerio', 'NL', now()), +(21947, 'Lachend de lente in', 'NL', now()), +(21948, 'Countrywise', 'UK', now()), +(21949, 'I''ve Never Seen Star Wars', 'UK', now()), +(21950, 'Rocket Science', 'UK', now()), +(21954, 'Dallas DNA', 'US', now()), +(21955, 'River Monsters', 'US', now()), +(21956, 'Total Wrecklamation', 'US', now()), +(21957, 'Against the Elements', 'US', now()), +(21958, 'Animal Armageddon', 'US', now()), +(21959, 'Food Paradise', 'US', now()), +(21960, 'Saved by the Bell: The College Years', 'US', now()), +(21961, 'Tailgate Party', 'US', now()), +(21962, 'Ultimate 10', 'US', now()), +(21963, 'My Two Cents', 'US', now()), +(21964, 'Discovery Health Body Challenge', 'US', now()), +(21965, 'College Life', 'US', now()), +(21966, 'Down met Johnny', 'NL', now()), +(21967, 'OnTopic', 'NL', now()), +(21968, 'A Question of Genius', 'UK', now()), +(21969, 'FM (UK)', 'UK', now()), +(21970, 'Baroque!', 'UK', now()), +(21971, 'Runners Life', 'NL', now()), +(21972, 'Gered', 'NL', now()), +(21973, 'Crash Test PeWi''s', 'NL', now()), +(21974, 'Hero Animals', 'UK', now()), +(21975, 'Yellowstone', 'UK', now()), +(21976, 'Holloway', 'UK', now()), +(21977, 'Taste the Nation', 'UK', now()), +(21978, 'Genius', 'UK', now()), +(21979, 'The Justin Lee Collins Show', 'UK', now()), +(21980, 'Red Riding', 'UK', now()), +(21981, 'Teraz albo nigdy !', 'PL', now()), +(21982, 'Czego sie boja faceci, czyli seks w mniejszym miescie', 'PL', now()), +(21983, 'Wordplay (UK)', 'UK', now()), +(21984, 'Miss Teen USA', 'US', now()), +(21985, 'Professional Championship Wrestling', 'US', now()), +(21986, 'Gladiators (AU)', 'AU', now()), +(21987, 'Gladiators (AU) 2008', 'AU', now()), +(21988, 'UFC Wired', 'US', now()), +(21989, 'UltimateBet.net Poker Challenge', 'US', now()), +(21990, 'FullTiltPoker.net Aussie Millions', 'US', now()), +(21991, 'FullTiltPoker.net Championship', 'US', now()), +(21992, 'Poker Superstars', 'US', now()), +(21993, 'French Open Tonight', 'US', now()), +(21994, 'Exploration with Richard Wiese', 'US', now()), +(21995, 'WCG Ultimate Gamer', 'US', now()), +(21996, 'Tim Stack''s Family Vacation', 'US', now()), +(21997, 'Now See This', 'US', now()), +(21998, 'Survive This!', 'US', now()), +(21999, 'Mega Movers', 'US', now()), +(22000, 'Ever Wondered About Food', 'UK', now()), +(22001, 'Haborer', 'IL', now()), +(22002, 'Op het nachtkastje', 'NL', now()), +(22003, 'LUX: Verlicht de geest', 'NL', now()), +(22004, 'Ruffa and Ai', 'PH', now()), +(22005, 'Drummonds', 'UK', now()), +(22006, 'The FCS Tailgate Tour', 'US', now()), +(22007, 'Home James (US)', 'US', now()), +(22008, 'Red Bull Air Race World Series', 'US', now()), +(22009, 'Destination Tennis', 'US', now()), +(22010, 'Pechanga Celebrity Poker Challenge', 'US', now()), +(22011, 'Charity Jam', 'US', now()), +(22012, 'Tajuu jinkaku tantei saiko - Amamiya Kazuhiko no kikan', 'JP', now()), +(22013, 'Battles BC', 'US', now()), +(22014, 'Animal Cops: Phoenix', 'US', now()), +(22015, 'Sports Unfiltered with Dennis Miller', 'US', now()), +(22016, 'Ask Rita', 'US', now()), +(22017, 'Teen Bahuraaniyaan', 'IN', now()), +(22018, 'Missing (2009)', 'UK', now()), +(22019, 'Kitten vs. Newborn', 'US', now()), +(22021, 'Day One', 'US', now()), +(22022, 'Melrose Place (2009)', 'US', now()), +(22023, 'Lily', 'US', now()), +(22024, 'Haitink 80 jaar', 'NL', now()), +(22025, 'Center Court', 'US', now()), +(22026, 'Marvel Super Hero Squad', 'US', now()), +(22027, 'How The Earth Was Made', 'US', now()), +(22028, 'Ski-Boy', 'UK', now()), +(22030, 'Best of Five', 'US', now()), +(22031, 'Murphy''s Guide', 'US', now()), +(22032, 'Only at the Open', 'US', now()), +(15932, 'The Morning Show with Mike and Juliet', 'US', now()), +(22033, 'Chris Moyles Quiz Night', 'UK', now()), +(22034, 'The Phone (AU)', 'AU', now()), +(22035, 'Jacob''s Cross', 'ZA', now()), +(22037, 'Achter het scherm', 'NL', now()), +(22038, 'Edens Lost and Found', 'US', now()), +(22039, 'Van jonge leu en oale groond', 'NL', now()), +(22040, 'Warriors', 'US', now()), +(22041, 'Aussie Ladette to Lady', 'AU', now()), +(22042, 'Geboren Leiders', 'NL', now()), +(22043, 'Advocaat van de Duivel', 'NL', now()), +(22044, 'Der kleine Mann', 'DE', now()), +(22045, 'WipeOut - Heul nicht, lauf!', 'DE', now()), +(22046, 'Willkommen bei Mario Barth', 'DE', now()), +(22047, 'Real Swiss Family Robinson', 'UK', now()), +(22048, 'Top Dogs: Adventures in War, Sea and Ice', 'UK', now()), +(22049, 'Lo + plus', 'ES', now()), +(22050, 'DR2 Premiere', 'DK', now()), +(22051, 'Prominenti', 'SK', now()), +(22052, 'Make A Move', 'US', now()), +(22053, 'Bathtastic!', 'US', now()), +(22054, 'Stewart Lee''s Comedy Vehicle', 'UK', now()), +(22055, 'Marie & Gali', 'JP', now()), +(22056, 'Sengoku Basara', 'JP', now()), +(22057, 'Queen''s Blade: Rurou no Senshi', 'JP', now()), +(22058, 'Asura Cryin''', 'JP', now()), +(22059, 'Basquash!', 'JP', now()), +(22060, 'Recht in de regio', 'NL', now()), +(22061, 'Leescoupé, De', 'NL', now()), +(22062, 'LLiNK in Natura', 'NL', now()), +(22063, 'Budget tv', 'NL', now()), +(22064, 'Mattheüs masterclass, De', 'NL', now()), +(22065, 'Heb ik genoeg?', 'NL', now()), +(22066, 'Risicojongeren', 'NL', now()), +(22067, 'Meteor', 'US', now()), +(22068, 'Bridget''s Sexiest Beaches', 'US', now()), +(22069, 'Sex Court', 'UK', now()), +(22070, 'Pandora Hearts', 'JP', now()), +(22071, 'K-ON!', 'JP', now()), +(22072, 'Phantom: Requiem for the Phantom', 'JP', now()), +(22073, 'Gokujou!! Mecha Mote Iinchou', 'JP', now()), +(22074, 'Shin Mazinger Shougeki! Z-Hen', 'JP', now()), +(22075, 'Dhani Tackles The Globe', 'US', now()), +(22076, 'Samantha Brown: Passport to Great Weekends', 'US', now()), +(22077, 'Girl Meets Hawaii', 'US', now()), +(22078, 'Fans!', 'NL', now()), +(22083, 'TV Kantine, De', 'NL', now()), +(22084, '''t Is Hier Wéér Fantasties!', 'NL', now()), +(22085, 'Festival Updates', 'US', now()), +(22086, 'Spring Watch USA', 'US', now()), +(22087, 'Diplomatic Immunity', 'NZ', now()), +(22088, 'Stormworld', 'CA', now()), +(22089, 'Journey to Planet Earth', 'US', now()), +(22090, 'All The Small Things', 'UK', now()), +(22091, 'Wat je ziet ben je zelf', 'NL', now()), +(22092, 'Taking the Stage', 'US', now()), +(22093, 'The Grid (UK)', 'UK', now()), +(22094, 'My New Wild Life', 'US', now()), +(22095, 'Totally Hooked', 'US', now()), +(22096, 'Wild on the Set', 'US', now()), +(22097, 'Na Wspolnej', 'PL', now()), +(22098, 'Real Life Divas', 'US', now()), +(22099, 'My Model Looks Better Than Your Model', 'US', now()), +(22100, 'The Turn On (2006)', 'US', now()), +(22101, 'Matched in Manhattan', 'US', now()), +(22102, 'The Book Quiz', 'UK', now()), +(22103, 'Models NYC', 'US', now()), +(22104, 'The Safety Challenge', 'US', now()), +(22105, 'Slap Up Party: Arad Senki', 'JP', now()), +(22106, 'Easton Meets West', 'CA', now()), +(22107, 'The Dome', 'DE', now()), +(22108, 'Senjou no Valkyria: Valkyria Chronicles', 'JP', now()), +(22109, 'Sunday Night', 'AU', now()), +(22110, 'Shinkyoku Soukai Polyphonica Crimson S', 'JP', now()), +(22111, 'Cross Game', 'JP', now()), +(22112, 'Konnichi wa Anne', 'JP', now()), +(22113, 'Guin Saga', 'JP', now()), +(22114, 'Shangri-La', 'JP', now()), +(22115, 'Tayutama: Kiss on my Deity', 'JP', now()), +(22116, 'Bully Beatdown', 'US', now()), +(22117, 'Natsu no Arashi!', 'JP', now()), +(22118, 'Ballar Av Stål', 'SE', now()), +(22119, 'Wipeout (SE)', 'SE', now()), +(22120, 'Yorosen!', 'JP', now()), +(22121, 'Tears to Tiara', 'JP', now()), +(22122, 'Saki (JP)', 'JP', now()), +(22123, 'Beat The Dealer', 'UK', now()), +(22124, 'History vs. Hollywood', 'US', now()), +(22125, 'Ein Herz und eine Seele', 'DE', now()), +(22126, 'Table for 12', 'US', now()), +(22127, 'Beyond the Darklands', 'AU', now()), +(22128, 'Women in White', 'US', now()), +(22129, 'Nutcracker: Money, Madness & Murder', 'US', now()), +(22130, 'Celebrity', 'US', now()), +(22131, 'Nerdz', 'FR', now()), +(22132, 'Jethro And Friends', 'US', now()), +(22133, 'Our Generation', 'US', now()), +(22134, 'Himmelblå', 'NO', now()), +(22135, 'Railway Walks', 'UK', now()), +(22136, 'Shogun', 'US', now()), +(22137, 'Beulah Land', 'US', now()), +(22138, 'Dress Gray', 'US', now()), +(22139, 'Black Beauty (1978)', 'US', now()), +(22140, 'Guzmania: Javier Guzmans late uurtje', 'NL', now()), +(22141, 'The Last Convertible', 'US', now()), +(22142, 'Freedom Road', 'US', now()), +(22143, 'Flander''s company', 'FR', now()), +(22144, 'Noob', 'FR', now()), +(22146, 'Miami Social', 'US', now()), +(22147, 'Hollywood Wives', 'US', now()), +(22148, 'Washington: Behind Closed Doors', 'US', now()), +(22149, 'Pearl (1978)', 'US', now()), +(22150, 'Showtime', 'UK', now()), +(22151, 'Hot Docs', 'US', now()), +(22152, 'The French Atlantic Affair', 'US', now()), +(22153, 'Model in 1 dag', 'NL', now()), +(22154, 'Passion for Fashion', 'NL', now()), +(22155, 'Ren je rot', 'NL', now()), +(22156, 'Iris', 'NL', now()), +(22157, 'The Speaker', 'UK', now()), +(22158, 'Op zoek naar Mary Poppins', 'NL', now()), +(22159, '07-Ghost', 'JP', now()), +(22160, 'Souten Kouro', 'JP', now()), +(22161, 'Ristorante Paradiso', 'JP', now()), +(22162, 'Higashi no Eden', 'JP', now()), +(22163, 'Mijn Tweede Thuis', 'NL', now()), +(22164, 'Burgers’ Zoo: Drukte In De Dierentuin', 'NL', now()), +(22165, 'Huis Te Koop', 'NL', now()), +(22166, 'Nederland Kampeert!', 'NL', now()), +(22167, 'Reportage (NL)', 'NL', now()), +(22168, 'The Pirate', 'US', now()), +(22169, 'Rage of Angels', 'US', now()), +(22170, 'Evergreen', 'US', now()), +(22171, 'The Dark Secret of Harvest Home', 'US', now()), +(22172, 'Scruples (1980)', 'US', now()), +(22173, 'East of Eden', 'US', now()), +(22174, 'Secret Worlds', 'US', now()), +(22175, 'Napoleon and Josephine: A Love Story', 'US', now()), +(22178, 'Baseball''s Golden Age', 'US', now()), +(22179, 'Sport Science', 'US', now()), +(22180, 'Real Sports with Bryant Gumbel', 'US', now()), +(22181, 'ESPN Sidelines', 'US', now()), +(22182, 'On the Record with Bob Costas', 'US', now()), +(22183, 'Patrick in Uruzgan', 'NL', now()), +(22184, 'Simek voor de verandering', 'NL', now()), +(22185, 'Niet gelukkig, geld terug', 'NL', now()), +(22186, 'Grootste royaltykenner van Nederland, De', 'NL', now()), +(22187, 'Match Mistress', 'US', now()), +(22188, 'Canned', 'US', now()), +(22189, 'Red Bull Air Races', 'US', now()), +(22190, 'Ultimate Fuse Gig: The VJ Search', 'US', now()), +(22191, 'In Focus', 'US', now()), +(22192, 'GameTrailers TV with Geoff Keighley', 'US', now()), +(22193, 'Style Her Famous', 'US', now()), +(22194, 'The Post Show', 'US', now()), +(22195, 'Setup', 'US', now()), +(22196, 'City Vibe', 'US', now()), +(22197, 'Extreme Hollywood', 'US', now()), +(22198, 'GSN Video Games', 'US', now()), +(22199, 'Lassie''s Pet Vet', 'US', now()), +(22200, 'Epic Ride', 'US', now()), +(22201, 'Queer Edge with Jack E. Jett & Sandra Bernhard', 'US', now()), +(22202, 'From the Top: Live from Carnegie Hall', 'US', now()), +(22203, 'Lockup (2005)', 'US', now()), +(22204, 'Royal Inquest', 'US', now()), +(22205, 'Zoom (1972)', 'US', now()), +(22206, 'Pretty Wicked', 'US', now()), +(22207, 'Hatsukoi Limited', 'JP', now()), +(22208, 'Formula 1', 'UK', now()), +(22209, 'Great Performances at the Met', 'US', now()), +(22210, 'The Very Funny Show', 'US', now()), +(22211, 'The Fabulous Life Presents: Really Rich Real Estate', 'US', now()), +(22212, 'Derek and Simon: The Show', 'US', now()), +(22213, 'Homewood P.I.', 'US', now()), +(22214, 'The Ultimate Blackjack Tour', 'US', now()), +(22215, 'Bid Whist Party Throwdown', 'US', now()), +(22216, 'John Barrowman: The Making of Me', 'UK', now()), +(22217, 'Beyond with James Van Praagh', 'US', now()), +(22421, 'A Death in California', 'US', now()), +(22219, 'The People vs. Jean Harris', 'US', now()), +(22220, 'Little Gloria...Happy at Last', 'US', now()), +(22221, 'Space (1985)', 'US', now()), +(22222, 'Modern Girl''s Guide to Life', 'US', now()), +(22223, 'LA Riding Club', 'US', now()), +(22224, 'Aspen', 'US', now()), +(22225, 'The Critical List', 'US', now()), +(22226, 'Guyana Tragedy: The Story of Jim Jones', 'US', now()), +(22227, 'The Moneychangers', 'US', now()), +(22228, 'Wheels', 'US', now()), +(22229, 'The Conquerors', 'US', now()), +(22230, 'The Last Days of Pompeii', 'US', now()), +(22231, 'Backstory', 'US', now()), +(22232, 'Blonde Charity Mafia', 'US', now()), +(22233, 'Born to Diva', 'US', now()), +(22234, 'Toppers: De weg naar de ArenA 2007', 'NL', now()), +(22235, 'Living Dangerously', 'US', now()), +(22264, 'Bust a Ritmo', 'US', now()), +(22237, 'The Sports List', 'US', now()), +(22238, 'My First Time', 'US', now()), +(22239, 'Rock the Boat', 'US', now()), +(22521, 'A Woman Called Moses', 'US', now()), +(22241, 'Flab to Fab', 'US', now()), +(22242, 'Don''t Forget Your Toothbrush', 'US', now()), +(22243, 'I Married a Baller', 'US', now()), +(22244, 'Bodog Music Battle of the Bands', 'US', now()), +(22245, 'Trick It Out', 'US', now()), +(22246, 'Revolve: Rockin'' the Road', 'US', now()), +(22422, 'Salem''s Lot', 'US', now()), +(22248, 'Mijn Restaurant', 'BE', now()), +(22249, 'Loose Change', 'US', now()), +(22250, 'Sins', 'US', now()), +(22251, 'Holocaust', 'US', now()), +(22252, 'Op zoek naar Maria', 'BE', now()), +(22253, 'Jes', 'BE', now()), +(22254, 'Louislouise', 'BE', now()), +(22255, 'Horse People With Alexandra Tolstoy', 'UK', now()), +(22256, 'Roy Walker''s TV Bloomers', 'UK', now()), +(22257, 'The Hospital', 'UK', now()), +(22258, 'George Washington', 'US', now()), +(22259, 'The Blue and the Gray', 'US', now()), +(22260, 'Fatal Vision', 'US', now()), +(22261, 'Hjelp Jeg Er Med i Et Japansk Gameshow', 'NO', now()), +(22262, 'Hottest Mom in America', 'US', now()), +(22266, 'Newton''s Apple', 'US', now()), +(22267, 'Sex: How To Do Everything', 'UK', now()), +(22268, '400 jaar New York', 'NL', now()), +(22269, 'Victoria Silvsted: My Perfect Life', 'US', now()), +(22270, 'Kayamath', 'IN', now()), +(22271, 'The Big Talent Bee', 'US', now()), +(22272, 'Say What', 'US', now()), +(22273, 'To the Contrary', 'US', now()), +(22274, 'Rab C. Nesbitt', 'UK', now()), +(22275, 'Vloek van Woestewolf, De', 'NL', now()), +(22277, 'Country Tracks', 'UK', now()), +(22278, 'Lifegivers', 'UK', now()), +(22279, 'New York Confessions', 'US', now()), +(22280, 'This Is Why You''re Single', 'US', now()), +(22281, 'Shoot to Kill', 'US', now()), +(22282, '100 Greatest One-Hit Wonders of the ''80s', 'US', now()), +(22283, '50 Most Shocking Celebrity Scandals', 'US', now()), +(22284, '40 Naughtiest Celebrity Scandals', 'US', now()), +(22285, 'Country Fried Planet', 'US', now()), +(22286, 'Models of the Runway', 'US', now()), +(22287, 'Pitchmen', 'US', now()), +(22288, 'The Pat Boone Show', 'US', now()), +(22289, 'WieKent Nederland', 'NL', now()), +(22290, 'The Beatles Anthology', 'US', now()), +(22291, 'CMT Music Awards', 'US', now()), +(22292, 'Focus (NL)', 'NL', now()), +(22293, 'Funny Farm', 'CA', now()), +(22294, 'Onverwacht bezoek', 'NL', now()), +(22295, 'Who Was Jesus?', 'US', now()), +(22297, 'Soul Deep: The Story of Black Popular Music', 'UK', now()), +(22298, 'Cavalcade of Bands', 'US', now()), +(22299, 'Songs for Sale', 'US', now()), +(22300, 'Frost on Sunday', 'UK', now()), +(22301, 'Studs Lonigan', 'US', now()), +(22302, 'The Dain Curse', 'US', now()), +(22304, 'The Sun Also Rises', 'US', now()), +(22305, 'Sophisticated Gents', 'US', now()), +(22306, 'Wallenberg: A Hero''s Story', 'US', now()), +(22307, 'The Bourne Identity', 'US', now()), +(22308, 'Helter Skelter', 'US', now()), +(22309, 'Malibu', 'US', now()), +(22310, 'Fresno', 'US', now()), +(22311, 'Kasturi', 'IN', now()), +(22312, 'Khwaish', 'IN', now()), +(22313, 'Kasamh Se', 'IN', now()), +(22314, 'Kya Dill Mein Hai', 'IN', now()), +(22315, 'Attack on Terror: The FBI vs. the Ku Klux Klan', 'US', now()), +(22316, 'Chiefs', 'US', now()), +(22317, 'The Two Mrs. Grenvilles', 'US', now()), +(22318, 'Glamourjentene', 'NO', now()), +(22319, 'Daisy of Love', 'US', now()), +(22320, 'The Best of... What''s Left of... Not Only... But Also', 'UK', now()), +(22321, 'Inspired Ambition', 'US', now()), +(22322, 'The Girlie Show', 'UK', now()), +(22323, 'Akademi türkiye', 'TR', now()), +(22324, 'Tonight''s the Night With John Barrowman', 'UK', now()), +(22325, 'Night', 'US', now()), +(22326, 'En god nummer to', 'NO', now()), +(22327, 'Unge mødre', 'NO', now()), +(22328, 'The Beautiful Life', 'US', now()), +(22329, 'Bizarre ER', 'UK', now()), +(22330, 'Katie & Peter: Stateside', 'UK', now()), +(22331, 'Trawlers, Rigs & Rescue: North Sea', 'UK', now()), +(22332, 'Lawrence Leung''s Choose Your Own Adventure', 'AU', now()), +(22333, 'Reggie Perrin', 'UK', now()), +(22334, 'Bara no nai Hanaya', 'JP', now()), +(22335, 'Bridget Show, The', 'US', now()), +(22336, 'Royal Pains', 'US', now()), +(22337, 'Operating Instructions', 'US', now()), +(22338, 'Bored to Death', 'US', now()), +(22339, 'Georgia and the Seven Associates', 'US', now()), +(22340, 'Lekker Slim', 'NL', now()), +(22341, 'Patton 360', 'US', now()), +(22342, 'Derren Brown: Messiah', 'UK', now()), +(22343, 'Derren Brown: The Heist', 'UK', now()), +(22344, 'Derren Brown: The System', 'UK', now()), +(22345, 'The Liberace Show', 'UK', now()), +(22346, 'Million Dollar Catch', 'NZ', now()), +(22347, 'Emergency Heroes', 'NZ', now()), +(22348, 'The Slammer', 'UK', now()), +(22349, 'The Liberace Show (US)', 'US', now()), +(22350, 'A Go Go ''66', 'CA', now()), +(23806, 'Ibiza 24/7', 'NL', now()), +(22353, 'The Wendy Williams Show', 'US', now()), +(22354, 'RTL Exclusief', 'NL', now()), +(22355, 'Country Music Spotlight', 'US', now()), +(22356, 'Missing Pieces', 'AU', now()), +(22357, 'Bruce''s Price Is Right', 'UK', now()), +(22361, 'The Legend', 'KR', now()), +(22363, 'On Air', 'NL', now()), +(22364, 'The Biggest Loser (2009)', 'UK', now()), +(22365, 'Around The World For Free', 'US', now()), +(22366, 'Who dares wins (NZ)', 'NZ', now()), +(22367, 'Boy Meets Girl (2009)', 'UK', now()), +(22368, 'The DL Chronicles', 'US', now()), +(22369, 'Rock & Roll', 'US', now()), +(22370, 'Walk on By: The Story of Popular Song', 'US', now()), +(22371, 'Stranger Among Bears', 'US', now()), +(22372, 'Let''s Pretend', 'UK', now()), +(22373, 'Martin Clunes: Islands Of Britain', 'UK', now()), +(22374, 'Humor tv op 3', 'NL', now()), +(22375, 'De longafdeling', 'NL', now()), +(22376, '3FM Awards', 'NL', now()), +(22377, 'Louisiana Hayride', 'US', now()), +(22378, 'Grand Ole Opry (1955)', 'US', now()), +(22379, 'Junior Jubilee', 'US', now()), +(22380, 'Stage Show', 'US', now()), +(22381, 'Five Star Jubilee', 'US', now()), +(22382, 'The Eddy Arnold Show', 'US', now()), +(22388, 'The Eddie Fisher Show', 'US', now()), +(22389, 'Kreisler Bandstand', 'US', now()), +(22385, 'MITRE 10 Dream Home', 'NZ', now()), +(22386, 'World''s Strictest Parents', 'US', now()), +(22387, 'Great Cruises', 'US', now()), +(22390, 'The Big Beat', 'US', now()), +(22391, 'Hollywood A Go-Go', 'US', now()), +(22392, 'The Glen Campbell Music Show', 'US', now()), +(22393, 'Glen Miller Time', 'US', now()), +(22394, 'The New Detectives: Case Studies in Forensic Science', 'US', now()), +(22395, 'Cake Boss', 'US', now()), +(22397, 'Get The Hook Up', 'US', now()), +(22398, 'The Sammy Kaye Show', 'US', now()), +(22399, 'Musical Almanac', 'US', now()), +(22400, 'The Dean Martin Summer Show', 'US', now()), +(22401, 'Sing Along', 'US', now()), +(22402, 'Country Style (1950)', 'US', now()), +(22403, 'Boer Zkt. Vrouw', 'BE', now()), +(22404, 'The Kate Smith Show', 'US', now()), +(22405, 'The Kate Smith Evening Hour', 'US', now()), +(22406, 'The Julius Larosa Show (1955)', 'US', now()), +(22407, 'The Julius LaRosa Show (1956)', 'US', now()), +(22408, 'The John Davidson Show (1969)', 'US', now()), +(22409, 'Perry Presents', 'US', now()), +(22410, 'The Bobbie Gentry Show', 'US', now()), +(22411, 'The Bobby Goldsboro Show', 'US', now()), +(22412, 'Saturday Night Revue', 'US', now()), +(22413, 'Belly of the Beast', 'US', now()), +(22414, 'André Rieu in Australië', 'NL', now()), +(22415, 'More to Love', 'US', now()), +(22416, 'The Earl Wrightson Show', 'US', now()), +(22417, 'That Gold Old Nashville Music', 'US', now()), +(22418, 'The Pat Boone-Chevy Showroom', 'US', now()), +(22419, 'Easy Does It... Starring Frankie Avalon', 'US', now()), +(22420, 'The Patti Page Oldsmobile Show', 'US', now()), +(22423, 'Noble House', 'US', now()), +(22424, 'Master of the Game', 'US', now()), +(22425, 'The Amazing Howard Hughes', 'US', now()), +(22426, 'Blind Ambition', 'US', now()), +(22427, 'Word World', 'US', now()), +(22428, 'Tony Robinson''s: Fact Or Fiction', 'UK', now()), +(22429, 'The Dinah Shore Show', 'US', now()), +(22430, 'Dinah and Her New Best Friends', 'US', now()), +(22431, 'Chesterfield Sound Off Time', 'US', now()), +(22432, 'Chevrolet On Broadway', 'US', now()), +(22433, 'The Chey Show (1955)', 'US', now()), +(22434, 'The Chevy Show (1958)', 'US', now()), +(22435, 'Queen', 'US', now()), +(22436, 'Masada', 'US', now()), +(22437, 'The Andy Williams and June Valli Show', 'US', now()), +(22438, 'AAHAT – Dahshat Ki Teesri Dastak', 'IN', now()), +(22439, 'Arthur C. Clarke''s Mysterious World', 'UK', now()), +(22440, 'Adventures In Jazz', 'US', now()), +(22441, 'Air Time ''57', 'US', now()), +(22442, 'The Alan Dale Show', 'US', now()), +(22443, 'America Song', 'US', now()), +(22444, 'American Music Shop', 'US', now()), +(22445, 'America''s Greatest Bands', 'US', now()), +(22446, 'Andy And Della Russell', 'US', now()), +(22447, 'At Liberty Club', 'US', now()), +(22448, 'Backstage with Barry Wood', 'US', now()), +(22449, 'The Barbara McNair Show', 'US', now()), +(22450, 'The Betty White Show (1958)', 'US', now()), +(22451, 'The Betty White Show (1954)', 'US', now()), +(22452, 'The Big Party', 'US', now()), +(22453, 'The Big Record', 'US', now()), +(22454, 'Empire Falls', 'US', now()), +(22455, 'The Bigelow Show', 'US', now()), +(22456, 'Das Traumschiff', 'DE', now()), +(22457, 'The Billy Daniels Show', 'US', now()), +(22458, 'girl friends - Freundschaft mit Herz', 'DE', now()), +(22459, 'The Blue Angel', 'US', now()), +(22460, 'Blues By Bargy', 'US', now()), +(22461, 'Lauren verslaat...', 'NL', now()), +(22462, 'BlootGewoon', 'NL', now()), +(22463, 'NON, De', 'NL', now()), +(22464, 'Rookie Blue', 'CA', now()), +(22465, 'Bob and Ray', 'US', now()), +(22466, 'The Bob Crosby Show (1953)', 'US', now()), +(22467, 'The Bob Crosby Show (1958)', 'US', now()), +(22468, 'The Book Of Lists', 'US', now()), +(22469, 'Broadway Jamboree', 'US', now()), +(22470, 'Broadway Open House', 'US', now()), +(22471, 'Broadway Spotlight', 'US', now()), +(22472, 'Buzzy Wuzzy', 'US', now()), +(22473, 'By Popular Demand', 'US', now()), +(22474, 'CBS Newcomers', 'US', now()), +(22475, 'Man met de hoed, De', 'NL', now()), +(22476, 'Transport', 'NL', now()), +(22477, 'Barend en Van Dorp', 'NL', now()), +(32290, '17 Meter', 'DE', now()), +(22479, 'Campus Corner', 'US', now()), +(22480, 'Capitol Capers', 'US', now()), +(22481, 'The Carolyn Gilbert Show', 'US', now()), +(22482, 'Celebrity Talent Scouts', 'US', now()), +(22483, 'Champagne And Orchids', 'US', now()), +(22484, 'JONAS', 'US', now()), +(22485, 'Laat ze maar Lachen', 'NL', now()), +(22486, 'Chance Of A Lifetime (1952)', 'US', now()), +(22487, 'Charlie Daniels'' Talent Round Up', 'US', now()), +(22488, 'Chicago Jazz', 'US', now()), +(22489, 'Chicago Symphony', 'US', now()), +(22490, 'Chicago Symphony Chamber Orchestra', 'US', now()), +(22491, 'Church Street Station', 'US', now()), +(22492, 'Circus (1971)', 'US', now()), +(22493, 'Circus (1978)', 'CA', now()), +(22494, 'Circus (1989)', 'IN', now()), +(22495, 'Circus (2001)', 'CA', now()), +(22496, 'Circus Time', 'US', now()), +(22497, 'Cities Service Band Of America', 'US', now()), +(22498, 'The Cliff Edwards Show', 'US', now()), +(22499, 'Club Oasis', 'US', now()), +(22500, 'Face the Music (US)', 'US', now()), +(22501, 'Face the Music (UK)', 'UK', now()), +(22502, 'Club Seven', 'US', now()), +(22503, 'Coke Time With Eddie Fisher', 'US', now()), +(22504, 'The College Bowl', 'US', now()), +(22505, 'Comedy Break', 'US', now()), +(22506, 'Comedy Tonight (1985)', 'US', now()), +(22507, 'A Couple Of Joes', 'US', now()), +(22508, 'Cover Wars', 'US', now()), +(22509, 'Crystal Room', 'US', now()), +(22510, 'I Want to Save Your Life', 'US', now()), +(22511, 'Around the World in 80 Trades', 'UK', now()), +(22512, 'Het Metropole Orkest ontmoet', 'NL', now()), +(22513, 'Oliver Pocher live! Gefährliches Halbwissen', 'DE', now()), +(22514, 'Future Earth', 'US', now()), +(22515, 'Amika', 'BE', now()), +(22516, 'Last of the Ninth', 'US', now()), +(22517, 'Drag Race High', 'US', now()), +(22518, 'Selling Houses Australia', 'AU', now()), +(22519, 'Russell Simmons Presents: Brave New Voices', 'US', now()), +(22520, 'League of Super Evil', 'US', now()), +(22523, 'The Sacketts', 'US', now()), +(22524, 'A Rumor of War', 'US', now()), +(22525, 'Peter and Paul', 'US', now()), +(22526, 'Angstvanger', 'NL', now()), +(22527, 'Over Vaders en Zonen', 'NL', now()), +(22529, 'Only You (PH)', 'PH', now()), +(22530, 'Zorra Total', 'BR', now()), +(22531, 'Celebridade', 'BR', now()), +(22532, 'El show de Cristina', 'US', now()), +(22533, 'Buttercup', 'PH', now()), +(22534, 'Primer impacto', 'US', now()), +(22535, 'Paraíso Tropical', 'BR', now()), +(22536, 'Perla', 'MX', now()), +(22537, 'Carissima', 'VE', now()), +(22538, 'El rostro de Analía', 'CO', now()), +(22539, 'Madre Luna', 'US', now()), +(22540, 'Disco de oro', 'MX', now()), +(22541, 'Arslaan', 'IN', now()), +(22542, 'Novia para dos', 'CO', now()), +(22543, 'Tiempo final', 'CO', now()), +(22545, 'Property Watch', 'UK', now()), +(22546, 'Keep It In The Family (2009)', 'UK', now()), +(22547, 'Britain''s Best Drives', 'UK', now()), +(22548, 'A Place in The Wild', 'UK', now()), +(22549, 'The Golden Moment: An Olympic Love Story', 'US', now()), +(22550, 'The Trial of Lee Harvey Oswald', 'US', now()), +(22551, 'Monte Carlo', 'US', now()), +(22552, '79 Park Avenue', 'US', now()), +(22553, 'A.D.', 'US', now()), +(22554, 'The Hudson Brothers Show', 'US', now()), +(22555, 'The Bugs Bunny/Road Runner Show', 'US', now()), +(22556, 'New Faces (UK)', 'UK', now()), +(22557, 'New Faces (AU)', 'AU', now()), +(22558, 'A Current Affair (US)', 'US', now()), +(22559, 'Minuscule', 'FR', now()), +(22560, 'Ballroom High', 'UK', now()), +(22561, 'Tattoos & Piercings', 'NL', now()), +(22562, 'Escaped', 'US', now()), +(22563, 'Chiquititas Brasil', 'BR', now()), +(22564, 'Duas Caras', 'BR', now()), +(22565, 'Eleanor and Franklin', 'US', now()), +(22566, 'If Tomorrow Comes', 'US', now()), +(22567, 'On Wings of Eagles', 'US', now()), +(22568, 'Lace', 'US', now()), +(22569, 'Deadly Intentions', 'US', now()), +(22570, 'Kennedy', 'US', now()), +(22571, 'Dance, Dance, Dance', 'BR', now()), +(22572, 'Eén tegen 100', 'NL', now()), +(22573, 'Nooit meer laf', 'NL', now()), +(22574, 'Hoe doe jij dat.nu', 'NL', now()), +(22575, 'Doña Bárbara', 'CO', now()), +(22576, 'Vrouw & Paard', 'NL', now()), +(22577, 'Caminho das Índias', 'BR', now()), +(22578, 'Negócio da China', 'BR', now()), +(22579, 'Xuxa no Mundo da Imaginação', 'BR', now()), +(22587, 'Mercy', 'US', now()), +(22589, 'Community', 'US', now()), +(22590, 'The Birth Of British Music', 'UK', now()), +(22591, 'South Pacific', 'UK', now()), +(22592, 'The Incredible Human Journey', 'UK', now()), +(22593, 'Helicopter Warfare', 'UK', now()), +(22596, 'Dance India Dance', 'IN', now()), +(22597, 'Yang men hu jiang', 'CN', now()), +(22598, 'Shao bing zhe', 'SG', now()), +(22599, 'Yuen chun hap', 'HK', now()), +(22600, 'Big Brother (BG)', 'BG', now()), +(22601, 'Bracne vode', 'HR', now()), +(22602, 'Familieberichten', 'NL', now()), +(22603, 'Till Death...', 'UK', now()), +(22604, 'Ramptoerist', 'NL', now()), +(22605, 'Screen Test', 'UK', now()), +(22606, 'Treme', 'US', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(22607, 'Derek Ogilvie: Family Circle', 'NL', now()), +(22608, 'We Love The 90''s Met Nikkie', 'NL', now()), +(22610, 'Shark Tank', 'US', now()), +(22611, 'No. 1 Countdown', 'US', now()), +(22612, 'Pure Pwnage', 'CA', now()), +(22613, 'Moving On', 'UK', now()), +(22614, 'Blood, Sweat and Takeaways', 'UK', now()), +(22615, 'Divided', 'UK', now()), +(22616, 'Playing The Part', 'UK', now()), +(22617, 'Don''t Try This at Home', 'UK', now()), +(22618, 'A Man Called Intrepid', 'US', now()), +(22619, 'Decisiones', 'MX', now()), +(22620, 'Cowboys & Injuns', 'US', now()), +(22621, 'Titan Maximum', 'US', now()), +(22622, 'Modern Family', 'US', now()), +(22623, 'Een Dubbeltje Op Zijn Kant', 'NL', now()), +(22624, 'Crash Corrigan''s Ranch', 'US', now()), +(27087, 'It''s Paul Burling', 'UK', now()), +(22626, 'Cougar Town', 'US', now()), +(22628, 'Best Thing Ever', 'US', now()), +(22629, 'Bless This Mess', 'US', now()), +(22630, 'At Home with... Fann Wong', 'SG', now()), +(22631, 'Hok Gaing Hung Sum', 'HK', now()), +(22632, 'Holland V', 'SG', now()), +(22633, 'American Xplorer: Expedition Central America', 'US', now()), +(22634, 'Expedition Africa', 'US', now()), +(22635, 'Rebeca', 'US', now()), +(22636, 'Contrato de amor', 'MX', now()), +(22637, 'Nuestra casa', 'MX', now()), +(22638, 'Tierra de Pasiones', 'US', now()), +(22639, 'La Viuda de Blanco (1996)', 'CL', now()), +(22640, 'La viuda de Blanco (2006)', 'US', now()), +(22641, 'Nachtegaal en zonen', 'NL', now()), +(22642, 'Slag om Brussel, De', 'NL', now()), +(22643, 'Joris pakketservice', 'NL', now()), +(22644, 'Mijn Maria', 'NL', now()), +(22645, 'Paul Rosenmöller en de grenzen van Europa', 'NL', now()), +(22646, 'The Alzheimer''s Project', 'US', now()), +(22647, 'The Real Housewives of New Jersey', 'US', now()), +(22648, 'Face The Ace', 'US', now()), +(22649, 'Guess Who''s Coming Over?', 'US', now()), +(22650, 'Green Porno', 'US', now()), +(22651, 'Sandra''s Money Saving Menus', 'US', now()), +(22652, 'Weaponizers', 'US', now()), +(22653, 'The Lazy Enviromentalist', 'US', now()), +(22654, 'The Superstars', 'US', now()), +(22655, 'Dating In The Dark', 'US', now()), +(22657, 'Undercover Boss', 'US', now()), +(22658, 'Traveling Salesman', 'US', now()), +(22659, 'Sterretje Gezocht', 'NL', now()), +(22660, '1066: The Battle for Middle Earth', 'UK', now()), +(22661, 'Beadle''s About', 'UK', now()), +(22662, '4th and Long', 'US', now()), +(22663, 'Spike Guys Choice', 'US', now()), +(22664, 'Xtreme 4X4', 'US', now()), +(22665, 'Addicted to Beauty', 'US', now()), +(22666, 'Beverly Hills Groomer', 'US', now()), +(22667, 'Blue Mountain State', 'US', now()), +(22668, 'Hogs & Heifers', 'US', now()), +(22669, 'The Girls (2009)', 'US', now()), +(22670, 'The Naughty Kitchen', 'US', now()), +(22671, 'Lady and the Champ', 'US', now()), +(22672, 'VOC', 'NL', now()), +(22673, 'Sterren op het Doek', 'NL', now()), +(22674, 'Sons of Tucson', 'US', now()), +(22675, 'New Zealand''s Next Top Model', 'NZ', now()), +(22676, 'E2 Design', 'US', now()), +(22677, 'True Crime with Aphrodite Jones', 'US', now()), +(22678, 'Obsessed', 'US', now()), +(22679, 'Make It or Break It', 'US', now()), +(22680, 'Hitched or Ditched', 'US', now()), +(22681, 'The IFC Media Project', 'US', now()), +(22682, 'Diamonds (US)', 'US', now()), +(22683, 'The Little Couple', 'US', now()), +(22684, 'Tattoo Highway', 'US', now()), +(22685, 'Maneater', 'US', now()), +(22686, 'HGTV $250,000 Challenge', 'US', now()), +(22687, 'The British Soap Awards', 'UK', now()), +(22688, 'Man Land', 'US', now()), +(22689, 'Ryusei no Kizuna', 'JP', now()), +(22690, 'Tosh.0', 'US', now()), +(22691, 'Kendra', 'US', now()), +(22692, 'Operation: Surgery Live', 'UK', now()), +(22693, 'Bizarre Animal ER', 'UK', now()), +(22694, 'Feasts', 'UK', now()), +(22695, 'Extreme Male Beauty', 'UK', now()), +(22696, 'Food Party', 'US', now()), +(22697, 'Raising Sextuplets', 'US', now()), +(22698, 'Kettingreactie', 'NL', now()), +(22699, 'Human Target (2010)', 'US', now()), +(22700, 'Wedding Day', 'US', now()), +(22701, 'NYC Prep', 'US', now()), +(22702, 'Beyond A Joke (2009)', 'UK', now()), +(22703, 'State Of Romance', 'US', now()), +(22704, 'The Great American Road Trip', 'US', now()), +(22705, 'Michael and Michael Have Issues', 'US', now()), +(22706, 'The Storm', 'US', now()), +(22707, 'Bargain Hunt Famous Finds', 'UK', now()), +(22708, 'Wildschut & De Vries', 'NL', now()), +(22709, 'How''d You Get So Rich?', 'US', now()), +(22710, 'The Game Show Awards', 'US', now()), +(22711, 'Ugly Americans', 'US', now()), +(22712, 'Past Life', 'US', now()), +(22713, 'Kung Fu Panda: Legends of Awesomeness', 'US', now()), +(22714, 'Wild Planet: North America', 'US', now()), +(22715, 'Cooler Kings', 'US', now()), +(22716, 'The Lead Sheet', 'US', now()), +(22717, 'Central Division', 'US', now()), +(22718, 'The Quickening', 'US', now()), +(22719, 'Night Falls', 'US', now()), +(22720, 'NY''s Finest', 'US', now()), +(22721, 'Fugitive Chronicles', 'US', now()), +(22722, 'The Squad: Prison Police', 'US', now()), +(22723, 'Runaway Squad', 'US', now()), +(22724, 'Love Shaq', 'US', now()), +(22725, 'Undercover: Double Life', 'US', now()), +(22726, 'Family Practice', 'US', now()), +(22727, 'Enemies', 'US', now()), +(22728, 'Glenn Martin DDS', 'US', now()), +(22729, 'Night Moves', 'US', now()), +(22730, 'Househusbands of Hollywood', 'US', now()), +(22731, 'Players (2010)', 'US', now()), +(22732, 'Science of the Movies', 'US', now()), +(22734, '100 Questions', 'US', now()), +(22735, 'Brothers (2009)', 'US', now()), +(22736, 'The Eastmans', 'US', now()), +(22737, 'The Unsellables (UK)', 'UK', now()), +(22738, 'Klas van 2009, De', 'NL', now()), +(22739, 'Welkom in Nederland', 'NL', now()), +(22740, 'Future express', 'NL', now()), +(22741, 'Filmjournaal Cannes', 'NL', now()), +(22742, 'Passie voor de hermitage', 'NL', now()), +(22743, 'Ik ben Willem', 'NL', now()), +(22744, 'Zeni Geba', 'JP', now()), +(22746, 'American Mogul: Russell Simmons', 'US', now()), +(22747, 'L. A. Gang Unit', 'US', now()), +(22748, 'Arctic Roughnecks', 'US', now()), +(22749, 'Toast Kannibaal', 'BE', now()), +(22750, 'SMart on the Road', 'UK', now()), +(22751, 'GoGoRiki', 'RU', now()), +(22752, 'The Lost Son', 'US', now()), +(22753, 'BiCoastal', 'US', now()), +(22754, 'Three Rivers', 'US', now()), +(22755, 'The Good Wife', 'US', now()), +(22756, 'Eastwick', 'US', now()), +(22757, 'The Forgotten (2009)', 'US', now()), +(22758, 'Bless This House (2009)', 'US', now()), +(22759, 'Married Not Dead', 'US', now()), +(22760, 'Pulling (US)', 'US', now()), +(22761, 'Romantically Challenged', 'US', now()), +(22762, 'This Little Piggy', 'US', now()), +(22763, 'Captain Cook''s Extraordinary Atlas', 'US', now()), +(22764, 'Empire State', 'US', now()), +(22765, 'Inside The Box', 'US', now()), +(22766, 'Limelight', 'US', now()), +(22767, 'See Kate Run', 'US', now()), +(22768, 'Solving Charlie', 'US', now()), +(22769, 'Crash Course', 'US', now()), +(22770, 'Supermanny', 'US', now()), +(22771, 'Accidentally on Purpose', 'US', now()), +(22772, 'Ace In The Hole', 'US', now()), +(22773, 'At Last', 'US', now()), +(22774, 'The Big D', 'US', now()), +(22775, 'Happiness Isn''t Everything', 'US', now()), +(22776, 'Karensky''s', 'US', now()), +(22777, 'Waiting to Die', 'US', now()), +(22778, 'Back', 'US', now()), +(22779, 'I Witness (US)', 'US', now()), +(22780, 'A Marriage', 'US', now()), +(22781, 'Miami Medical', 'US', now()), +(22782, 'U.S. Attorney', 'US', now()), +(22837, 'Crimewatch Roadshow', 'UK', now()), +(22784, 'America''s Strongest American', 'US', now()), +(22785, 'Live Like You''re Dying', 'US', now()), +(22786, 'Missing You', 'US', now()), +(22787, 'Thunder Road', 'US', now()), +(22788, 'Bucket List', 'US', now()), +(22789, 'The Whole 19 Yards', 'US', now()), +(22790, 'The Jay Leno Show', 'US', now()), +(22791, 'Ashita no Kita Yoshio', 'JP', now()), +(22792, 'The Wanda Sykes Show', 'US', now()), +(22793, 'Quitters', 'US', now()), +(22794, 'Madventures', 'FI', now()), +(22795, 'Everest ER', 'UK', now()), +(22796, 'Jigsaw (UK)', 'UK', now()), +(22797, 'Lucky Ladders', 'UK', now()), +(22799, 'Operation Fabulous', 'US', now()), +(22800, 'AbFab (US)', 'US', now()), +(22801, 'Cop House', 'US', now()), +(22802, 'The Station', 'US', now()), +(22803, 'Two Dollar Beer', 'US', now()), +(22804, 'Eva Adams', 'US', now()), +(22805, 'Maggie Hill', 'US', now()), +(22806, 'Masterwork', 'US', now()), +(22807, 'Off Duty', 'US', now()), +(22808, 'Untitled Justin Adler project', 'US', now()), +(22809, 'Lost & Found', 'US', now()), +(25171, 'UFC On Versus', 'US', now()), +(22812, 'The Deep End', 'US', now()), +(22813, 'Hank (2009)', 'US', now()), +(22814, 'V (2009)', 'US', now()), +(22815, 'There Goes The Neighborhood', 'US', now()), +(22816, 'The Rising Son', 'US', now()), +(22817, 'Someone''s Gotta Go', 'US', now()), +(22818, 'Breakthrough with Tony Robbins', 'US', now()), +(22819, 'The Sing-Off', 'US', now()), +(22820, 'Who Do You Think You Are? (US)', 'US', now()), +(22821, 'Re-Inventing Bonaduce', 'US', now()), +(22822, 'Sex Decoy: Love Stings', 'US', now()), +(22823, 'Your Worst Animal Nightmares', 'US', now()), +(22824, 'Who''s Watching You?', 'UK', now()), +(22825, 'My Life In Verse', 'UK', now()), +(22826, 'The Rod, Jane and Freddy Show', 'UK', now()), +(22827, 'Zomer Draait Door, De', 'NL', now()), +(22828, 'Wat vindt Nederland?', 'NL', now()), +(22829, 'Floor Faber', 'NL', now()), +(22830, 'The Buried Life', 'US', now()), +(22831, 'Untitled Dustin Voigt Project', 'US', now()), +(22840, 'Dirt Game', 'AU', now()), +(22833, 'The Rob Linkhart Show', 'US', now()), +(22835, 'Romper Room', 'US', now()), +(22836, 'We Bring You Live Pictures', 'UK', now()), +(22838, 'Mumbai Calling', 'UK', now()), +(22839, 'Nature''s Fury', 'UK', now()), +(22841, 'Wild Africa', 'UK', now()), +(22842, '16 & Pregnant', 'US', now()), +(22843, 'Lords of the Revolution', 'US', now()), +(22844, 'Megan Wants a Millionaire', 'US', now()), +(22845, 'The Great Debate', 'US', now()), +(22846, 'Way Out (2009)', 'US', now()), +(22848, 'DJ and the Fro', 'US', now()), +(22849, 'The T. O. Show', 'US', now()), +(27282, 'Help, Ons Kind Is Te Dik', 'NL', now()), +(22852, 'Class Action', 'US', now()), +(22853, 'Zapata, Texas', 'US', now()), +(22854, 'Pastor Jazz', 'US', now()), +(22855, 'Macalister', 'US', now()), +(22856, 'Proof', 'US', now()), +(22857, 'The Mayo Clinic', 'US', now()), +(22858, 'Trip of a Lifetime (2009)', 'US', now()), +(22859, 'Neighbors From Hell', 'US', now()), +(22860, 'The Game of Life (2009)', 'US', now()), +(22861, 'Big Tow', 'US', now()), +(22862, 'Wee Hours', 'US', now()), +(22863, 'NFL Full Contact', 'US', now()), +(22864, 'Conspiracy Theory with Jesse Ventura', 'US', now()), +(22865, 'U.S. Special Ops: Declassified', 'US', now()), +(22866, 'Full Throttle Saloon', 'US', now()), +(22868, 'Life For Dummies', 'US', now()), +(22869, 'Tough Justice with Judge Marian Shelton', 'US', now()), +(22870, 'Psychoville', 'UK', now()), +(22871, 'The Othersiders', 'US', now()), +(22872, 'Survive This! (2009)', 'CA', now()), +(22873, 'Chefs vs. City', 'US', now()), +(22874, 'Disappeared', 'US', now()), +(22876, 'The Bureau', 'US', now()), +(22877, 'Whoopi Goldberg’s Cold Cases', 'US', now()), +(22878, 'Prison Wives', 'US', now()), +(22879, 'Paperback Mysteries', 'US', now()), +(22880, 'Incredible Heroes', 'US', now()), +(22881, 'Forensics: You Decide', 'US', now()), +(22882, 'Eat, Drink And Be Married', 'US', now()), +(22883, 'Mom Inc.', 'US', now()), +(22884, 'Freakin'' Fabulous With Clinton Kelly', 'US', now()), +(22885, 'Wedded To Perfection', 'US', now()), +(22886, 'RO tv', 'NL', now()), +(22887, 'Weg naar Mekka, De', 'BE', now()), +(22888, 'Clean House Comes Clean', 'US', now()), +(22889, 'How Do I Look Now?', 'US', now()), +(22890, 'Sha Na Na', 'US', now()), +(22891, 'On Safari', 'UK', now()), +(22892, 'The Price Is Right (1984)', 'UK', now()), +(22893, 'Tarby''s Frame Game', 'UK', now()), +(22894, 'The Lair', 'US', now()), +(22895, 'Sandy Becker Show', 'US', now()), +(22896, 'Ross Kemp in Search of Pirates', 'UK', now()), +(22904, 'Totally Saturday', 'UK', now()), +(22898, 'Bang For Your Buck', 'US', now()), +(22899, 'Eco Trip', 'US', now()), +(22900, 'Carbon Cops', 'AU', now()), +(22901, 'Busted & Disgusted', 'US', now()), +(22902, 'Nature''s Most Amazing Events', 'US', now()), +(22903, 'Dragon Ball Kai', 'JP', now()), +(22905, 'Michael McIntyre''s Comedy Roadshow', 'UK', now()), +(22906, 'Stephen Tompkinson''s African Balloon Adventure', 'UK', now()), +(22907, '10 over half 5 Paul de Leeuw Show, De', 'NL', now()), +(22908, 'Seth & Fiona', 'NL', now()), +(22909, 'Property Snakes and Ladders', 'UK', now()), +(22910, 'May Contain Nuts (2009)', 'UK', now()), +(22911, 'I''m Running Sainsbury''s', 'UK', now()), +(22912, 'Animal Planet''s Most Outrageous', 'US', now()), +(22913, 'Jeena Isi Ka Naam Hai', 'IN', now()), +(22914, 'Ardhangani - Ek Khoobsurat Jeevan Saathi', 'IN', now()), +(22915, 'Aandhi', 'IN', now()), +(22916, 'Aashirwad', 'IN', now()), +(22917, 'Basera', 'IN', now()), +(22919, 'Zomercarroussel', 'BE', now()), +(22920, 'Stake Out', 'UK', now()), +(22921, 'Showbiz Darts', 'UK', now()), +(22922, 'Show Me the Money (UK)', 'UK', now()), +(22923, 'The Christine Hamilton Show', 'UK', now()), +(22924, 'The Deadly Knowledge Show', 'UK', now()), +(22925, 'Fight Science', 'US', now()), +(22926, 'House Swap', 'UK', now()), +(22927, 'Familie', 'BE', now()), +(22928, 'All You Need Is Love (BE)', 'BE', now()), +(22929, 'Hello Goodbye (BE)', 'BE', now()), +(22930, 'Runway', 'UK', now()), +(22931, 'Lieve Paul', 'NL', now()), +(22932, 'Corazón de...', 'ES', now()), +(22933, 'Pop-Up Video', 'US', now()), +(22934, 'The Best Thing I Ever Ate', 'US', now()), +(22935, 'Big Brother''s Big Quiz', 'UK', now()), +(22936, 'Empire of Cricket', 'UK', now()), +(22937, 'Vinger aan de pols', 'NL', now()), +(22938, 'Holiday Hostage Hell', 'US', now()), +(22939, 'Europa in 10 ergernissen', 'NL', now()), +(22940, 'NOS Europa Kiest: uitslagen Nederland', 'NL', now()), +(22941, 'Andere Tijden Sport', 'NL', now()), +(22942, 'NOS Europa Kiest: uitslagen Europa', 'NL', now()), +(22943, 'Ultimate Burger Bash With Food Network All-Stars!', 'US', now()), +(22944, '5 Ingredient Fix', 'US', now()), +(22945, 'Shower of Stars', 'US', now()), +(22947, 'Café de Liefde', 'NL', now()), +(22948, 'Swamp Loggers', 'US', now()), +(22949, 'Extreme Cuisine with Jeff Corwin', 'US', now()), +(22950, 'Worst Cooks in America', 'US', now()), +(22951, 'Daisy Cooks!', 'US', now()), +(22952, 'Musical Awards', 'NL', now()), +(22953, 'ZOOP', 'NL', now()), +(22954, 'Marc-Marie in ’t wild', 'NL', now()), +(22955, 'Welcome to Dreamland', 'US', now()), +(22956, 'Razzamatazz', 'UK', now()), +(22957, 'Alan Carr: Chatty Man', 'UK', now()), +(22958, 'Six-Five Special', 'UK', now()), +(22959, 'River Cottage Summer''s Here', 'UK', now()), +(22960, 'Personal Affairs', 'UK', now()), +(22961, 'Air Medics', 'UK', now()), +(22962, 'Police, Camera, Action!', 'UK', now()), +(22963, 'The Saturday Show (1982)', 'UK', now()), +(22964, 'Motormouth (UK)', 'UK', now()), +(22965, 'Tiny & Toya', 'US', now()), +(22966, 'Plastic Fantastic Brain', 'US', now()), +(22967, 'Air Force Afghanistan', 'UK', now()), +(22968, 'Fais pas ci, fais pas ça', 'FR', now()), +(22969, 'Brain Rush', 'US', now()), +(22970, 'Destroy Build Destroy', 'US', now()), +(22971, 'Bollywood Hero', 'US', now()), +(22972, 'Frankie & Neffe: Keeping It Real', 'US', now()), +(22973, 'Ik Kom Bij Je Eten', 'NL', now()), +(22974, 'Monty Python: Almost The Truth', 'US', now()), +(22975, 'Umi Monogatari: Anata ga Ite Kureta Koto', 'JP', now()), +(22976, 'Fight Ippatsu! Juuden-Chan!!', 'JP', now()), +(22977, 'Scripps National Spelling Bee', 'US', now()), +(22978, 'Sports Stars Of Tomorrow', 'US', now()), +(22979, 'Chaos at the Chalet', 'UK', now()), +(22980, 'Umineko no Naku Koro ni', 'JP', now()), +(22981, 'Sé lo que hicisteis la última semana', 'ES', now()), +(22982, 'Aoi Hana', 'JP', now()), +(22983, 'Needless', 'JP', now()), +(22984, 'Taishou Yakyuu Musume', 'JP', now()), +(22985, 'Bakemonogatari', 'JP', now()), +(22986, 'Children''s Ward', 'UK', now()), +(22987, 'Elementhunters', 'JP', now()), +(22988, 'Canaan', 'JP', now()), +(22989, 'Among the Apes', 'UK', now()), +(22990, 'It''ll be Alright on the Night', 'UK', now()), +(22991, 'Mega Engineering', 'US', now()), +(22992, 'Gerry Robinson''s Car Crash', 'UK', now()), +(22993, 'TNT Show', 'UK', now()), +(22994, 'Xperience', 'NL', now()), +(22995, 'Evenblij met...', 'NL', now()), +(22996, 'Rock!', 'NL', now()), +(22997, 'First Love, Second Chance', 'US', now()), +(22998, 'Pre-Teen Beauty Queen', 'AU', now()), +(22999, 'Web Soup', 'US', now()), +(23000, 'Real Crime', 'UK', now()), +(23001, 'Supersize vs Superskinny', 'UK', now()), +(23002, 'The World''s Best Diet', 'UK', now()), +(23003, 'Top star magazín', 'CZ', now()), +(23004, 'Beste Zangers van Nederland, De', 'NL', now()), +(23005, 'Spain: Paradise Lost', 'UK', now()), +(23006, 'Famous, Rich and Homeless', 'UK', now()), +(23007, 'Celebrity Wrestling', 'UK', now()), +(23008, 'Firing Line', 'US', now()), +(23009, 'Wie Is Mijn Ex?', 'NL', now()), +(23010, 'Total Drama World Tour', 'CA', now()), +(23011, 'Rasuto Furenzu', 'JP', now()), +(23012, 'Benelux’ Next Top Model', 'NL', now()), +(23013, 'Miss World', 'UK', now()), +(23014, 'Miss International', 'JP', now()), +(23015, 'Miss Earth', 'PH', now()), +(23016, 'Supermodel of the World', 'US', now()), +(23017, 'Masters of Reception', 'US', now()), +(23018, 'You''re Nicked', 'UK', now()), +(23019, 'Baseball', 'US', now()), +(23020, 'America''s Junior Miss', 'US', now()), +(23021, 'The Big House (1998-2003)', 'US', now()), +(23022, 'Sex up - Jungs haben''s auch nicht leicht', 'DE', now()), +(23023, 'Monday Monday', 'UK', now()), +(23024, 'Sex up - ich könnt'' schon wieder', 'DE', now()), +(23025, 'Dani''s House', 'UK', now()), +(23026, 'Kuruneko', 'JP', now()), +(23027, 'Princess Lover!', 'JP', now()), +(23028, 'Kanamemo', 'JP', now()), +(23029, 'Siska', 'DE', now()), +(23030, 'Boven Wotter', 'NL', now()), +(23031, 'Russia''s War: Blood Upon the Snow', 'US', now()), +(23032, 'Talkin'' ''Bout Your Generation', 'AU', now()), +(23033, 'Silent Library', 'US', now()), +(23034, 'Super League Show', 'UK', now()), +(23035, 'Zeke and Luther', 'US', now()), +(23036, 'Samen', 'NL', now()), +(23037, 'The Chase (2009)', 'UK', now()), +(23038, 'Pauwen en Reigers', 'NL', now()), +(23039, 'Waar is Elvis?!', 'NL', now()), +(23040, 'Afghan Star', 'AF', now()), +(23041, 'Men are required', 'AL', now()), +(23042, 'X Factor (CZ)', 'CZ', now()), +(23043, 'Revelations: How To Find God', 'UK', now()), +(23044, 'The Secret Caribbean with Trevor McDonald', 'UK', now()), +(23045, 'Inside Nature''s Giants', 'UK', now()), +(23046, 'Myths', 'UK', now()), +(23047, 'Jazz (2001)', 'US', now()), +(23048, 'Vietnam: a Television History', 'US', now()), +(23049, 'Don Chinche', 'CO', now()), +(23050, 'Cruises We Love', 'US', now()), +(23051, 'Zoovenirs', 'NL', now()), +(23052, 'MuchMusic Video Awards', 'CA', now()), +(23053, 'D-Day 6.6.44', 'UK', now()), +(23054, 'Lasko - Die Faust Gottes', 'DE', now()), +(23055, 'STARS & stories', 'DE', now()), +(23056, 'Buitenhof', 'NL', now()), +(23057, 'Cabaret & Co', 'NL', now()), +(23059, 'Brink', 'US', now()), +(23060, 'Stager Invasion', 'US', now()), +(23061, 'The Terry and Gaby Show', 'UK', now()), +(23062, 'The Fuse', 'UK', now()), +(23063, 'Bite Me With Dr. Mike', 'US', now()), +(23064, 'Ik begin voor mezelf', 'NL', now()), +(23065, 'La nuit a peur du soleil', 'FR', now()), +(23066, 'Four Weddings', 'UK', now()), +(23067, 'Uhhh... Vergeet Je Tandenborstel Niet!', 'NL', now()), +(23068, 'Prísne tajné', 'CZ', now()), +(23069, 'Vamp', 'BR', now()), +(23070, 'Pasapalabra', 'ES', now()), +(23071, 'Bailando por un sueño 4', 'AR', now()), +(23072, 'Monsters Inside Me', 'US', now()), +(23073, 'Don''t Forget Your Toothbrush (UK)', 'UK', now()), +(23074, 'Tafel Van 5, De', 'NL', now()), +(23075, 'On Thin Ice', 'UK', now()), +(23076, 'Dick & Dom''s Are You Smarter Than a 10 Year Old?', 'UK', now()), +(23077, 'Kunt u mij de weg naar Hamelen vertellen, mijnheer?', 'NL', now()), +(23078, 'Coin Locker Monogatari', 'JP', now()), +(23079, 'heute-show', 'DE', now()), +(23080, 'Je suis une célébrité, sortez-moi de là!', 'FR', now()), +(23081, 'Celeb vagyok... ments ki innen!', 'HU', now()), +(23082, 'The Magic Hour', 'US', now()), +(23083, 'BN’ers in het Park', 'NL', now()), +(23084, 'The McLaughlin Group', 'US', now()), +(23085, 'Kid vs Kat', 'CA', now()), +(23086, 'Nathan''s Hot Dog Eating Contest', 'US', now()), +(23087, 'Monster Buster Club', 'US', now()), +(23088, 'You Have Been Watching', 'UK', now()), +(23089, 'The Grandparent Diaries', 'UK', now()), +(23090, 'Let’s Dance (NL)', 'NL', now()), +(23091, 'Saturday Night Live Weekend Update Thursday', 'US', now()), +(23092, 'Gerry''s Big Decision', 'UK', now()), +(23093, 'Operatie van der Most', 'NL', now()), +(23094, 'Lachen om Home Video''s', 'NL', now()), +(23095, 'Most Popular', 'US', now()), +(23096, 'Groeten van MAX', 'NL', now()), +(23097, 'Noorderlicht nieuws', 'NL', now()), +(23104, 'Russejentene', 'NO', now()), +(23105, 'Le grand journal de Canal+', 'FR', now()), +(23106, 'The English Civil War', 'UK', now()), +(23107, 'Nicholas Nickleby', 'UK', now()), +(23108, 'Napoleon', 'US', now()), +(23109, 'Mystery of Edwin Drood', 'UK', now()), +(23110, 'The Men Who Made the Movies', 'US', now()), +(23111, 'Geld.Macht.Liebe', 'DE', now()), +(23112, 'Hanazakari no Kimitachi e', 'JP', now()), +(23113, 'The Hero Awards', 'US', now()), +(23114, 'Life Unexpected', 'US', now()), +(23115, 'Iljimae', 'KR', now()), +(23116, 'The West', 'US', now()), +(23117, 'The National Lottery: Millionaire Manor', 'UK', now()), +(23118, 'The National Lottery: Wright Around the World', 'UK', now()), +(23119, 'Baby''s Wil Is Wet', 'NL', now()), +(23120, 'Nicholas Nickleby (1968)', 'UK', now()), +(23121, 'Badgasten, De', 'NL', now()), +(23122, 'The National Lottery Big Ticket', 'UK', now()), +(23123, 'Only Connect', 'UK', now()), +(23124, 'National Lottery: Jet Set', 'UK', now()), +(23125, 'Defying Gravity', 'US', now()), +(23126, 'Public Prosecutor', 'US', now()), +(23127, 'The National Lottery on Tour', 'UK', now()), +(23128, 'The National Lottery The Big Stars', 'UK', now()), +(23129, 'Fauna & Gemeenschap', 'NL', now()), +(23130, 'The National Lottery Dreamworld', 'UK', now()), +(23131, 'The National Lottery Amazing Luck Stories', 'UK', now()), +(23132, 'The National Lottery: We Got Your Number', 'UK', now()), +(23133, 'The National Lottery: Greatest Hits', 'UK', now()), +(23134, 'The National Lottery: Guesstimation', 'UK', now()), +(23135, 'Twins by Surprise', 'US', now()), +(23136, 'The National Lottery Euro Millions Draw', 'UK', now()), +(23137, 'Moments of Impact', 'US', now()), +(23138, 'RTL Vandaag', 'NL', now()), +(23139, 'Pop-Up Quiz', 'US', now()), +(23140, '2012 Het Jaar Nul', 'NL', now()), +(23141, 'As Seen on TV', 'UK', now()), +(23142, 'Beroemde Ouders', 'NL', now()), +(23143, 'The National Lottery Daily Play', 'UK', now()), +(23144, 'Around the World in 80 Gardens', 'UK', now()), +(23145, 'The Mayor of Casterbridge', 'UK', now()), +(23146, 'Nicholas Nickleby (1957)', 'UK', now()), +(23147, 'Focus Earth with Bob Woodruff', 'US', now()), +(23148, 'Atlanta Homicide', 'US', now()), +(23149, 'High Rise', 'US', now()), +(23150, 'Emeril Green', 'US', now()), +(23151, 'That''s Impossible!', 'US', now()), +(23152, 'Hooked', 'US', now()), +(23153, 'Keshia and Kaseem', 'US', now()), +(23154, 'Celeb-U-Moms', 'US', now()), +(23155, 'Mr. & Mrs. Makeover', 'US', now()), +(23156, 'Stoked', 'CA', now()), +(23158, 'Anatomy of Hope', 'US', now()), +(23159, 'Ape Escape', 'US', now()), +(23160, 'Women''s Studies', 'US', now()), +(23161, 'Boundaries', 'US', now()), +(23162, 'BrainSurge', 'US', now()), +(23163, 'The Call', 'CA', now()), +(23164, 'Cartoonstitute', 'US', now()), +(23165, 'Comedy Colosseum', 'US', now()), +(23166, 'Avondetappe, De', 'NL', now()), +(23167, 'Vreemde Tralies', 'NL', now()), +(23168, 'DOL', 'NL', now()), +(23169, 'Jude the Obscure', 'UK', now()), +(23170, 'Svarte penger, hvite løgner', 'NO', now()), +(23171, 'Young Charlie Chaplin', 'UK', now()), +(23172, 'The Great War and the Shaping of the 20th Century', 'UK', now()), +(23173, 'Coleen''s Real Women', 'UK', now()), +(23174, 'Churchill''s Bodyguard', 'UK', now()), +(23175, 'How Green Was My Valley', 'UK', now()), +(23176, 'The Dating Guy', 'CA', now()), +(23177, 'Dex Hamilton: Alien Entomologist', 'CA', now()), +(23178, 'Artopia', 'US', now()), +(23179, 'Helden', 'NL', now()), +(23180, 'The National Lottery: Come and Have a Go', 'UK', now()), +(23181, 'Glitter Glamour Gordon', 'NL', now()), +(23182, 'Babyboom', 'NL', now()), +(23183, 'Out Of Egypt', 'US', now()), +(23184, 'Disraeli: Portrait of a Romantic', 'UK', now()), +(23185, 'GA: Geijutsuka Art Design Class', 'JP', now()), +(23186, 'Sora no Manimani', 'JP', now()), +(23187, 'Tokyo Magnitude 8.0', 'JP', now()), +(23188, 'Yoku Wakaru Gendai Mahou', 'JP', now()), +(23189, 'The International Sexy Ladies Show', 'US', now()), +(23190, 'Home For Life', 'UK', now()), +(23191, 'Rick Stein''s Far Eastern Odyssey', 'UK', now()), +(23192, 'Gelukkig je bent er', 'NL', now()), +(23193, 'Surprise, Surprise', 'UK', now()), +(23194, 'Ancient Megastructure', 'US', now()), +(23195, 'The Enemies of Reason', 'UK', now()), +(23196, 'Time Team America', 'US', now()), +(23197, 'The Ascent of Money', 'UK', now()), +(23198, 'Wild Russia', 'US', now()), +(23199, 'Fanboy and Chum Chum', 'US', now()), +(23200, 'Frenemies', 'US', now()), +(23201, 'Hiccups', 'CA', now()), +(23202, 'Holidate', 'US', now()), +(23203, 'East of Everything', 'AU', now()), +(23204, 'Kourtney and Khloe Take Miami', 'US', now()), +(23205, 'Planet Sheen', 'US', now()), +(23206, 'Winston Churchill: The Wilderness Years', 'UK', now()), +(23207, 'Mission to The Moon - News From 1969', 'UK', now()), +(23208, 'All the Queen''s Horses with Alan Titchmarsh', 'UK', now()), +(23209, 'No 73', 'UK', now()), +(23210, 'CQC (NL)', 'NL', now()), +(23211, 'What Would Brian Boitano Make?', 'US', now()), +(23212, 'T.U.F.F. Puppy', 'US', now()), +(23213, 'Audrina', 'US', now()), +(23214, 'Underage and Pregnant', 'UK', now()), +(23215, 'The Truth About Crime', 'UK', now()), +(23216, 'Car Crime UK', 'UK', now()), +(23217, 'Hole in the Wall (NL)', 'NL', now()), +(23218, 'Erik & Sascha in Afrika', 'NL', now()), +(23219, 'The Aviators', 'CA', now()), +(23221, 'The More Things Change', 'US', now()), +(23222, 'The Fam Fite', 'US', now()), +(23223, 'This Might Hurt', 'US', now()), +(23224, 'Timon and Pumbaa: The Wilds', 'US', now()), +(23226, 'Zombie Hunters: City of the Dead', 'US', now()), +(23227, 'Avengers: Earth’s Mightiest Heroes', 'US', now()), +(23228, 'A Town Called Malice', 'US', now()), +(23229, 'Catch It Keep It', 'US', now()), +(23230, 'Restorer Guy', 'US', now()), +(23231, 'Giuliana & Bill', 'US', now()), +(23232, 'Reality Hell', 'US', now()), +(23233, 'Into The Pride', 'US', now()), +(23234, 'The Rat Pack', 'UK', now()), +(23235, 'Taking The Flak', 'UK', now()), +(23236, 'Brick City', 'US', now()), +(23237, 'VH1 Hip Hop Honors', 'US', now()), +(23238, 'Secret Girlfriend', 'US', now()), +(23239, 'The Aquabats Super Show', 'US', now()), +(23240, 'Bandida', 'PH', now()), +(23241, 'Bazil''s Culture Clash', 'IE', now()), +(34025, 'Poliisit', 'FI', now()), +(23243, 'Square Roots: The Story of Spongebob Squarepants', 'US', now()), +(23244, 'Journos', 'AU', now()), +(23245, 'Wereld van Beau, De', 'NL', now()), +(23246, 'In The Dog House', 'US', now()), +(23247, 'Dames van Oranje', 'NL', now()), +(23248, 'Paul Rosenmöller in... China', 'NL', now()), +(23249, 'Naked Office', 'UK', now()), +(23250, 'Lucia en de liefde', 'NL', now()), +(23251, 'Geld maakt gelukkig?', 'NL', now()), +(23252, 'Camping Pernis', 'NL', now()), +(26700, 'Söndagsparty med Filip & Fredrik', 'SE', now()), +(23254, 'Droomhuis Gezocht', 'NL', now()), +(23255, 'Soundstage (1974)', 'US', now()), +(23257, 'Big Top', 'UK', now()), +(23258, 'Burning Flame III', 'HK', now()), +(23259, 'Paris Hilton’s Dubai BFF', 'AE', now()), +(23260, 'Dahil May Isang Ikaw', 'PH', now()), +(23261, 'Florinda', 'PH', now()), +(23262, 'Habang May Buhay', 'PH', now()), +(23263, 'Hasta Que El Dinero Nos Separe', 'MX', now()), +(23264, 'In the Chamber of Bliss', 'HK', now()), +(23265, 'International Hareport', 'FR', now()), +(23266, 'Isang Lakas', 'PH', now()), +(23267, 'It''s Only A Theory', 'UK', now()), +(23268, 'J1 - Summer in the Sun', 'IE', now()), +(23269, 'Kamen Rider Double', 'JP', now()), +(23270, 'Les Mistigris', 'FR', now()), +(23271, 'Life (UK)', 'UK', now()), +(23272, 'Lola Calamidades', 'CO', now()), +(23273, 'Loveland', 'UK', now()), +(23274, 'Lovers in Paris (2009)', 'PH', now()), +(23275, 'Meteor Shower', 'CN', now()), +(23276, 'Mexico''s Next Top Model', 'MX', now()), +(23277, 'Moon River', 'PH', now()), +(23278, 'Muodin huipulle', 'FI', now()), +(23279, 'Nagai-Aida', 'PH', now()), +(23280, 'Reborn in the USA', 'UK', now()), +(23281, 'Pawn Star$', 'US', now()), +(23282, 'The Wanted', 'US', now()), +(23283, 'Repossessed!', 'US', now()), +(23284, 'Octavia', 'UK', now()), +(23285, 'Wild Decembers', 'IE', now()), +(23286, 'Single-Handed', 'IE', now()), +(23287, 'One in a Million (Malaysia)', 'MY', now()), +(23288, 'Troon, De', 'NL', now()), +(23289, 'Over De Kook', 'NL', now()), +(23290, 'Grote Woonwens, De', 'NL', now()), +(23291, 'Out and About Television', 'AU', now()), +(23292, 'Paradox', 'UK', now()), +(23293, 'Romance of the Three Kingdoms', 'CN', now()), +(23294, 'Root of Evil', 'HK', now()), +(23295, 'Burey Bhi Hum Bhale Bhi Hum', 'IN', now()), +(23296, 'A Bride for a Ride', 'HK', now()), +(23297, 'Chehra', 'IN', now()), +(23298, 'A Great Way to Care', 'HK', now()), +(23299, 'Sweetness in the Salt', 'HK', now()), +(23300, 'The Threshold of a Persona', 'HK', now()), +(23301, 'Kundali', 'IN', now()), +(23302, 'Making His Band', 'US', now()), +(23303, 'Sunrise (UK)', 'UK', now()), +(23304, 'Anonymous', 'IE', now()), +(23305, 'Lock N'' Load with R. Lee Ermey (2009)', 'US', now()), +(23306, 'Young, Dumb And Living Off Mum', 'UK', now()), +(23307, 'Desperate Romantics', 'UK', now()), +(23308, 'Wildest Dreams', 'UK', now()), +(23309, 'Getting On', 'UK', now()), +(23310, 'Wainwright Walks: Coast To Coast', 'UK', now()), +(23311, 'Rivers with Griff Rhys Jones', 'UK', now()), +(23312, 'Bang Goes The Theory', 'UK', now()), +(23313, 'Skate Nation', 'UK', now()), +(23314, 'Boost Mobile Pro', 'US', now()), +(23315, 'Zombie-Loan', 'JP', now()), +(23316, 'Stairway to Heaven (2009)', 'PH', now()), +(23317, 'Survivor Philippines', 'PH', now()), +(23318, 'West Africa''s Next Top Model', 'ZA', now()), +(23319, 'Live & Loud Fridays', 'US', now()), +(23320, 'Knowitalls', 'UK', now()), +(23321, 'Silverville', 'UK', now()), +(23322, 'Heterdaad', 'BE', now()), +(23323, 'Notorious Woman', 'UK', now()), +(23324, 'The Take', 'UK', now()), +(23325, 'Warrior Challenge', 'US', now()), +(23326, 'Xarm Championship', 'US', now()), +(23327, 'Reef Girls', 'US', now()), +(23328, 'Sound Proof with Leah Rose', 'US', now()), +(23329, 'Vida''s Video Picks', 'US', now()), +(23330, 'Girls of FHM', 'US', now()), +(23331, 'Models B4 10am', 'US', now()), +(23332, 'Ed''s Nite In', 'CA', now()), +(23333, 'Cinderella Story', 'US', now()), +(23334, 'Mind of a Model', 'US', now()), +(23335, 'Ripe Rocks', 'US', now()), +(23336, 'Trivia Trio', 'US', now()), +(23337, 'Boxing Bonaduce', 'US', now()), +(23338, 'Picking Miss Octane', 'US', now()), +(23339, 'Ultimate Cake Off', 'US', now()), +(23340, 'Police Women of ...', 'US', now()), +(23341, 'My Antonio', 'US', now()), +(23342, 'Michaela''s Animal Rood Trip', 'UK', now()), +(23343, 'The Forsyte Saga (1967)', 'UK', now()), +(23344, 'Bloedverwanten', 'NL', now()), +(23345, 'Wolfseinde', 'NL', now()), +(23346, 'Watch What Happens: Live', 'US', now()), +(23347, 'Stuff 4 Dudes', 'US', now()), +(23348, 'Seks som oss', 'NO', now()), +(23349, 'Model Dating: Hawaii', 'US', now()), +(23350, 'URB''s Next 100', 'US', now()), +(23351, 'X-It Ramp', 'US', now()), +(23352, 'The New Adventures of the Lone Ranger', 'US', now()), +(23353, 'Inside MMA', 'US', now()), +(23354, 'Archer (2009)', 'US', now()), +(23355, 'Masters of Illusion', 'US', now()), +(23356, 'The Colony (US)', 'US', now()), +(23357, 'Keyshawn Johnson: Tackling Design', 'US', now()), +(23358, 'The Newlywed Game (2009)', 'US', now()), +(23359, 'Hollywood''s Best Film Directors', 'US', now()), +(23360, 'Primal Grill with Steven Raichlen', 'US', now()), +(23361, 'It''s On with Alexa Chung', 'US', now()), +(23362, 'Joe Buck Live', 'US', now()), +(23363, 'Jeffery & Cole Casserole', 'US', now()), +(23365, 'Closet Cases', 'US', now()), +(23366, 'Thursday Night Baseball', 'US', now()), +(23367, 'The Ed Show', 'US', now()), +(23368, 'Jimmy Two-Shoes', 'CA', now()), +(23369, 'Adventure Time', 'US', now()), +(23370, 'A Pillow Case of Mystery II', 'HK', now()), +(23371, 'A Watchdog''s Tale', 'HK', now()), +(23372, 'Are You Smarter Than a 5th Grader? (Daytime)', 'US', now()), +(23373, 'Beyond the Realm of Conscience', 'HK', now()), +(23374, 'Born Rich', 'HK', now()), +(23375, 'We Are Klang', 'UK', now()), +(23376, 'Gevoel van de Vierdaagse, Het', 'NL', now()), +(23377, 'Hans Klok, See you in Vegas', 'NL', now()), +(23378, 'NieuwsLLiNK', 'NL', now()), +(23379, 'The National Lottery: Love Songs', 'UK', now()), +(23380, 'The National Lottery Third Degree', 'UK', now()), +(23381, 'Red Alert with The National Lottery', 'UK', now()), +(23382, 'The National Lottery UK 2000', 'UK', now()), +(23383, 'Nijmeegse Vierdaagse, De', 'NL', now()), +(23384, 'MotoGP', 'US', now()), +(23385, 'Ireland AM', 'IE', now()), +(23386, 'Roary The Racing Car', 'UK', now()), +(23387, 'Show Me Show Me', 'UK', now()), +(23388, 'Bookaboo', 'UK', now()), +(23389, 'Haunted History', 'US', now()), +(23390, 'Bunnytown', 'CA', now()), +(23391, 'Bed & Bardsleys', 'UK', now()), +(23392, 'The Hunchback of Notre Dame', 'UK', now()), +(23393, 'The Three Musketeers (1966)', 'UK', now()), +(23394, 'Rock ''n'' Roll Hotel', 'UK', now()), +(23395, 'Slimste, De (2009)', 'NL', now()), +(23396, 'Classic Goldie', 'UK', now()), +(23397, 'How The Other Half Live', 'UK', now()), +(23398, 'Slimste, De (2006)', 'NL', now()), +(23399, 'Grimefighters', 'UK', now()), +(23400, 'Rubicon', 'US', now()), +(23401, 'Ouders hebben geen seks', 'NL', now()), +(23402, 'Angels (2009)', 'UK', now()), +(23403, 'The McCain Track and Field Show', 'UK', now()), +(23404, 'Kituu Sabb Jaantii Hai', 'IN', now()), +(23405, 'Kohinoor', 'IN', now()), +(23406, 'Kuch Apne Kuch Paraye', 'IN', now()), +(23407, 'Family Reunion', 'US', now()), +(26175, 'Otomen', 'JP', now()), +(23409, 'Love Shuffle', 'JP', now()), +(23410, 'The Pen', 'US', now()), +(23411, 'Alone in the Wild', 'US', now()), +(23412, 'Via Vacance, Via France', 'NL', now()), +(23413, 'Adoption Diaries', 'US', now()), +(23414, 'Girls Down Under', 'US', now()), +(23415, 'Growing Through Life', 'HK', now()), +(23416, 'Fly With Me', 'HK', now()), +(23417, 'Full House (2009)', 'PH', now()), +(23418, 'Despera', 'JP', now()), +(23419, 'D.I.E. Again', 'HK', now()), +(23420, 'Hot Wheels Battle Force 5', 'US', now()), +(23421, 'Eurocasting', 'AD', now()), +(23422, 'Live From the Artists Den', 'US', now()), +(23423, 'The Football League Show', 'UK', now()), +(23424, 'Live Championship', 'UK', now()), +(23425, 'Sjans', 'NL', now()), +(23426, 'League Cup Highlights', 'UK', now()), +(23427, 'Kijken in de ziel', 'NL', now()), +(23428, 'In de familie', 'NL', now()), +(23429, 'Clash', 'UK', now()), +(23430, 'Extravagant Challenge', 'TW', now()), +(23431, 'Deadly 60', 'UK', now()), +(23432, 'Rock & Chips', 'UK', now()), +(23433, 'Sherlock', 'UK', now()), +(23434, 'Shraddha', 'IN', now()), +(23435, 'Syntax Era', 'UK', now()), +(23436, 'Surviving Disaster (US)', 'US', now()), +(23437, 'Loopt een man over het water…', 'NL', now()), +(23438, 'Malaysian Idol', 'MY', now()), +(23439, 'Launch My Line', 'US', now()), +(23440, 'Celebrity Jigs N Reels', 'IE', now()), +(23441, 'Sex in the Ancient World', 'US', now()), +(23442, 'Life 4 You', 'NL', now()), +(23443, 'The Project', 'AU', now()), +(23444, 'Clash Of The Gods', 'US', now()), +(23445, 'Rising Icons', 'US', now()), +(23446, 'Adrienne Bailon Project', 'US', now()), +(23447, 'Warren the Ape', 'US', now()), +(23448, 'The Awesomes', 'US', now()), +(23449, 'Patito feo', 'AR', now()), +(23450, 'The Hard Times of RJ Berger', 'US', now()), +(28614, 'Almost Heroes', 'CA', now()), +(23452, 'Alligator Boots', 'US', now()), +(23453, 'Alligator Point', 'US', now()), +(23455, 'Neighbourhood Watched', 'UK', now()), +(23456, 'Sam and Mark''s Guide to Dodging Disaster', 'UK', now()), +(23457, 'Shaq vs.', 'US', now()), +(23458, 'All Jacked Up', 'US', now()), +(23459, 'One Outs', 'JP', now()), +(23460, 'Kimi ni Todoke', 'JP', now()), +(23461, 'MysteryQuest', 'US', now()), +(23462, 'Bank of Mom and Dad', 'US', now()), +(23463, 'Fetch Me A Beer', 'US', now()), +(23464, 'Head Games', 'US', now()), +(23465, 'Gone Too Far', 'US', now()), +(23466, 'Man Shops Globe', 'US', now()), +(23467, 'On The Case With Paula Zahn', 'US', now()), +(23468, 'The Jeff Dunham Show', 'US', now()), +(23469, 'Monica: Still Standing', 'US', now()), +(23470, 'On Tour with the Queen', 'UK', now()), +(23471, 'Island Wars', 'NZ', now()), +(23472, 'Justified', 'US', now()), +(23473, 'Salon Imogen', 'UK', now()), +(23474, 'Schiet mij maar lek', 'NL', now()), +(23475, 'Bernhard, Schavuit van Oranje', 'NL', now()), +(23476, 'Claudia op Vrijdag', 'NL', now()), +(23477, 'Verrassingschef, De', 'NL', now()), +(23478, 'Virgin Cooks', 'UK', now()), +(23479, 'World Athletics Championships 2009', 'UK', now()), +(23480, 'Bobb''e Says', 'US', now()), +(23481, 'Dude, What Would Happen', 'US', now()), +(23482, 'Scooby Doo! The Mystery Begins', 'US', now()), +(23483, 'Sym-Bionic Titan', 'US', now()), +(23484, 'Generator Rex', 'US', now()), +(23486, 'Terry and the Pirates', 'US', now()), +(23487, 'Ben 10: Ultimate Alien', 'US', now()), +(23489, 'Firebreather', 'US', now()), +(23491, 'Scooby-Doo - Mystery, Inc.', 'US', now()), +(23492, 'Tiger''s Apprentice', 'US', now()), +(23493, 'Unnatural History', 'US', now()), +(23494, 'TEIOH', 'JP', now()), +(23495, 'Oerend Hard', 'NL', now()), +(23496, 'Rescue Special Ops', 'AU', now()), +(23497, 'The Gallery of Madame Liu-Tsong', 'US', now()), +(23498, 'Irene, een ander leven', 'NL', now()), +(23499, 'Made in the seventies', 'NL', now()), +(23500, 'Shownieuws', 'NL', now()), +(23501, 'Klemens i Klementynka - gesi z Doliny Mlynow', 'PL', now()), +(23502, 'America The Story of Us', 'US', now()), +(23503, 'American Tabloid', 'US', now()), +(23504, 'America''s Worst Driver', 'US', now()), +(23505, 'Secrets of Aspen', 'US', now()), +(23506, 'The Price Of Beauty', 'US', now()), +(23507, 'Tour de Provence', 'NL', now()), +(23508, 'Toneel op 2', 'NL', now()), +(23509, 'Live Talk', 'UK', now()), +(23510, '2 Months, $2 Million', 'US', now()), +(23511, 'Hoarders', 'US', now()), +(23512, 'Sneekweek', 'NL', now()), +(23513, 'Hart van Nederland', 'NL', now()), +(23514, 'Piets Weerbericht', 'NL', now()), +(23515, 'Drain The Ocean', 'US', now()), +(23516, 'NCRV Dokument: Spookhuis', 'NL', now()), +(23517, 'Lopez Tonight', 'US', now()), +(23518, 'Pranked', 'US', now()), +(23519, 'Planet Mechanics', 'UK', now()), +(23520, 'Ha die Pa!', 'NL', now()), +(23521, 'Coolfuel', 'US', now()), +(23522, 'Heart of the City (2009)', 'US', now()), +(23523, 'Pay It Off', 'US', now()), +(23524, 'The Ripe 7', 'US', now()), +(23525, 'Dead and Breakfast', 'US', now()), +(23526, 'Re-Modeled (2007)', 'US', now()), +(23527, 'VIP Lounge', 'US', now()), +(23528, 'This Show Sucks', 'US', now()), +(23529, 'Picking Miss Ripe', 'US', now()), +(23530, 'Hollywood Burn', 'US', now()), +(23531, 'Sexy & Single', 'US', now()), +(23532, 'Wild Girls Vegas', 'US', now()), +(23533, 'Sexy Road Test', 'US', now()), +(23534, 'Crashed!', 'US', now()), +(23535, 'Supermodel TV', 'US', now()), +(23536, 'Trashy Girls', 'US', now()), +(23537, 'First In', 'US', now()), +(23538, 'Het bloed kruipt', 'NL', now()), +(23540, 'Nature, Inc.', 'US', now()), +(23541, 'Inside DTP', 'US', now()), +(23542, 'Saints and Scroungers', 'UK', now()), +(23543, 'Briefgeheim', 'NL', now()), +(23544, 'Ultimate Power Builders', 'US', now()), +(23545, 'Dinosaur Train', 'US', now()), +(23546, 'Sprout''s Wiggly Waffle', 'US', now()), +(23547, 'Jungle Junction', 'UK', now()), +(23548, 'The Troop', 'US', now()), +(23549, 'The Duchess on the Estate', 'UK', now()), +(23550, 'Benefit Busters', 'UK', now()), +(23551, 'House of Jazmin', 'US', now()), +(23552, 'Sherri', 'US', now()), +(23553, 'Be Good Johnny Weir', 'US', now()), +(23554, 'Best Buds', 'US', now()), +(23555, 'Nite Tales', 'US', now()), +(23556, 'Annie MG', 'NL', now()), +(23557, 'Trust Me, I''m A Dealer', 'UK', now()), +(23558, 'Between Smith and Jones', 'US', now()), +(23559, 'Bio Recon', 'US', now()), +(23560, 'Bitches (2009)', 'US', now()), +(23561, 'Boardwalk Empire', 'US', now()), +(23562, 'Bob Saget on America', 'US', now()), +(23563, 'Boomerangers', 'US', now()), +(23564, 'Booths', 'US', now()), +(23565, 'Gillette Soccer Saturday', 'UK', now()), +(23566, 'Tante in Marokko', 'NL', now()), +(23567, 'Dekselse dames', 'NL', now()), +(23568, 'Made in the eighties', 'NL', now()), +(23569, 'Is She Really Going Out with Him?', 'US', now()), +(23570, 'Koselig med peis', 'NO', now()), +(23571, 'Ha-Pijamot', 'IL', now()), +(23572, 'VIP Brother', 'BG', now()), +(23573, 'Gran Hermano Colombia', 'CO', now()), +(23574, 'Big Brother (Croatia)', 'HR', now()), +(23575, 'Big Brother (Czech Republic)', 'CZ', now()), +(23576, 'Big Brother (Denmark)', 'DK', now()), +(23577, 'Gran Hermano Famosos', 'AR', now()), +(23578, 'Celebrity Big Brother for Charity Live', 'AU', now()), +(23579, 'Big Brother VIPS (Belgium)', 'BE', now()), +(23580, 'Big Brother All Stars', 'BE', now()), +(23581, 'Celebrity Big Brother (Croatia)', 'HR', now()), +(23582, 'Big Brother VIP (Denmark)', 'DK', now()), +(23583, 'Big Brother Reality All-Stars', 'DK', now()), +(23584, 'Secret Story', 'FR', now()), +(23585, 'Big Brother (Greece)', 'GR', now()), +(23586, 'Big Brother Nagy Testvér', 'HU', now()), +(23587, 'Big Brother VIP (Hungary)', 'HU', now()), +(23588, 'Ha''Ach Ha''Gadol', 'IL', now()), +(23589, 'HaAh Hagadol VIP', 'IL', now()), +(23590, 'Grande Fratello', 'IT', now()), +(23591, 'Big Brother: México', 'MX', now()), +(23592, 'Big Brother Nigeria', 'NG', now()), +(23593, 'Big Brother Norge', 'NO', now()), +(23594, 'Big Brother: Tilbake I Huset', 'NO', now()), +(23596, 'The Outdoor Room', 'AU', now()), +(23597, 'Big Brother (Poland)', 'PL', now()), +(23598, 'Big Brother: Ty Wybierasz', 'PL', now()), +(23599, 'Big Brother VIP (Poland)', 'PL', now()), +(23600, 'Big Brother (Portugal)', 'PT', now()), +(23601, 'Big Brother Famosos', 'PT', now()), +(23602, 'Big Brother (Romania)', 'RO', now()), +(23603, 'Большой Брат', 'RU', now()), +(23604, 'Big Brother - Norge vs. Sverige', 'NO', now()), +(23605, 'Big Brother Súboj', 'SK', now()), +(23606, 'Big Brother (Slovenia)', 'SI', now()), +(23607, 'Celebrity Big Brother (South Africa)', 'ZA', now()), +(23608, 'Gran Hermano (Spain)', 'ES', now()), +(23609, 'Gran Hermano VIP (Spain)', 'ES', now()), +(23610, 'Big Brother Sverige', 'SE', now()), +(23611, 'Big Brother Stjärnveckan', 'SE', now()), +(23612, 'Big Brother Schweiz', 'CH', now()), +(23613, 'Big Brother: The Boss', 'SA', now()), +(23614, 'Gran Hermano (Ecuador)', 'EC', now()), +(23615, 'Big Brother Thailand', 'TH', now()), +(23616, 'Veliki Brat', 'YI', now()), +(23617, 'Veliki Brat VIP', 'YI', now()), +(23618, 'Raging Planet', 'US', now()), +(23619, 'P. Diddy''s StarMaker', 'US', now()), +(23620, 'Is It True?', 'US', now()), +(23621, 'Truth Be Told', 'US', now()), +(23622, 'The Power of One', 'AU', now()), +(23623, 'Gillette Soccer Special', 'UK', now()), +(23624, 'Andrew Zimmern''s Bizarre World', 'US', now()), +(23625, 'Walk On The Wild Side', 'UK', now()), +(23626, 'The Cube', 'UK', now()), +(23627, 'Pointless', 'UK', now()), +(23628, 'The Hairy Bikers'' Food Tour of Britain', 'UK', now()), +(23629, 'A Garden in Snowdonia', 'UK', now()), +(23630, 'Future Of Food', 'UK', now()), +(23631, 'Economy Gastronomy', 'UK', now()), +(23632, 'Jul i Svingen', 'NO', now()), +(23633, 'James May On The Moon', 'UK', now()), +(23634, 'James May at the Edge of Space', 'UK', now()), +(23635, 'Rederiet', 'SE', now()), +(23636, 'Australia''s Perfect Couple', 'AU', now()), +(23637, 'Doctor Who Greatest Moments', 'UK', now()), +(23638, 'Marked', 'US', now()), +(23639, 'Nostradamus Effect', 'US', now()), +(23640, 'Backstage', 'UK', now()), +(23641, 'Brighton Beach Patrol', 'UK', now()), +(23642, 'TV Burp Australia', 'AU', now()), +(23643, 'Solved', 'US', now()), +(23644, 'Mad Labs', 'CA', now()), +(23645, 'Life of a Crime', 'US', now()), +(23646, '48 Hours: Hard Evidence', 'US', now()), +(23647, 'Wie is Di-rect?', 'NL', now()), +(23648, 'Hot Spots', 'wd', now()), +(23649, 'Just the Two of Us (NL)', 'NL', now()), +(23650, 'High Times', 'UK', now()), +(23651, 'Sex Rehab with Dr. Drew', 'US', now()), +(23652, 'Taalmeester, De', 'NL', now()), +(23653, 'The Bottom Line', 'US', now()), +(23654, 'Boys & Girls Guide to Getting Down', 'US', now()), +(23655, 'Ghosts/Aliens', 'US', now()), +(23656, 'Midwest Teen Sex Show', 'US', now()), +(23657, 'The Fuzz (2009)', 'US', now()), +(23658, 'Workaholics', 'US', now()), +(23659, 'Gypsy Cab', 'US', now()), +(23660, 'The Invadersteins', 'US', now()), +(23661, 'The Life', 'US', now()), +(23662, 'The Sklar Brothers Sports Comedy Show', 'US', now()), +(23663, 'The Brian McKnight Show', 'US', now()), +(23664, 'Rokdim Im Kochavim', 'IL', now()), +(23665, 'Broke Friends', 'US', now()), +(23666, 'Brooklyn Sound', 'US', now()), +(23667, 'Bunker Hill', 'US', now()), +(23668, 'Call 911', 'US', now()), +(23669, 'Camelot', 'US', now()), +(23670, 'Camping with the In-Laws', 'US', now()), +(23671, 'Verhuizing, De', 'NL', now()), +(23672, 'Carry Me', 'US', now()), +(23673, 'Celebrity Ghost Stories', 'US', now()), +(23674, 'Carter Beats the Devil', 'US', now()), +(23675, 'Celebrity Close Calls', 'US', now()), +(23676, 'The Chairman of Chatsworth', 'US', now()), +(23677, 'Chambermaid', 'US', now()), +(23678, 'Changing Lanes', 'US', now()), +(23679, 'Changing Positions', 'US', now()), +(23680, 'Chef Academy', 'US', now()), +(23681, 'What Chilli Wants', 'US', now()), +(23682, 'Chloe Gamble', 'US', now()), +(23684, 'Confessions of a Contractor', 'US', now()), +(23685, 'Cool Girl Hate Club', 'US', now()), +(23686, 'Covert Affairs', 'US', now()), +(23687, 'Cowboys (2009)', 'US', now()), +(23688, 'The Family Crews', 'US', now()), +(23689, 'Sci Trek', 'UK', now()), +(23690, 'Eurasia', 'FR', now()), +(23691, 'Moordplek', 'NL', now()), +(23692, 'Rivers and Life', 'IN', now()), +(23693, 'Megacities', 'CA', now()), +(23694, 'Caribbean Food Made Easy', 'UK', now()), +(23695, 'Saving Britain''s Past', 'UK', now()), +(23696, 'Marc-Marie Opgenomen', 'NL', now()), +(23697, 'Entertainmentstudios.com', 'US', now()), +(23698, 'Entertainers with Byron Allen', 'US', now()), +(23699, 'The American Athlete', 'US', now()), +(23700, 'The Living Edens', 'US', now()), +(23701, 'Real Estate Intervention', 'US', now()), +(23702, 'Live From Studio Five', 'UK', now()), +(23703, 'Jamie''s American Road Trip', 'UK', now()), +(23704, 'Made in the sixties', 'NL', now()), +(23705, 'Van Duin op z''n best', 'NL', now()), +(30429, 'Hook, Line, and Sisters', 'US', now()), +(23707, 'Weten Zij Veel', 'NL', now()), +(23708, 'Wuthering Heights', 'UK', now()), +(23709, 'Tough Guy or Chicken?', 'UK', now()), +(23710, 'House Gift', 'UK', now()), +(23711, 'The Week We Went To War', 'UK', now()), +(23712, 'Land Girls', 'UK', now()), +(23713, 'Ciske de Rat', 'NL', now()), +(23714, 'Gigglebiz', 'UK', now()), +(23715, 'Lunch Monkeys', 'UK', now()), +(23716, 'Singing Bee (NL)', 'NL', now()), +(23717, 'Geheime dienst, De', 'NL', now()), +(23718, 'Triumph of the Nerds: The Rise of Accidental Empires', 'US', now()), +(23719, 'Team Schrick', 'DE', now()), +(23911, 'Lang Leve De Koningin', 'NL', now()), +(23721, 'Superfetch', 'US', now()), +(23722, '30 For 30', 'US', now()), +(23723, 'Deadbeat Dads', 'US', now()), +(23724, 'Design Sixx', 'US', now()), +(23725, 'Dinner with the Band', 'US', now()), +(23726, 'Don''t Bomb Kuala Lumpur', 'US', now()), +(23727, 'Don''t Trust the B---- in Apartment 23', 'US', now()), +(23728, 'Dorothy Gale', 'US', now()), +(23729, 'In the Bedroom with Dr. Laura Berman', 'US', now()), +(23730, 'The Planners Are Coming', 'UK', now()), +(23731, 'Stars Gone Wild', 'CA', now()), +(23732, 'Opening Soon', 'CA', now()), +(23733, 'Een tuin vol vogels', 'NL', now()), +(23734, 'Eco Crime Investigators', 'US', now()), +(23736, 'Eric B', 'US', now()), +(23737, 'Evan and Gareth Are Trying to Get Laid', 'US', now()), +(23738, 'Everybody Hurts', 'US', now()), +(23739, 'Excellent Adventure', 'US', now()), +(23740, 'Extreme Forensics', 'US', now()), +(23741, 'Extreme To Mainstream', 'US', now()), +(23742, 'What Katie Did Next', 'UK', now()), +(23743, 'Big Brother After Dark', 'US', now()), +(23744, 'Guardians of Nature', 'UK', now()), +(23745, 'Typisch RTL', 'NL', now()), +(23746, 'Zij gelooft in mij', 'NL', now()), +(23747, 'Grease: The School Musical', 'UK', now()), +(23748, 'Varen & Zo', 'NL', now()), +(23749, 'Hollandse wereldwonderen', 'NL', now()), +(23750, 'Brainstorm', 'NL', now()), +(23751, 'Hall of Fame', 'NL', now()), +(23752, 'Gangmakers', 'NL', now()), +(23753, 'Blikvoer', 'NL', now()), +(23754, 'Comedy Corner', 'NL', now()), +(23755, 'Lottery Changed My Life', 'US', now()), +(23756, 'Geven en nemen', 'NL', now()), +(23757, 'Video Generation', 'NL', now()), +(23758, 'En ga zo maar door', 'NL', now()), +(23759, 'Comedy at work', 'NL', now()), +(23760, 'Herrie Gezocht', 'NL', now()), +(23761, 'Andre Rieu op het Vrijthof', 'NL', now()), +(23762, 'Geld Speelt Geen Rol', 'NL', now()), +(23763, 'School voor reality-tv', 'NL', now()), +(23764, 'Gifkikkers', 'NL', now()), +(23765, 'Met niets begonnen', 'NL', now()), +(23766, 'Ik weet wat jij deed', 'NL', now()), +(23767, 'Bubbel, De', 'NL', now()), +(23768, 'Henry van Loon Entertainment show, De', 'NL', now()), +(23769, 'Vermist', 'NL', now()), +(23770, 'Laat me niet lachen', 'NL', now()), +(23771, 'Kamikaze tv', 'NL', now()), +(23772, 'Buurt op stelten', 'NL', now()), +(23773, 'VH1 Divas', 'US', now()), +(23774, 'Joanna Lumley - Catwoman', 'UK', now()), +(23775, 'Last Chance to See', 'UK', now()), +(23776, 'Clever v Stupid', 'UK', now()), +(23777, 'Lost Land of the Volcano', 'UK', now()), +(23778, 'The Big Food Fight', 'UK', now()), +(23779, 'Nigel Slater''s Simple Suppers', 'UK', now()), +(23780, 'Cowboy Trap', 'UK', now()), +(23781, 'Leeds International Pianoforte Competition', 'UK', now()), +(23782, 'My Almost Famous Family', 'UK', now()), +(23783, 'The Frankincense Trail', 'UK', now()), +(23784, 'Farmer Wants a Wife', 'UK', now()), +(23785, 'Films & Stars', 'NL', now()), +(23786, 'Editie NL', 'NL', now()), +(23787, 'Dancing Tweens', 'US', now()), +(23788, 'Jeremy Clarkson Meets the Neighbours', 'UK', now()), +(23789, 'Deadly Women', 'US', now()), +(23790, 'Netwerk', 'NL', now()), +(23791, 'Jeugdjournaal', 'NL', now()), +(23792, 'Penoza', 'NL', now()), +(23793, 'Wannahaves', 'NL', now()), +(23794, 'Lava-Lava!', 'FR', now()), +(23795, 'Football Behind Bars', 'UK', now()), +(23796, 'The World''s Strictest Parents', 'UK', now()), +(23797, 'Cowboy Customers', 'UK', now()), +(23798, 'Dating In The Dark (UK)', 'UK', now()), +(23799, 'City Folk', 'NL', now()), +(23800, 'Sexy Girl', 'CA', now()), +(23801, 'Mud, Sweat and Tractors: The Story of Agriculture', 'UK', now()), +(23802, 'Sorry Minister', 'NL', now()), +(23803, 'Koopkracht', 'NL', now()), +(23804, 'Vakantiedokter, De', 'NL', now()), +(23807, 'TROS TV Show', 'NL', now()), +(23808, 'Een klasse apart - vijf jaar later', 'NL', now()), +(23809, 'School of Silence', 'UK', now()), +(23810, 'Eternelle', 'FR', now()), +(23811, 'En Ängels Tålamod', 'SE', now()), +(23812, 'Design For Life', 'UK', now()), +(23813, 'Comedians of Chelsea Lately', 'US', now()), +(23814, 'Vice Squad (UK)', 'UK', now()), +(23815, 'Trinity (UK)', 'UK', now()), +(23816, 'Make Me a Supermodel (AU)', 'AU', now()), +(23817, 'Nyan Koi!', 'JP', now()), +(23818, 'Kämpfer', 'JP', now()), +(23819, 'Sylvana’s Choice', 'NL', now()), +(23820, 'Nederland in New York', 'NL', now()), +(23821, 'Is TV Dead', 'UK', now()), +(23822, 'Comedy Showcase', 'UK', now()), +(23823, 'RollBots', 'CA', now()), +(23824, 'Animal 24:7', 'UK', now()), +(23825, 'Kanaal 13', 'NL', now()), +(23826, 'Abeltje', 'NL', now()), +(23827, '30 Seconds', 'AU', now()), +(20989, 'Hetalia - Axis Powers', 'JP', now()), +(23828, 'Tweeling, De', 'NL', now()), +(23829, 'Beagle: in het kielzog van Darwin', 'NL', now()), +(23830, 'Tijd voor MAX', 'NL', now()), +(23831, 'Weet Wat Je Koopt', 'NL', now()), +(23832, 'Kamphues over de Kop', 'NL', now()), +(23833, 'Project Catwalk (NL)', 'NL', now()), +(23834, 'SOS Verbouwing', 'NL', now()), +(23835, 'Alice (2009)', 'US', now()), +(23836, 'Kevin McCloud''s Grand Tour of Europe', 'UK', now()), +(23837, 'Atlantic Convoys: The War at Sea', 'UK', now()), +(23838, 'Meet The Hasselhoffs', 'UK', now()), +(23839, 'Tatakau Shisho: The Book of Bantorra', 'JP', now()), +(23840, 'Derren Brown: The Events', 'UK', now()), +(23841, 'The Day Before', 'US', now()), +(23842, 'Crash (UK)', 'UK', now()), +(23843, 'Dragon''s Den - On Line', 'UK', now()), +(23844, 'To Aru Kagaku no Railgun', 'JP', now()), +(23845, 'Seiken no Blacksmith', 'JP', now()), +(23846, 'Home Time', 'UK', now()), +(23847, 'Off The Hook', 'UK', now()), +(23848, 'Ross Noble''s Australian Trip', 'UK', now()), +(23849, 'Mega Beasts', 'US', now()), +(23850, 'Music Idol', 'BG', now()), +(23851, 'Chuggington', 'UK', now()), +(23852, 'How London Was Built', 'UK', now()), +(23853, 'Secret America', 'US', now()), +(23854, 'Jongens Veerman, De', 'NL', now()), +(23855, '15, De', 'NL', now()), +(23856, 'What''s Really in our Food', 'UK', now()), +(23857, 'New York Connection, The', 'NL', now()), +(23858, 'Kist, De', 'NL', now()), +(23859, 'BrzydUla', 'PL', now()), +(23860, '39 i pół', 'PL', now()), +(23861, 'Klootwijk aan Zee', 'NL', now()), +(23862, 'Een nieuwe generatie filmactrices', 'NL', now()), +(23863, 'NOVA/Den Haag Vandaag', 'NL', now()), +(23864, 'De Avond van ...', 'NL', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(23865, 'New Kids', 'NL', now()), +(23866, 'Ruth Watson''s Hotel Rescue', 'UK', now()), +(23867, 'Wild Welsh Zoo', 'UK', now()), +(23868, 'Il Capo dei Capi', 'IT', now()), +(23869, 'The New Adventures of Black Beauty (1992)', 'AU', now()), +(23870, 'I Can Cook', 'UK', now()), +(23871, 'Pleisterkade 17', 'NL', now()), +(23872, 'Monster Moves', 'UK', now()), +(23873, 'Fangavaktin', 'IS', now()), +(23874, 'American Journal', 'US', now()), +(23875, 'The Fit Farm', 'UK', now()), +(23876, 'Pick Your Brain', 'US', now()), +(23877, 'Britain''s Ugliest Models', 'UK', now()), +(23878, 'Baby Races', 'US', now()), +(23879, 'English Premier League Soccer', 'UK', now()), +(23880, 'The Charles Perez Show', 'US', now()), +(23881, 'Shopping Spree', 'US', now()), +(23882, 'Inside Report', 'US', now()), +(23883, 'Debt', 'US', now()), +(23884, 'That''s My Dog!', 'US', now()), +(23885, 'The People''s Court (UK)', 'UK', now()), +(23886, 'The Nest', 'AU', now()), +(23887, 'Weird Connections', 'US', now()), +(23888, 'World''s Most Amazing Videos', 'US', now()), +(23889, 'Roast på Berns', 'SE', now()), +(23890, 'Familie van der Ploeg', 'NL', now()), +(23891, 'Die Oliver Pocher Show', 'DE', now()), +(23892, 'Harald Schmidt (2009)', 'DE', now()), +(23893, 'Wait for It..!', 'UK', now()), +(23894, 'Merlin Secrets and Magic', 'UK', now()), +(23895, 'Bij ons in de BV', 'NL', now()), +(23896, 'Highway Patrol (AU)', 'AU', now()), +(23897, 'Electric Dreams', 'UK', now()), +(23898, '4Me', 'NL', now()), +(23899, 'Survivor (BG)', 'BG', now()), +(23900, 'To Catch A Paedophile', 'UK', now()), +(23901, 'The Dream Merchants', 'US', now()), +(23902, 'Romanzo criminale', 'IT', now()), +(23903, 'Emma', 'UK', now()), +(23904, 'Svenska Hollywoodfruar', 'SE', now()), +(23905, 'Ghost Lab', 'US', now()), +(23906, 'Familie Oudenrijn, De', 'NL', now()), +(23907, 'J.J. de Bom voorheen ''De Kindervriend''', 'NL', now()), +(23908, 'Tarrant Lets The Kids Loose', 'UK', now()), +(23909, 'Costas Garden Odyssey', 'AU', now()), +(23910, 'The Cult', 'NZ', now()), +(23912, 'Peter Andre: The Next Chapter', 'UK', now()), +(23913, 'Rescue Ink Unleashed', 'US', now()), +(23914, 'Rodneys Robot Revolution', 'AU', now()), +(23915, 'Great Lodges', 'US', now()), +(23916, 'Física o Química', 'ES', now()), +(23917, 'Autumnwatch Unsprung', 'UK', now()), +(23918, 'Weird, True & Freaky', 'US', now()), +(23919, 'BBC Predators', 'UK', now()), +(23920, 'Billy Connolly''s World Tour of Australia', 'UK', now()), +(23921, 'Health Angels', 'NL', now()), +(23922, 'Enkele Reis Paradijs', 'NL', now()), +(23923, 'Just Another Day', 'UK', now()), +(23924, 'Erik of het klein insectenboek', 'NL', now()), +(23925, 'The Poker Star', 'AU', now()), +(23926, 'PokerStars.net Million Dollar Challenge', 'US', now()), +(23927, 'The Shift', 'US', now()), +(23928, 'King of the Crown', 'US', now()), +(23929, 'Smash Cuts', 'US', now()), +(23930, 'Let''s Make A Deal (2009)', 'US', now()), +(23931, 'Designing The Decades', 'UK', now()), +(23932, 'Disaster Date', 'US', now()), +(23933, 'Popstars: De Wildcard', 'NL', now()), +(23934, 'Slag bij Nieuwpoort', 'NL', now()), +(23935, 'Atashinchi no Danshi', 'JP', now()), +(23936, 'The Dr. Oz Show', 'US', now()), +(23937, 'Top Chef VIPS', 'NL', now()), +(23938, 'Gandhi', 'UK', now()), +(23939, 'Big Trouble In Thailand', 'UK', now()), +(23940, 'Charlie Brooker''s Gameswipe', 'UK', now()), +(23941, 'Return to Pembrokeshire Farm', 'UK', now()), +(23942, 'School of Comedy', 'UK', now()), +(23943, 'Restaurant in Our Living Room', 'UK', now()), +(23944, 'World War II: Behind Closed Doors', 'UK', now()), +(23945, 'The War That Made America', 'US', now()), +(23946, 'Life on Top', 'US', now()), +(23947, 'Lingerie', 'US', now()), +(23948, 'GTK', 'AU', now()), +(23949, 'Around The World In 80 Days (2009)', 'UK', now()), +(23950, 'Joan Does Glamour', 'UK', now()), +(23951, 'The Force', 'UK', now()), +(23952, 'Dishing the Dirt', 'UK', now()), +(23953, 'Episodes', 'US', now()), +(23954, 'Daredevils', 'UK', now()), +(23955, 'Erotic Confessions', 'US', now()), +(23956, 'Level 3', 'AU', now()), +(23957, 'ADbc', 'AU', now()), +(23958, 'An Aussie Goes Bolly', 'AU', now()), +(23959, 'Angels in New York', 'AU', now()), +(23960, 'Animal Emergency', 'AU', now()), +(23961, 'Noord-Hollandse Helden', 'NL', now()), +(23962, 'Crooked', 'AU', now()), +(23963, 'Dance Academy', 'AU', now()), +(23964, 'Rescue', 'AU', now()), +(23965, 'Wall of Death', 'AU', now()), +(23966, 'Dusty (2009)', 'AU', now()), +(23967, 'Hungry Beast', 'AU', now()), +(23968, 'John Safran’s Race Relations', 'AU', now()), +(23969, 'No Signal', 'UK', now()), +(23970, 'Ushi & The Family', 'NL', now()), +(23971, 'Levenslied', 'NL', now()), +(23972, 'Law and Disorder (2009)', 'AU', now()), +(23973, 'Lowdown', 'AU', now()), +(23974, 'My Place', 'AU', now()), +(23975, 'TI Taxi', 'AU', now()), +(23976, 'Dave in the Life', 'AU', now()), +(23977, 'Double Take (2009)', 'AU', now()), +(23978, 'The Jesters', 'AU', now()), +(23979, 'The Urban Monkey with Murray Foote', 'AU', now()), +(23980, 'The Squiz', 'AU', now()), +(23981, 'Alive and Cooking', 'AU', now()), +(23982, 'The Boat Show', 'AU', now()), +(23983, 'The Car Show', 'AU', now()), +(23984, 'Coxy''s Big Break', 'AU', now()), +(23985, 'Do It', 'AU', now()), +(23986, 'Domestic Blitz', 'AU', now()), +(23987, 'Fishing Australia', 'AU', now()), +(23988, 'Mercurio''s Menu', 'AU', now()), +(23989, 'My Family Feast', 'AU', now()), +(23990, 'Postcards', 'AU', now()), +(23991, '10 Years Younger In 10 Days', 'AU', now()), +(23992, 'Battle of the Choirs', 'AU', now()), +(23993, 'Good Luck Charlie', 'US', now()), +(23994, 'In Memory of Maia', 'AU', now()), +(23995, 'The Cut (2009)', 'AU', now()), +(23996, 'Zigby', 'AU', now()), +(23997, 'Figaro Pho', 'AU', now()), +(23998, 'Fanging It', 'AU', now()), +(23999, 'CJ the DJ', 'AU', now()), +(24000, 'Alaska State Troopers', 'US', now()), +(24001, 'Penguin Island', 'UK', now()), +(24003, 'The Pam Ann Show', 'AU', now()), +(24004, 'Anatomy', 'AU', now()), +(24005, 'Dirtgirl World', 'AU', now()), +(24006, 'Beauty and the Geek Australia', 'AU', now()), +(24007, 'Dogstar', 'AU', now()), +(24008, 'I Got A Rocket', 'AU', now()), +(24009, 'Guerrilla Gardeners', 'AU', now()), +(24010, 'Triple Zero Heroes', 'AU', now()), +(24011, 'Food Investigators', 'AU', now()), +(24012, 'Gangs of Oz', 'AU', now()), +(24013, 'Guide to the Good Life', 'AU', now()), +(24014, 'Air Ways', 'AU', now()), +(24015, 'Last Chance Surgery', 'AU', now()), +(24016, 'All Worked Up', 'US', now()), +(24017, 'My Kitchen Rules', 'AU', now()), +(24018, 'Dancing About Architecture', 'AU', now()), +(24019, 'Footy Classified', 'AU', now()), +(24020, 'Studio A', 'AU', now()), +(24021, 'The Bazura Project', 'AU', now()), +(24022, 'Whatever Happened to That Guy?', 'AU', now()), +(24023, 'The New Black', 'AU', now()), +(24024, '3 Acts of Murder', 'AU', now()), +(24025, 'Bondi Vet', 'AU', now()), +(24026, 'Bush Doctors', 'AU', now()), +(24027, 'K9 Cops', 'US', now()), +(24028, 'America''s Wild Spaces', 'US', now()), +(24029, 'Celebrity MasterChef Australia', 'AU', now()), +(24030, 'The Mo''Nique Show', 'US', now()), +(24031, 'NL Test', 'NL', now()), +(24032, 'NCRV Dokument', 'NL', now()), +(24033, 'Podium', 'NL', now()), +(24034, 'Leave It To Lamas', 'US', now()), +(24035, 'Styl''d', 'US', now()), +(24036, 'Ultimate Parkour Challenge', 'US', now()), +(24037, 'Raus aus den Schulden', 'DE', now()), +(24038, 'Rach, der Restauranttester', 'DE', now()), +(24039, 'Extreme Paranormal', 'US', now()), +(24040, 'Fat Men Can''t Hunt', 'UK', now()), +(24041, 'Rad van Fortuin (2009)', 'NL', now()), +(24042, 'Murderland', 'UK', now()), +(24043, '7 Days on the Breadline', 'UK', now()), +(24044, 'Valens Frokost-TV', 'NO', now()), +(24045, 'Food Factory', 'UK', now()), +(24046, 'Art Deco Icons', 'UK', now()), +(24047, 'The Apprentice (IRE)', 'IE', now()), +(24048, 'An Inconvenient Woman', 'US', now()), +(24049, 'I''m Alive', 'US', now()), +(24050, 'Britain''s Best Brain', 'UK', now()), +(24051, 'Seitokai no Ichizon', 'JP', now()), +(24052, 'Leukste Dorp van Nederland, Het', 'NL', now()), +(24053, 'In Naam Der Koningin', 'NL', now()), +(24054, 'Who Wants to Be a Millionaire: Hot Seat', 'AU', now()), +(24055, 'Industrial Junkie', 'UK', now()), +(24056, 'Colossal construction', 'US', now()), +(24057, 'Travel Channel Extreme', 'US', now()), +(24058, 'Tegami Bachi', 'JP', now()), +(24059, 'Chi vuol essere milionario?', 'IT', now()), +(24060, 'EénVandaag', 'NL', now()), +(24061, 'First Tuesday Book Club', 'AU', now()), +(24062, 'Dallas Divas & Daughters', 'US', now()), +(24063, 'Chi vuol essere milionario? - Edizione Straordinaria', 'IT', now()), +(24064, 'Vil du bli millionær?', 'NO', now()), +(24065, 'Heavy Metal Task Force', 'US', now()), +(24066, 'The Apprentice (AU)', 'AU', now()), +(24067, 'Who Wants to Be a Super Millionaire', 'US', now()), +(24068, 'Suok Ghwari Chi Shi Millonar?', 'AF', now()), +(24069, 'Man sa yarbah al malyoon', 'DZ', now()), +(24070, 'Quem quer ser milionário?', 'AO', now()), +(24072, '¿Quién quiere ser Millonario?', 'AR', now()), +(24073, 'Ո՞վ է ուզում դառնալ միլիոնատեր', 'AM', now()), +(24074, 'Alles ist möglich - Die 10-Millionen-Show', 'AT', now()), +(24075, 'Die Millionenshow', 'AT', now()), +(24076, 'Lente loco', 'US', now()), +(24077, 'Vertical City', 'UK', now()), +(24078, 'Prehistoric Predators', 'US', now()), +(24079, 'Dövletli olmaq isterdinmi milyonçu', 'AZ', now()), +(24080, 'Weird Nature', 'UK', now()), +(24081, 'Qui sera millionnaire?', 'BE', now()), +(24082, 'Wie wordt euromiljonair?', 'BE', now()), +(24083, 'Quem quer ser um milionário?', 'BR', now()), +(24084, 'Стани богат', 'BG', now()), +(24085, 'Who Wants to Be a Millionaire: Canadian Edition', 'CA', now()), +(24086, '¿Quién merece ser millonario?', 'CL', now()), +(24087, 'Bǎi Wàn Zhì Duō Xīng', 'CN', now()), +(24088, '¿Quién quiere ser millonario? (CO)', 'CO', now()), +(24089, '¿Quién quiere ser millonario? (CR)', 'CR', now()), +(24090, 'Tko želi biti milijunaš?', 'HR', now()), +(24091, 'Poios thelei na ginei ekatommyriouchos', 'CY', now()), +(24092, 'Chcete být milionářem?', 'CZ', now()), +(24093, 'Milionář', 'CZ', now()), +(24094, 'Hvem vil være millionær?', 'DK', now()), +(24095, 'Kes tahab saada miljonäriks?', 'EE', now()), +(24096, '¿Quién quiere ser millonario? (EC)', 'EC', now()), +(24097, 'Haluatko miljonääriksi?', 'FI', now()), +(24098, 'Qui Veut Gagner des Millions?', 'FR', now()), +(24099, 'Wer wird Millionär? (CH)', 'CH', now()), +(24100, 'Who Wants to Be Rich?', 'GH', now()), +(24101, 'Poios thelei na ginei ekatommyriouchos (GR)', 'GR', now()), +(24102, 'Baak Maan Fu Yung', 'HK', now()), +(24103, 'Legyen Ön is milliomos!', 'HU', now()), +(24104, 'Mi Rotzeh Lihyot Milyoner?', 'IL', now()), +(24105, 'Kuizu $ Mirionea', 'JP', now()), +(24106, 'Кто возьмёт миллион?', 'KZ', now()), +(24107, 'Gribi but miljonars?', 'LV', now()), +(24108, 'Kas laimės milijoną?', 'LT', now()), +(24109, 'Koj saka da bide milioner?', 'MK', now()), +(24110, 'Bai Wan Fu Weng', 'MY', now()), +(24111, 'Lotto Weekend Miljonairs', 'NL', now()), +(24112, 'Who Wants to Be a Millionaire? (NG)', 'NG', now()), +(24113, 'Wer hat Angst vorm schwarzen Mann?', 'DE', now()), +(24114, 'Je eigen droomhuis', 'NL', now()), +(24115, 'Inuyasha Kanketsu-hen', 'JP', now()), +(24116, 'I ROCK', 'AU', now()), +(24117, 'Strictly Speaking', 'AU', now()), +(24119, 'Sleuth 101', 'AU', now()), +(24139, 'Fearne And...', 'UK', now()), +(24121, 'Forza Driving School', 'NL', now()), +(24122, 'RTL Jobexperience', 'NL', now()), +(24123, 'Want elk graf heeft zijn verhaal', 'NL', now()), +(24124, 'Helemaal Heppie', 'NL', now()), +(24125, 'Zo Vader Zo Puberzoon', 'NL', now()), +(24126, 'World''s Deadliest Animals', 'US', now()), +(24127, 'Kya Aap Banaingay Crorepati?', 'PK', now()), +(24128, 'Vis Unda 20000?', 'GE', now()), +(24129, 'Who wants to be a millionaire? (ID)', 'ID', now()), +(24130, 'Super Milyarder 3 Milyar', 'ID', now()), +(24131, 'Who Wants to Be a Millionaire? (KE)', 'KE', now()), +(24132, 'Milionerzy', 'PL', now()), +(24133, 'Quem quer ser milionário? (PT)', 'PT', now()), +(24134, 'Vrei sa fii miliardar?', 'RO', now()), +(24135, 'О, счастливчик!', 'RU', now()), +(24136, 'Кто хочет стать миллионером?', 'RU', now()), +(24137, 'Želite li da postanete milioner?', 'YI', now()), +(24138, 'Craft In America', 'US', now()), +(24140, 'Russell Howard''s Good News', 'UK', now()), +(24141, 'Darwin''s Brave New World', 'AU', now()), +(24142, 'Kid Detectives', 'AU', now()), +(24143, 'Darwin''s Lost Paradise', 'AU', now()), +(24144, 'Rogue Nation', 'AU', now()), +(24145, 'Ultimate Peril', 'US', now()), +(24146, 'Who wants to be a millionaire? (SG)', 'SG', now()), +(24147, 'Milionár (SK)', 'SK', now()), +(24148, 'Lepo je biti milijonar - Kviz z Jonasom', 'SI', now()), +(24149, 'Lepo je biti milijonar', 'SI', now()), +(24150, 'Milijonar z Jonasom', 'SI', now()), +(24151, 'Who wants to be a millionaire? (ZA)', 'ZA', now()), +(24152, '¿Quiere ser millonario? 50 por 15', 'ES', now()), +(24153, 'Postkodmiljonären', 'SE', now()), +(24154, 'Dont Get Screwed', 'UK', now()), +(24155, 'Ray Mears Northern Wilderness', 'UK', now()), +(24156, 'James May''s Toy Stories', 'UK', now()), +(24157, 'Andrew Marr''s The Making of Modern Britain', 'UK', now()), +(24158, '¿Quién quiere ser millonario? (ES)', 'ES', now()), +(24159, 'Chao ji da fu weng', 'TW', now()), +(24160, 'Who Wants to Be a Millionaire? (TH)', 'TH', now()), +(24161, 'Kim 500 (besyüz) milyar ister?', 'TR', now()), +(24162, 'Kim 500 (besyüz) bin ister?', 'TR', now()), +(24163, 'Хто хоче стати мiльйонером? - Перший мільйон', 'UA', now()), +(24164, '¿Quién quiere ser millonario? (VE)', 'VE', now()), +(24165, 'False Witness', 'AU', now()), +(24166, 'Whatever! The Science of Teens', 'AU', now()), +(24167, 'Lush House', 'AU', now()), +(24168, 'Mall Cops', 'US', now()), +(24169, 'First Australians', 'AU', now()), +(24170, 'Torsdag kveld fra Nydalen', 'NO', now()), +(24171, 'Lobstermen', 'US', now()), +(24172, 'Ghost Stories (US 2009)', 'US', now()), +(24173, 'The League', 'US', now()), +(24174, 'Charles Darwin and the Tree of Life', 'UK', now()), +(24175, 'Guns, Germs and Steel', 'US', now()), +(24176, 'Dare I Ask?', 'AU', now()), +(24177, 'Hole in the Wall (AU)', 'AU', now()), +(24178, '¿Quién quiere ser millonario? (PA)', 'PA', now()), +(24179, '¿Quién quiere ser millonario? (PE)', 'PE', now()), +(24180, '¿Quién quiere ser millonario? (UY)', 'UY', now()), +(24181, 'El muro infernal', 'AR', now()), +(24182, 'De cara no muro', 'BR', now()), +(24183, 'La muralla infernal', 'CL', now()), +(24184, 'Moving Hole Wall', 'CN', now()), +(24185, 'Pazi, zid!', 'HR', now()), +(24186, 'Duro contra el muro', 'CO', now()), +(24187, 'Hole in the Wall (BE)', 'BE', now()), +(24188, 'Дупка в Стената', 'BG', now()), +(24189, 'Hul i hovedet', 'DK', now()), +(24190, 'Auk Seinas', 'EE', now()), +(24191, 'Reikä seinässä', 'FI', now()), +(24192, 'Le Mur Infernal', 'FR', now()), +(24193, 'Ab Durch die Wand', 'DE', now()), +(24194, 'Hole in the wall (HK)', 'HK', now()), +(24195, 'Kalandra Fal!', 'HU', now()), +(24196, 'Hole in the Wall (IN)', 'IN', now()), +(24197, 'Hole in the Wall (ID)', 'ID', now()), +(24198, 'Rosh Bakir', 'IL', now()), +(24199, 'Hole in the Wall (IT)', 'IT', now()), +(24200, 'Hole in the Wall (LT)', 'LT', now()), +(24201, 'Bolos', 'MY', now()), +(24202, 'Aguas con el muro', 'MX', now()), +(24203, 'Ylvis møter veggen', 'NO', now()), +(24204, 'Tecsuperate', 'PE', now()), +(24205, 'Hole in the wall (PH)', 'PH', now()), +(24206, 'Hole in the Wall (PL)', 'PL', now()), +(24207, 'Salve-se Quem Puder', 'PT', now()), +(24208, 'Le mur', 'CA', now()), +(24209, 'Vedete-n Figuri', 'RO', now()), +(24210, 'American Short Story', 'US', now()), +(24211, 'Стенка на стенку', 'RU', now()), +(24212, 'El Muro Infernal (ES)', 'ES', now()), +(24213, '10 Count', 'US', now()), +(24214, 'Re:Evolution of Sports', 'US', now()), +(24215, 'GMTV2', 'UK', now()), +(24216, 'Bait Car', 'US', now()), +(24217, 'U.S. Marshals: Operation Falcon', 'US', now()), +(24218, 'El muro', 'PY', now()), +(24219, 'Nick Baker''s Weird Creatures', 'US', now()), +(24220, 'Chatroom Chicks', 'AU', now()), +(24221, 'The Slap', 'AU', now()), +(24222, 'Spirited', 'AU', now()), +(24223, 'Active Kidz', 'AU', now()), +(24224, 'Master Raindrop', 'AU', now()), +(24225, 'Pyramid (2009)', 'AU', now()), +(24226, 'RTL Snowmagazine', 'NL', now()), +(24227, 'Top 20 Most Shocking', 'US', now()), +(24228, 'G2G: Got to Go!', 'AU', now()), +(24229, 'The Kingdom of Paramithi', 'AU', now()), +(24230, 'Lockie Leonard', 'AU', now()), +(24231, 'Playhouse Disney', 'AU', now()), +(24232, 'Sarvo', 'AU', now()), +(24233, 'The Shak', 'AU', now()), +(24234, 'Sharky''s Friends', 'AU', now()), +(24235, 'DNA', 'US', now()), +(24236, 'Bring Back...', 'UK', now()), +(24237, 'Six Degrees Could Change the World', 'UK', now()), +(24238, '10 Things You Need To Know About Sleep', 'UK', now()), +(24239, 'Garrow''s Law: Tales From The Old Bailey', 'UK', now()), +(24240, 'The Impressions Show with Culshaw and Stephenson', 'UK', now()), +(24241, 'Pamela Anderson: At Home With Joe', 'UK', now()), +(24242, 'Paul Rosenmöller en de val van de muur', 'NL', now()), +(24243, 'Grote Bijbelquiz, De', 'NL', now()), +(24244, 'Wat doen we met de erfenis?', 'NL', now()), +(24245, 'Geluk in uitvoering', 'NL', now()), +(24246, 'Stop de tijd', 'NL', now()), +(24247, 'I''m With Stupid (US)', 'US', now()), +(24248, 'Snake Tales', 'AU', now()), +(24249, 'Time Trackers', 'AU', now()), +(24250, 'Trapped (AU)', 'AU', now()), +(24251, 'The Adventures of Bottle Top Bill and His Best Friend Corky', 'AU', now()), +(24252, 'Outback Wildlife Rescue', 'AU', now()), +(24253, 'Christianity: A History', 'UK', now()), +(24254, 'Culture Fix', 'UK', now()), +(24255, 'Inside Life', 'UK', now()), +(24256, 'A History Of Christianity', 'UK', now()), +(24257, 'It Only Hurts When I Laugh', 'US', now()), +(24258, 'Atom', 'UK', now()), +(24259, 'Chi''s New Address', 'JP', now()), +(24260, '11eyes -Tsumi to Batsu to Aganai no Shoujo-', 'JP', now()), +(24261, 'To Build or Not to Build', 'UK', now()), +(24262, 'Regelrecht', 'NL', now()), +(24263, 'Angela and Friends', 'UK', now()), +(24264, 'Sell Me The Answer', 'UK', now()), +(24265, 'Nature Tech', 'US', now()), +(24266, 'Sea Patrol UK', 'UK', now()), +(24267, 'Surprise Inspection', 'US', now()), +(24268, 'Dangerous Encounters With Brady Barr', 'US', now()), +(24269, 'Aqua Kids', 'US', now()), +(24270, 'Popstars (AU)', 'AU', now()), +(24271, 'Royal Flying Doctor Service', 'AU', now()), +(24272, 'Search and Rescue (AU)', 'AU', now()), +(24273, 'Who Do You Think You Are? (AU)', 'AU', now()), +(24274, 'World''s Strictest Parents (AU)', 'AU', now()), +(24275, 'Ai Shite Night', 'JP', now()), +(24276, 'Hook, Line and Sinker', 'AU', now()), +(24277, 'Melbourne Weekender', 'AU', now()), +(24278, 'Chartbusting 80s', 'AU', now()), +(24279, 'Live ''N Local Up Close', 'AU', now()), +(24280, 'The Music Jungle', 'AU', now()), +(24281, 'Morgenmagazin', 'DE', now()), +(24282, 'Turn It Up! (AU)', 'AU', now()), +(24283, 'Mario''s Green House', 'US', now()), +(24284, 'Life After', 'US', now()), +(24285, '13 in de Oorlog', 'NL', now()), +(24286, 'Oorlog, De', 'NL', now()), +(24287, 'Enclave, De', 'NL', now()), +(24288, 'Fairy Tail', 'JP', now()), +(24289, 'The Scots Who Made the Modern World', 'UK', now()), +(24290, 'Wormwood', 'AU', now()), +(24291, 'No Excuses With Master P', 'US', now()), +(24292, 'Stories From The Vaults', 'US', now()), +(24293, 'Kamen Rider 555', 'JP', now()), +(24294, 'Kamen Rider Kuuga', 'JP', now()), +(24295, 'Kamen Rider Agito', 'JP', now()), +(24296, 'Kamen Rider Ryuki', 'JP', now()), +(24297, 'Kamen Rider Blade', 'JP', now()), +(24298, 'Kamen Rider Hibiki', 'JP', now()), +(24299, 'Kamen Rider Kabuto', 'JP', now()), +(24300, 'Kamen Rider Den-O', 'JP', now()), +(24301, 'Kamen Rider Kiva', 'JP', now()), +(24302, 'Kamen Rider Decade', 'JP', now()), +(24303, 'Not All Tea and Scones', 'AU', now()), +(24304, 'Ode aan de Doden', 'NL', now()), +(24305, 'Club van Sinterklaas, De', 'NL', now()), +(24306, 'Verhuizen naar de stilte', 'NL', now()), +(24307, 'Rail Away', 'NL', now()), +(24308, 'Bovenkamer, De', 'NL', now()), +(24309, 'DNA Onbekend', 'NL', now()), +(24310, 'MAX maakt mogelijk', 'NL', now()), +(24311, 'Electric Revolution', 'UK', now()), +(24312, 'Crisis Claims and Cons', 'UK', now()), +(24313, 'Miranda', 'UK', now()), +(24314, 'Collision', 'UK', now()), +(24315, 'Mad about the House', 'UK', now()), +(24316, 'John Sergeant on the Tourist Trail', 'UK', now()), +(24317, 'Ross Kemp Behind the Story', 'UK', now()), +(24318, 'The Season', 'UK', now()), +(24319, 'ITV News Central', 'UK', now()), +(24320, 'Topvrouwen', 'NL', now()), +(24321, 'Body in Numbers', 'US', now()), +(24322, 'Green Report', 'RO', now()), +(24323, 'Magda M.', 'PL', now()), +(24324, 'NZ Smashes Guinness World Records', 'NZ', now()), +(24325, 'Poppenkraam, De', 'NL', now()), +(24326, 'The Real Story', 'US', now()), +(24327, 'Herkansing, De', 'NL', now()), +(24328, 'American Gangs', 'US', now()), +(24329, 'Lost Treasures of the Ancient World', 'US', now()), +(24330, 'Black Coffee', 'CA', now()), +(24331, 'Death In Venice', 'UK', now()), +(24332, 'Monster Swamp', 'US', now()), +(24333, 'Ancients Behaving Badly', 'US', now()), +(24334, 'Evita', 'US', now()), +(24335, 'Valley of the Dolls', 'US', now()), +(24336, 'Code 37', 'BE', now()), +(24337, 'De Rodenburgs', 'BE', now()), +(24338, 'Forbrydelsen', 'DK', now()), +(24339, 'Manden Med De Gyldne Ører', 'DK', now()), +(24340, 'Lulu & Leon', 'DK', now()), +(24341, 'Loose Lips', 'UK', now()), +(24342, 'Rip Off Britain', 'UK', now()), +(24343, 'School Of Saatchi', 'UK', now()), +(24344, 'We Need Answers', 'UK', now()), +(24345, 'Sasameki Koto', 'JP', now()), +(24346, 'Aoi Bungaku Series', 'JP', now()), +(24347, 'Kaidan Restaurant', 'JP', now()), +(24348, 'Berlin', 'UK', now()), +(24349, 'Kiddy Girl-and', 'JP', now()), +(24350, 'Perfecte mens van de 21ste eeuw, De', 'NL', now()), +(24351, 'Kuuchuu Buranko', 'JP', now()), +(24352, 'Boer & Zorg', 'NL', now()), +(24353, 'Knelpunt', 'NL', now()), +(24354, 'Cloudstreet', 'AU', now()), +(24355, 'Dead Normal', 'AU', now()), +(24356, 'After School Care', 'AU', now()), +(24357, 'West Coast Kids', 'AU', now()), +(24358, 'Rush TV', 'AU', now()), +(24359, 'New Idea TV', 'AU', now()), +(24360, 'Larry the Lawnmower', 'AU', now()), +(24361, 'Bush Slam', 'AU', now()), +(24362, 'The Red Dwarf: Back to Earth', 'UK', now()), +(24363, 'Jailbirds', 'AU', now()), +(24364, 'Drugs, Death and Betrayal', 'AU', now()), +(24365, 'Lightning City', 'AU', now()), +(24366, 'Poh''s Kitchen', 'AU', now()), +(24367, 'Cast Offs', 'UK', now()), +(24368, 'The Best Place to Be', 'US', now()), +(24370, 'Class of 2008', 'UK', now()), +(24371, 'Fern Britton Meets...', 'UK', now()), +(24372, 'Kaun Banega Crorepati 2', 'IN', now()), +(24373, '10 Ka Dum', 'IN', now()), +(24374, 'Channel 4 News', 'UK', now()), +(24375, 'WWII in HD', 'US', now()), +(24376, 'The Art Of Russia', 'UK', now()), +(24377, 'Megafactories', 'UK', now()), +(24378, 'Scotland Today', 'UK', now()), +(24379, '12 Canoes', 'AU', now()), +(24380, 'Bombora', 'AU', now()), +(24381, 'Elders With Andrew Denton', 'AU', now()), +(24382, 'Big Brother (FI)', 'FI', now()), +(24383, 'The Airships', 'AU', now()), +(24384, 'Issues with Jane Velez-Mitchell', 'US', now()), +(24385, 'The Joy Behar Show', 'US', now()), +(24386, 'The National Parks: America''s Best Idea', 'US', now()), +(24387, 'Apocalypse: The Second World War', 'US', now()), +(24388, 'Skyview', 'US', now()), +(24389, 'Penguin Adventure with Nigel Marven', 'AU', now()), +(24390, 'Unearthing Ancient Secrets', 'US', now()), +(24391, 'Princess Daisy', 'US', now()), +(24392, 'Mistral''s Daughter', 'US', now()), +(24393, 'The First Olympics: Athens 1896', 'US', now()), +(24394, 'The Adventures of Blinky Bill', 'UK', now()), +(24395, 'Blinky Bill''s Extraordinary Excursion', 'AU', now()), +(24396, 'Blinky Bill’s Extraordinary Balloon Adventure', 'AU', now()), +(24397, 'Fine Line', 'AU', now()), +(24398, 'Carte Blanche', 'ZA', now()), +(24399, 'Q.E.D.: Shômei shûryô', 'JP', now()), +(24400, 'Nazi Art Theft', 'US', now()), +(24401, 'The Queen', 'UK', now()), +(24402, 'The Garfield Show', 'FR', now()), +(24403, 'E-Rotic', 'US', now()), +(24404, 'Mensjesrechten', 'NL', now()), +(24405, 'Addicted to Money', 'IE', now()), +(24406, 'X Femmes', 'FR', now()), +(24407, 'Harirah', 'NL', now()), +(24408, 'Pluijm op pad', 'NL', now()), +(24409, 'Eigen Schuld Dikke Bult', 'NL', now()), +(24410, 'You Want Answers', 'US', now()), +(24411, 'Air Australia', 'AU', now()), +(24412, 'Olivia', 'US', now()), +(24413, 'The Best In Australia', 'AU', now()), +(24414, 'Crash & Burn', 'CA', now()), +(24415, 'BBC4 - Time', 'UK', now()), +(24416, 'Small Island', 'UK', now()), +(24417, 'Living Dangerously (UK)', 'UK', now()), +(24418, 'Can Gerry Robinson Fix Dementia Care', 'UK', now()), +(24419, 'I''m Pregnant And…', 'US', now()), +(24420, 'Mister Eleven', 'UK', now()), +(24421, 'Coastline Cops', 'UK', now()), +(24422, 'Robson Green''s Wild Swimming Adventure', 'UK', now()), +(24423, 'Sci-Fi Science: Physics of the Impossible', 'US', now()), +(24424, 'BBQ Pitmasters', 'US', now()), +(24425, 'Jersey Shore', 'US', now()), +(24426, 'The Jacksons: A Family Dynasty', 'US', now()), +(24427, 'Hunting Chris Ryan', 'UK', now()), +(24428, 'Navy SEALS - BUDS Class 234', 'US', now()), +(24429, 'Ghost Intervention', 'US', now()), +(24430, 'The Haunted (2009)', 'US', now()), +(24431, 'Manhattan Marriage Project with Gino Filippone', 'US', now()), +(24432, 'Critics'' Choice Awards', 'US', now()), +(24433, 'La La Land', 'US', now()), +(24434, 'Move Like Michael Jackson', 'UK', now()), +(24435, 'Flowers Uncut With Jeff Leatham', 'US', now()), +(24436, 'Platinum Babies', 'US', now()), +(24437, 'Everything She Ever Wanted', 'US', now()), +(24438, 'Super Dave''s Spike Tacular', 'US', now()), +(24439, 'The World Magic Awards', 'US', now()), +(24440, 'Happily Ever Faster', 'US', now()), +(24441, 'Cowboys & Outlaws', 'US', now()), +(24442, 'Find My Family (US)', 'US', now()), +(24443, 'Lock N'' Load', 'US', now()), +(24444, 'Soul Train Music Awards', 'US', now()), +(24445, 'Meet the Natives: USA', 'US', now()), +(24446, 'Clash of the Dinosaurs', 'US', now()), +(24447, 'Pit Bulls and Parolees', 'US', now()), +(24448, 'The Tube (1982)', 'UK', now()), +(24449, 'Cool Stuff: How It Works', 'US', now()), +(24450, 'Death Comes to Town', 'CA', now()), +(24451, 'Meisje met de blauwe hoed, Het', 'NL', now()), +(24452, 'David', 'BE', now()), +(24453, 'NOW on PBS', 'US', now()), +(24454, 'Dogs 101/Cats 101', 'US', now()), +(24455, 'Farm Camp', 'UK', now()), +(24456, 'Prins en het Meisje, De', 'NL', now()), +(24457, 'Blackjack', 'AU', now()), +(24458, '10 Jaar Jonger In 10 Dagen', 'NL', now()), +(24459, 'Jamie''s Family Christmas', 'UK', now()), +(24460, 'Catherine voor de Verandering', 'NL', now()), +(24461, 'Republic of Doyle', 'CA', now()), +(24462, 'Wakfu', 'FR', now()), +(24463, 'Cheryl Cole''s Night in', 'UK', now()), +(24464, 'Out of My Depth', 'UK', now()), +(24465, 'Teen Mom', 'US', now()), +(24466, 'Botineras', 'AR', now()), +(24467, 'Rip The Runway', 'US', now()), +(24468, 'BET Hip Hop Awards', 'US', now()), +(24469, 'The BET Honors', 'US', now()), +(24470, 'Dossier BvD! Een terugblik..', 'NL', now()), +(24471, 'Hotnews.nl', 'NL', now()), +(24472, 'Humanly Impossible', 'US', now()), +(24473, 'OZONE Awards', 'US', now()), +(24474, 'Globe Trekker', 'UK', now()), +(24475, 'BCS Selection Show', 'US', now()), +(24476, 'Sports Jobs with Junior Seau', 'US', now()), +(24477, 'Quest for the NASCAR Sprint Cup', 'US', now()), +(24478, '$ports Take', 'US', now()), +(24479, 'World Extreme Cagefighting', 'US', now()), +(24480, 'UFL Football', 'US', now()), +(24481, 'Spike TV VGA Video Game Awards', 'US', now()), +(24482, 'Scream Awards', 'US', now()), +(24483, 'United Plates Of America', 'US', now()), +(24484, 'Losing It with Jillian Michaels!', 'US', now()), +(24485, 'Minute to Win It', 'US', now()), +(24486, 'Bank of Hollywood', 'US', now()), +(24487, 'New Year''s Eve Live', 'US', now()), +(24488, 'New Year''s Eve with Carson Daly', 'US', now()), +(24489, 'Our Little Genius', 'US', now()), +(24490, 'A Home for the Holidays', 'US', now()), +(24491, 'The Grammy Nominations Concert Live!', 'US', now()), +(24492, 'Replay', 'US', now()), +(24493, 'Game of Thrones', 'US', now()), +(24494, 'The Club', 'UK', now()), +(24495, 'NASCAR Sprint Cup Series', 'US', now()), +(24496, 'Haven', 'US', now()), +(24497, 'Mallikoulu', 'FI', now()), +(24498, 'Freek''s Nederland', 'NL', now()), +(24499, 'Maximum Bereikt', 'NL', now()), +(24500, 'Op 3 ezels', 'NL', now()), +(24501, 'Rudely Interrupted', 'AU', now()), +(24502, 'Eagle And Evans', 'AU', now()), +(24503, 'ABC News Breakfast', 'AU', now()), +(24504, 'Louie', 'US', now()), +(24505, 'Kylie Kwong: Heart and Soul', 'AU', now()), +(24506, 'The Midday Report', 'AU', now()), +(24507, 'Braquo', 'FR', now()), +(24508, 'A Man''s Story', 'KR', now()), +(24509, 'Rollercoaster', 'AU', now()), +(24510, 'Beached Az', 'AU', now()), +(24511, 'News On 3', 'AU', now()), +(24512, 'Spliced!', 'CA', now()), +(24513, 'Chillers', 'FR', now()), +(24514, 'The Day Of The Triffids (2009)', 'UK', now()), +(24515, 'Raid', 'FI', now()), +(24516, 'Stockholm-Arlanda', 'SE', now()), +(24517, 'Battlefield', 'UK', now()), +(24518, 'Sunes Jul', 'SE', now()), +(24519, 'Review with Myles Barlow', 'AU', now()), +(24520, 'Prank Patrol (AU)', 'AU', now()), +(24521, 'Luke Nguyen''s Vietnam', 'AU', now()), +(24522, 'ABC News Canberra', 'AU', now()), +(24523, 'Order In The House', 'AU', now()), +(24524, 'Ant and Dec''s Christmas Show', 'UK', now()), +(24525, 'Heads or Tails', 'UK', now()), +(24526, 'Worlds Wildest Encounters', 'US', now()), +(24527, 'How To Be Indie', 'CA', now()), +(28184, '¿Qué fue de Jorge Sanz?', 'ES', now()), +(24530, 'Connor Undercover', 'CA', now()), +(24531, 'Living in Your Car', 'CA', now()), +(24532, 'Thalassa', 'FR', now()), +(24533, 'Il commissario Montalbano', 'IT', now()), +(24534, 'HGTV Dream Home', 'US', now()), +(24535, 'HGTV Dream Home Giveaway', 'US', now()), +(24536, 'Campus PD', 'US', now()), +(24537, 'American Ninja Warrior', 'US', now()), +(24538, 'G4 Underground', 'US', now()), +(24539, 'Women of Ninja Warrior', 'US', now()), +(24540, 'Stuart Maconie''s Tv Towns', 'UK', now()), +(24541, 'I Dreamed a Dream: The Susan Boyle Story', 'UK', now()), +(24542, 'The Imploders', 'US', now()), +(24543, 'Pit Boss', 'US', now()), +(24544, 'Wild Recon', 'US', now()), +(24545, 'Stephen King´s The Stand', 'US', now()), +(24546, 'One Big Happy Family', 'US', now()), +(24547, 'The Val Doonican Show', 'UK', now()), +(24548, 'Friday Night Alright', 'US', now()), +(24549, 'Animal Cops: Miami', 'US', now()), +(24550, 'Maneaters (2010)', 'US', now()), +(24551, 'I Get That A Lot', 'US', now()), +(24552, 'Operation Wild', 'US', now()), +(24553, 'John Oliver''s New York Stand-up Show', 'US', now()), +(24554, 'Fantasia For Real', 'US', now()), +(24555, '24/7', 'US', now()), +(24556, 'Seducing Cindy', 'US', now()), +(24557, 'Orange Roughies', 'NZ', now()), +(24558, 'Geloof in de Wereld', 'NL', now()), +(24559, 'Herrie met Sterren', 'NL', now()), +(24560, 'Free Stuff!', 'US', now()), +(24561, 'Basketball Wives', 'US', now()), +(24562, 'Motor City Motors', 'US', now()), +(24563, 'Two Fat Ladies', 'UK', now()), +(24564, 'Solving History with Olly Steeds', 'US', now()), +(24565, 'Carnie Wilson: Unstapled', 'US', now()), +(24566, 'So You Think You Can Dance (UK)', 'UK', now()), +(24567, 'Great British Railway Journeys', 'UK', now()), +(24568, 'Kell on Earth', 'US', now()), +(24569, 'How to Make It in America', 'US', now()), +(24570, 'Westminster Kennel Club Dog Show', 'US', now()), +(24571, 'Secret Life of Supermodels', 'US', now()), +(24572, 'Jackie''s Gym Takeover', 'US', now()), +(24573, 'Social Heights', 'US', now()), +(24574, 'Blueprint (2010)', 'US', now()), +(24575, '30 Under 30', 'US', now()), +(24576, 'I''m In The Band', 'US', now()), +(24577, 'Austin Stevens Adventures', 'UK', now()), +(24578, 'My Big Fat Diet Show', 'UK', now()), +(24579, 'Fat Families', 'UK', now()), +(24580, 'Bill Bailey''s Birdwatching Bonanza', 'UK', now()), +(24581, 'An Otter in the Family', 'UK', now()), +(24582, 'Hidden Agenda', 'US', now()), +(24583, 'Airplane Repo', 'US', now()), +(24584, 'Alien Nation (2010)', 'US', now()), +(24585, 'Alphaville', 'US', now()), +(24586, 'American Idiots', 'US', now()), +(24587, 'Arc', 'US', now()), +(24588, 'Are We There Yet?', 'US', now()), +(24589, 'Assisted Living', 'US', now()), +(24590, 'The Will: Family Secrets Revealed', 'US', now()), +(24591, 'The Real NCIS', 'US', now()), +(24592, 'Bristol Bay Brawl', 'US', now()), +(26900, 'The Lost Tribe', 'UK', now()), +(24594, 'Behind the Green Room Door', 'US', now()), +(24595, 'Being Human (US)', 'CA', now()), +(24596, 'Billy Stiles', 'US', now()), +(24597, 'Bitches in Britches', 'US', now()), +(24598, 'Cheer', 'US', now()), +(24599, 'Confessions of a Backup Dancer', 'US', now()), +(24600, 'Fly Girls', 'US', now()), +(24601, 'The March Sisters', 'US', now()), +(24602, 'Nashville (2010)', 'US', now()), +(24603, 'Billy Connolly''s World Tour of Scotland', 'UK', now()), +(24604, 'Plymouth Rock', 'US', now()), +(24605, 'Spy School for Girls', 'US', now()), +(24606, 'Strange Days', 'US', now()), +(24607, 'Bob''s Burgers', 'US', now()), +(24608, 'The Borgias', 'US', now()), +(24609, 'Boston PD', 'US', now()), +(24610, 'BoyFred', 'US', now()), +(24611, 'The Bradleys', 'US', now()), +(24612, 'Breakout Kings', 'US', now()), +(24613, 'Broken', 'US', now()), +(24614, 'Busy Bodies', 'US', now()), +(24615, 'Due imbroglioni e mezzo 2', 'IT', now()), +(24616, 'Football Superstar', 'AU', now()), +(24617, 'Love It or List It', 'CA', now()), +(24618, 'Before We Ruled The Earth', 'US', now()), +(24619, 'Cinémas', 'FR', now()), +(24620, 'Воротилы', 'RU', now()), +(24621, 'A Night of Heroes: The Sun Military Awards', 'UK', now()), +(24622, 'Hvem kan slå ylvis?', 'NO', now()), +(24623, 'Britain''s Empty Homes', 'UK', now()), +(24624, 'Take Me Out (UK)', 'UK', now()), +(24625, 'Piers Morgan On...', 'UK', now()), +(24626, 'The Lakes (2010)', 'UK', now()), +(24627, 'Lion Country', 'UK', now()), +(24628, 'Serious Request TV', 'NL', now()), +(24629, '50 jaar Studio Sport', 'NL', now()), +(24630, 'Expeditie Kopenhagen', 'NL', now()), +(24631, 'Piet en Gastons mooiste kerstprijs', 'NL', now()), +(24632, 'The Big C: Hereafter', 'US', now()), +(24633, 'The Cape', 'US', now()), +(24634, 'Charlie''s Angels (2011)', 'US', now()), +(24635, 'Chase (2010)', 'US', now()), +(24636, 'Childrens Hospital (US)', 'US', now()), +(24637, 'Clark County Jail', 'US', now()), +(24638, 'Clive Barker''s Hotel', 'US', now()), +(24639, 'Crash Dummies', 'US', now()), +(24640, 'The Cube (2010)', 'US', now()), +(24641, 'Curiosity', 'US', now()), +(24642, 'Ekstradycja', 'PL', now()), +(24643, 'Dad Camp', 'US', now()), +(24644, 'Danger Coast', 'US', now()), +(24645, 'Gator 911', 'US', now()), +(24646, 'Daylight Robbery', 'US', now()), +(24647, 'The Do-Over', 'US', now()), +(24648, 'Dorchester Heights', 'US', now()), +(24649, 'Downtown Girls', 'US', now()), +(24650, 'Dry', 'US', now()), +(24651, 'Door de wereld', 'NL', now()), +(24652, 'Politiet', 'NO', now()), +(24654, 'Eagleheart', 'US', now()), +(24655, 'Enlightened', 'US', now()), +(24656, 'NFL Thursday Night Football', 'US', now()), +(24657, 'Extended Family', 'US', now()), +(24658, 'Fairly Legal', 'US', now()), +(24659, 'Fallen (2010)', 'US', now()), +(24660, 'Family Business (2010)', 'US', now()), +(24661, 'Fathers & Son', 'US', now()), +(24662, 'Felony Review', 'US', now()), +(24663, 'The Follower', 'US', now()), +(24664, 'Freshmen', 'US', now()), +(24665, 'Friends With Benefits', 'US', now()), +(24666, 'Late Kick Off', 'UK', now()), +(24667, 'Delia Through The Decades', 'UK', now()), +(24668, 'The British Family', 'UK', now()), +(24669, 'The Persuasionists', 'UK', now()), +(24670, 'Relic – Guardians Of The Museum', 'UK', now()), +(24671, 'Material Girl', 'UK', now()), +(24672, 'Empire Of The Seas', 'UK', now()), +(24673, 'The Fallen (2010)', 'US', now()), +(24674, 'American Idol Extra', 'US', now()), +(24675, 'Camp Reality', 'US', now()), +(24676, 'Funny in Farsi', 'US', now()), +(24677, 'NFL Films Presents', 'US', now()), +(24678, 'The Gates', 'US', now()), +(24679, 'Gavin & Stacey', 'US', now()), +(24680, 'Gemini', 'US', now()), +(24681, 'Ghost World', 'US', now()), +(24682, 'Football''s Next Star', 'UK', now()), +(24683, 'Got to Dance', 'UK', now()), +(24684, 'Girl Meets Gown', 'US', now()), +(24685, 'Always a Bridesmaid', 'US', now()), +(24686, 'Amazing Wedding Gowns', 'US', now()), +(24687, 'Lisa Nichols'' Breakthrough', 'US', now()), +(24688, 'Unforgettable Wedding Venues', 'US', now()), +(24689, 'The Life and Loves of a She-Devil', 'UK', now()), +(24690, 'My First Year', 'UK', now()), +(24691, 'Dancing on Ice Friday', 'UK', now()), +(24692, 'Popstar to Operastar', 'UK', now()), +(24693, 'My Name Is Michael', 'NL', now()), +(24694, 'Hoe Wordt 2010?', 'NL', now()), +(24695, 'Mission Demolition', 'US', now()), +(24696, '10 minute tales', 'UK', now()), +(24697, 'Daycare Divas', 'US', now()), +(24698, 'Accidental Fortune', 'US', now()), +(24699, 'Family Style', 'US', now()), +(24700, 'The Outdoor Room with Jamie Durie', 'US', now()), +(24701, 'The Antonio Treatment', 'US', now()), +(24702, 'What I Hate About Me', 'US', now()), +(24703, 'Frank the Entertainer...in a Basement Affair', 'US', now()), +(24704, 'Les hauts et les bas de Sophie Paquin', 'CA', now()), +(24705, 'Tough Love: Couples', 'US', now()), +(24706, 'Make Room for Multiples', 'US', now()), +(24707, 'Sex Lives', 'US', now()), +(24708, 'Little Chocolatiers', 'US', now()), +(24709, 'Hardcore Pawn', 'US', now()), +(24710, 'Pirates of the Flats', 'US', now()), +(24711, 'Emergency Level One', 'US', now()), +(24712, 'Dance & Be Fit', 'US', now()), +(24713, 'Shape Up', 'US', now()), +(24714, 'Curb Appeal: The Block', 'US', now()), +(24715, 'The Squeeze', 'US', now()), +(24716, 'First Time Design', 'US', now()), +(24717, 'Aveux', 'CA', now()), +(24718, 'Chain Letters', 'UK', now()), +(24719, 'Damian''s Are You Smarter Than Your 10 Year Old?', 'UK', now()), +(24720, 'Celebrity Shock List 2009', 'UK', now()), +(24721, 'King Of Clubs', 'US', now()), +(24722, 'Foursome', 'US', now()), +(24723, 'Sam''s Game (2009)', 'US', now()), +(24724, 'Naughty Amateur Home Videos', 'US', now()), +(24725, 'The Boy Nexxt Door', 'US', now()), +(24726, 'Search For The Perfect Girlfriend', 'US', now()), +(24727, 'Money Talks', 'US', now()), +(24728, 'School Of Sex', 'US', now()), +(24729, '69 Sexy Things 2 Do Before You Die', 'US', now()), +(24730, 'Hot Babes Doing Stuff Naked', 'US', now()), +(24731, 'Around The World In 80 Babes', 'US', now()), +(24732, 'Naked Happy Girls', 'US', now()), +(24733, 'Canoga Park', 'US', now()), +(24734, 'World Of Playboy', 'US', now()), +(24735, 'Playboy Prime', 'US', now()), +(24736, 'All Wives Cheat', 'US', now()), +(24737, 'Show Us Your Wits', 'US', now()), +(24738, 'Tracking Eero', 'US', now()), +(24739, 'Blood for the Gods', 'US', now()), +(24740, 'Chowdown Countdown', 'US', now()), +(24741, 'Howe & Howe Tech', 'US', now()), +(24742, 'Massive Moves', 'US', now()), +(24743, 'Tailgate Takedown', 'US', now()), +(24744, 'Pet Psychic Encounters', 'US', now()), +(24745, 'The Daily Quiz!', 'UK', now()), +(24746, 'Full Color Football: The History of the American Football League', 'US', now()), +(24747, 'Les Parent', 'CA', now()), +(24748, 'Bienvenue aux dames', 'CA', now()), +(24749, 'UFC PPV Events', 'US', now()), +(24750, 'Wickie und die starken Männer', 'DE', now()), +(24751, 'Ijon Tichy: Raumpilot', 'DE', now()), +(24752, 'Play DJ', 'UK', now()), +(24753, 'The Common Room', 'UK', now()), +(24754, 'Krömer - Die internationale Show', 'DE', now()), +(24755, 'Gadget or the Girl', 'US', now()), +(24756, 'Exodus Earth', 'US', now()), +(24757, 'Make Your Play', 'UK', now()), +(24758, 'Celebrity Quitters', 'UK', now()), +(24759, 'Paul Merton in Europe', 'UK', now()), +(24760, 'Cobra the Animation', 'JP', now()), +(24761, 'Sora no Oto', 'JP', now()), +(24762, 'Ladies versus Butlers!', 'JP', now()), +(24763, 'Psychic Sally: On The Road', 'UK', now()), +(24764, 'Chuu Bra!!', 'JP', now()), +(24765, 'Der Seewolf', 'DE', now()), +(24766, 'Conviction Kitchen', 'US', now()), +(24767, 'Madhouse', 'US', now()), +(24769, 'Starwalker', 'US', now()), +(24770, 'Thintervention with Jackie Warner', 'US', now()), +(24771, 'Life at Stake', 'US', now()), +(24772, 'S.W.A.T. Magazine TV', 'US', now()), +(24773, 'Jobsite', 'US', now()), +(24774, 'Kurt Krömer - Na, du alte Kackbratze', 'DE', now()), +(24775, 'This Emotional Life', 'US', now()), +(24776, 'The Human Spark', 'US', now()), +(24777, 'Border Wars', 'US', now()), +(24778, 'Let''s Talk About Pep', 'US', now()), +(24779, 'I Almost Got Away with It', 'US', now()), +(24780, 'Omamori Himari', 'JP', now()), +(24781, 'Baka to Test to Shoukanjuu', 'JP', now()), +(24782, 'Dance In The Vampire Bund', 'JP', now()), +(24783, 'Durarara!!', 'JP', now()), +(24784, 'Rode Kamer, De', 'NL', now()), +(24785, 'Ookami Kakushi', 'JP', now()), +(24786, 'Dom nad rozlewiskiem', 'PL', now()), +(24787, 'The Pillars Of The Earth', 'US', now()), +(24788, 'Mario Barth - Die Weltrekord Show', 'DE', now()), +(24789, 'Sfora', 'PL', now()), +(24790, 'My Life as Liz', 'US', now()), +(24791, 'Meteorite Men', 'US', now()), +(24792, 'Teen Cribs', 'US', now()), +(24793, 'Live for the Moment', 'US', now()), +(24794, 'Four Weddings (2010)', 'US', now()), +(24795, 'Dieter Nuhr - Ich bins nuhr', 'DE', now()), +(24796, 'American Pickers', 'US', now()), +(24797, 'Super Bowl''s Greatest Commercials', 'US', now()), +(24798, 'The Woman Who Stops Traffic', 'UK', now()), +(24799, 'Main Street Mysteries', 'US', now()), +(24800, 'Mystery Files', 'US', now()), +(24801, 'Gang Nation', 'US', now()), +(24802, 'The Robert Verdi Show Starring Robert Verdi', 'US', now()), +(24803, 'The Ricky Gervais Show', 'US', now()), +(24804, 'Good Morning Sports Fans', 'UK', now()), +(24805, 'Goals On Sunday', 'UK', now()), +(24806, 'Fatal Attractions', 'US', now()), +(24807, 'The Hour (2009)', 'UK', now()), +(24809, 'Donald J. Trump''s Fabulous World of Golf', 'US', now()), +(24810, 'Conveyor Belt of Love', 'US', now()), +(24811, 'Bear Whisperer', 'US', now()), +(24812, 'Bartender Wars', 'US', now()), +(24813, 'Boso Przez Swiat', 'PL', now()), +(24814, 'Siostry', 'PL', now()), +(24815, 'Goesting', 'BE', now()), +(24816, 'Seikon no Qwaser', 'JP', now()), +(24817, 'Katanagatari', 'JP', now()), +(24818, 'Gourmet Detective', 'US', now()), +(24819, 'Good Cop Bad Cop', 'US', now()), +(24820, 'Good & Evel', 'US', now()), +(24821, 'Go Girls (2010)', 'US', now()), +(24822, 'Inside Nascar', 'US', now()), +(24823, 'Unique Autosports: Miami', 'US', now()), +(24825, 'Pair of Kings', 'US', now()), +(24826, 'Top Shot', 'US', now()), +(24827, 'Volgende Vraag', 'NL', now()), +(24828, 'Uit Elkaar', 'NL', now()), +(24829, 'Moraalridders', 'NL', now()), +(24830, 'Wilde keuken, De', 'NL', now()), +(24831, 'Living rights', 'NL', now()), +(24832, 'De Ombudsman (2010)', 'NL', now()), +(24833, 'Oud België', 'BE', now()), +(24834, 'Dig In', 'US', now()), +(24835, 'Rex Is Not Your Lawyer', 'US', now()), +(24836, 'Tower Prep', 'US', now()), +(24837, 'Undercovers', 'US', now()), +(24838, 'Prime Suspect (2011)', 'US', now()), +(24839, 'The Rockford Files', 'US', now()), +(24840, 'Hawaii Five-0 (2010)', 'US', now()), +(24841, 'Heathers', 'US', now()), +(24842, 'Hitched', 'US', now()), +(24843, 'HMS', 'US', now()), +(24844, 'Honest (2010)', 'US', now()), +(24845, 'Hopscotch', 'US', now()), +(24846, 'Hot In Cleveland', 'US', now()), +(24847, 'Retired at 35', 'US', now()), +(24848, 'Hotel Dix', 'US', now()), +(24849, 'Hounds', 'US', now()), +(24850, 'Howl', 'US', now()), +(24851, 'Humanitas', 'US', now()), +(24852, 'Ross Kemp Middle East', 'UK', now()), +(24853, 'Jimmy''s Global Harvest', 'UK', now()), +(24854, 'History of Now: The Story of the Noughties', 'UK', now()), +(24855, '18 to Life', 'CA', now()), +(24856, 'The Mystery of the Nevada Triangle', 'UK', now()), +(24857, 'Heat Vision and Jack', 'US', now()), +(24858, 'Gewoon Mooier', 'NL', now()), +(24859, 'Binnenkort Geopend', 'NL', now()), +(24860, 'Katarakt', 'BE', now()), +(24861, 'Majka', 'PL', now()), +(24862, 'Gordon''s Great Escape', 'UK', now()), +(24863, 'Muslim Driving School', 'UK', now()), +(24864, 'What Do Kids Know?', 'UK', now()), +(24865, 'Tonight Med Timothy Dahle', 'NO', now()), +(24866, 'Relocation: Phil Down Under', 'UK', now()), +(24867, 'Blanke Ark', 'NO', now()), +(24868, 'My Dream Farm', 'UK', now()), +(24869, 'Americatown', 'US', now()), +(24870, '10th Muse', 'US', now()), +(24871, 'All Year Round with Katie Brown', 'US', now()), +(24872, 'Awkward Situations for Men', 'US', now()), +(24873, 'Big Shot', 'US', now()), +(24874, 'Bubba''s World', 'US', now()), +(24875, 'City Hunter (2010)', 'US', now()), +(24876, 'Deep Sea Salvage', 'US', now()), +(24877, 'Deputized', 'US', now()), +(24878, 'Design School', 'US', now()), +(24879, 'Dino Dan', 'CA', now()), +(24880, 'Don''t You Want Me', 'US', now()), +(24881, 'Gourmet Farmer', 'AU', now()), +(24882, 'Latin Music USA', 'UK', now()), +(24883, 'How Earth Made Us', 'UK', now()), +(24884, 'Bellamy''s People', 'UK', now()), +(24885, 'Colour of War: The Anzacs', 'AU', now()), +(24886, 'Fables', 'US', now()), +(24887, 'Jamie Oliver''s Food Revolution', 'US', now()), +(24888, 'The Freshman', 'US', now()), +(24889, 'Go for Gold', 'CA', now()), +(24890, 'Gold Town', 'US', now()), +(24891, 'Gone to Texas: The Lives of Forrest Carter', 'US', now()), +(24892, 'Growing Greener Schools', 'US', now()), +(24893, 'Gumball 3000', 'US', now()), +(24894, 'Half Pint Brawlers', 'US', now()), +(25248, 'Holly''s World', 'US', now()), +(24896, 'Hi Tide', 'US', now()), +(24897, 'Hit Men', 'US', now()), +(24898, 'Hollywood on the Rocks', 'US', now()), +(24899, 'The Good Guys (2010)', 'US', now()), +(24900, 'Inside Jokes', 'US', now()), +(24901, 'Inside Mary Baxter', 'US', now()), +(24902, 'The Intruders', 'US', now()), +(24903, 'Jackpot (2010)', 'US', now()), +(24904, 'Jane & Dick', 'US', now()), +(24905, 'Jax & Amber', 'US', now()), +(24906, 'Jerseylicious', 'US', now()), +(24907, 'Jilted', 'US', now()), +(24908, 'How to Get What You Want', 'UK', now()), +(24909, 'Through the Wormhole', 'US', now()), +(24910, 'Devil Beside You', 'TW', now()), +(24911, 'Time Between Dog and Wolf', 'KR', now()), +(24912, 'BBC News at One', 'UK', now()), +(24913, 'Bloodletting & Miraculous Cures', 'CA', now()), +(24914, 'Polisen som vägrade svara', 'SE', now()), +(24915, 'Comedy Fight Club', 'SE', now()), +(24916, 'Böglobbyn', 'SE', now()), +(24917, 'Chop Shop: London Garage', 'UK', now()), +(24918, 'Los 80', 'CL', now()), +(24919, 'Une famille formidable', 'FR', now()), +(24920, 'Gravity', 'US', now()), +(24921, 'Meister Eder und sein Pumuckl', 'DE', now()), +(24922, 'Monaco Franze - Der ewige Stenz', 'DE', now()), +(24923, 'Love on a Saturday Night', 'UK', now()), +(24924, 'The Michael Vick Project', 'US', now()), +(24925, 'The Fresh Beat Band', 'US', now()), +(24926, 'The Five Thirty Show', 'UK', now()), +(24927, 'Pigalle, la nuit', 'FR', now()), +(24928, 'AKC/Eukanuba National Championship', 'US', now()), +(24929, 'C.A.', 'CA', now()), +(24930, 'Les Invincibles', 'CA', now()), +(24931, 'Model City', 'US', now()), +(24932, 'Amanda Holden''s Fantasy Lives', 'UK', now()), +(24933, 'Leukste Jaren, De', 'NL', now()), +(24934, 'Van Zon op Zaterdag', 'NL', now()), +(24935, 'Puppy Bowl', 'US', now()), +(24936, 'Independent Spirit Awards', 'US', now()), +(24937, 'Thin Ice (2010)', 'US', now()), +(24938, 'The Bible: A History', 'UK', now()), +(24939, 'The National Television Awards', 'UK', now()), +(24940, 'The Virtual Revolution', 'UK', now()), +(24941, 'The Review Show', 'UK', now()), +(24942, 'Het Eiland', 'BE', now()), +(24943, 'Best of Pride', 'US', now()), +(24944, 'British Invasion', 'AU', now()), +(24945, 'Londynczycy', 'PL', now()), +(24946, '100 Most Shocking Music Moments', 'US', now()), +(24947, '9 by design', 'US', now()), +(24948, 'Morning Report', 'UK', now()), +(24949, 'Rick''s List', 'US', now()), +(24950, 'Planet Earth Extremes', 'US', now()), +(24951, 'Big Time Rush', 'US', now()), +(24952, 'Love That Girl!', 'US', now()), +(24953, 'Food Tech', 'US', now()), +(24954, 'The Music Video Exposed', 'US', now()), +(24955, 'Behind the Music Remastered', 'US', now()), +(24956, 'Mexican Made Easy', 'US', now()), +(24957, 'The mun2 Look', 'US', now()), +(24958, 'The Contenders', 'US', now()), +(24959, 'Courtside with Seth Davis', 'US', now()), +(24960, 'The Daily Rundown', 'US', now()), +(24961, 'Car Czar', 'US', now()), +(24962, 'Team Umizoomi', 'US', now()), +(24963, 'Tavis Smiley Reports', 'US', now()), +(24964, 'Las Vegas Jailhouse', 'US', now()), +(24965, 'Demo Men', 'US', now()), +(24966, 'Beyond Repair', 'US', now()), +(24967, 'Smart Fix', 'US', now()), +(24968, 'Destination Design', 'US', now()), +(24969, 'Tough As Nails', 'US', now()), +(24970, 'Handy Manny''s School for Tools', 'US', now()), +(24971, 'American Paranormal', 'US', now()), +(24972, 'The Arrangement', 'US', now()), +(24973, 'Kept (2010)', 'US', now()), +(24974, 'The Seven Ages Of Britain', 'UK', now()), +(24975, 'RuPaul''s Drag U', 'US', now()), +(24976, 'Real Momentum', 'US', now()), +(24977, 'Animal Planet Investigates', 'US', now()), +(24978, 'Doheny Models', 'US', now()), +(24979, 'Flipped: A Mobster Tells All', 'US', now()), +(24980, 'Gillette UNCUT', 'US', now()), +(24981, 'The National Television Awards Backstage Live', 'UK', now()), +(24982, 'Dancing On Wheels', 'UK', now()), +(24983, 'The Adventures of Ellery Queen (1954)', 'US', now()), +(24984, 'Generatie 2010', 'NL', now()), +(24985, 'Simon King''s Shetland Diaries', 'UK', now()), +(24986, 'Hotter Than My Daughter', 'UK', now()), +(24987, 'Road Warriors', 'UK', now()), +(24988, 'Funny or Die Presents ...', 'US', now()), +(27541, 'Dick Spanner', 'UK', now()), +(24990, 'Panic Attack (UK)', 'UK', now()), +(24991, 'True Blue (2010)', 'US', now()), +(24992, 'Matadors', 'US', now()), +(24993, 'Off The Map', 'US', now()), +(25723, 'Tales of Mystery', 'UK', now()), +(24995, 'Changing Faces', 'UK', now()), +(24996, 'Rizzoli & Isles', 'US', now()), +(24998, 'Edgar Floats', 'US', now()), +(24999, 'Most Likely to Succeed', 'US', now()), +(25000, 'The Fabulous Beekman Boys', 'US', now()), +(25001, 'James May''s Top Toys', 'UK', now()), +(25002, 'Weather Proof', 'US', now()), +(25003, 'Cantore Stories: On Top of the World', 'US', now()), +(25004, 'James May: My Sister''s Top Toys', 'UK', now()), +(25005, 'Asi', 'TR', now()), +(25006, 'Kasaba', 'TR', now()), +(25007, 'Mei-chan no Shitsuji', 'JP', now()), +(25008, 'So Thijs', 'NL', now()), +(25009, 'Coming to Holland: Prins zoekt vrouw', 'NL', now()), +(25010, 'Move Like Michael Jackson (NL)', 'NL', now()), +(25011, 'No Ordinary Family', 'US', now()), +(25012, 'Crime Invasion', 'UK', now()), +(25013, 'Tower Block Of Commons', 'UK', now()), +(25014, 'One Born Every Minute', 'UK', now()), +(25015, 'The Missing NZ', 'NZ', now()), +(25016, 'RTL Consult', 'NL', now()), +(25017, 'Levenskunstenaars', 'NL', now()), +(25018, 'Char: Leven na een ramp', 'NL', now()), +(25019, 'Love Games: Bad Girls Need Love Too', 'US', now()), +(25020, 'Mäklarna', 'SE', now()), +(25021, 'Emeril Lagasse Show', 'US', now()), +(25022, 'Generation Jihad', 'UK', now()), +(25023, 'Jo Frost: Extreme Parental Guidance', 'UK', now()), +(25024, 'Last Women Standing', 'UK', now()), +(25025, 'Mooiste pand van Nederland, Het', 'NL', now()), +(25026, 'Cars, Cops and Criminals', 'UK', now()), +(25027, 'Sound Tracks', 'US', now()), +(25028, 'Making the Call With Ronnie Nunn', 'US', now()), +(25029, 'Sprite Step-Off', 'US', now()), +(25030, 'Celebrity Tennis', 'US', now()), +(25031, 'The Pink House', 'US', now()), +(25032, 'Five Year Plan', 'US', now()), +(25033, 'Who Gets the Parents?', 'US', now()), +(25034, 'X Factor (DE)', 'DE', now()), +(25035, 'Ni plus ni moi', 'CA', now()), +(25036, 'Savile Row', 'US', now()), +(25037, 'The Red Carpet Issue', 'US', now()), +(25038, 'Catwalk Countdown', 'US', now()), +(25039, 'Faces of America with Henry Louis Gates Jr.', 'US', now()), +(25040, 'Famous Crime Scene', 'US', now()), +(25041, 'Kick Buttowski - Suburban Daredevil', 'US', now()), +(25042, 'Jane''s Sew & So', 'US', now()), +(25043, 'Detroit 1-8-7', 'US', now()), +(25044, 'Emergency Sex and Other Desperate Measures', 'US', now()), +(25045, 'Glory Daze', 'US', now()), +(25046, 'How to Be a Better American', 'US', now()), +(25047, 'If You Really Knew Me', 'US', now()), +(25048, 'Mr. Sunshine (2011)', 'US', now()), +(25049, 'Timmy Time', 'UK', now()), +(25050, 'Mike & Molly', 'US', now()), +(25051, 'The Chicago Code', 'US', now()), +(25052, 'Lone Star', 'US', now()), +(25055, 'Luck', 'US', now()), +(25056, 'The Walking Dead', 'US', now()), +(25057, 'BBC Winter Olympics 2010', 'UK', now()), +(25058, 'Zeroes', 'US', now()), +(25059, 'Year to Year', 'US', now()), +(25060, 'Yes Men', 'US', now()), +(25061, 'You and Me and He', 'US', now()), +(25062, 'The X Factor (US)', 'US', now()), +(25063, 'Newswipe With Charlie Brooker', 'UK', now()), +(25064, 'Bath Crashers', 'US', now()), +(25065, 'TRANSform Me', 'US', now()), +(25066, 'More Industrial Revelations Europe', 'UK', now()), +(25067, 'Industrial Revelations with Mark Williams', 'UK', now()), +(25068, 'More Industrial Revelations with Ronald Top', 'UK', now()), +(25069, 'Great Rift Africa''s Wild Heart', 'UK', now()), +(25070, 'Mijn vader is de beste!', 'NL', now()), +(25071, 'Hoe word ik gelukkig', 'NL', now()), +(25072, 'Gehaktdag', 'NL', now()), +(25073, 'Hints (2010)', 'NL', now()), +(25074, 'A Traveler''s Guide to the Planets', 'US', now()), +(25075, 'America Live with Megyn Kelly', 'US', now()), +(25076, 'Løvebakken', 'NO', now()), +(25077, 'Raymond Blanc''s Kitchen Secrets', 'UK', now()), +(25078, 'Instant Restaurant', 'UK', now()), +(25079, 'Mastercrafts', 'UK', now()), +(25081, 'The Bubble', 'UK', now()), +(25082, 'Peak Season', 'CA', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(25083, 'Ice Patrol', 'UK', now()), +(25084, 'Star Academy (BE)', 'BE', now()), +(25085, 'Project Fame', 'ZA', now()), +(25086, 'Star Academy (SA)', 'SA', now()), +(25087, 'Star Academie', 'BE', now()), +(25088, 'The Moto: Inside the Outdoors', 'US', now()), +(25089, 'Gran premio galà della TV', 'IT', now()), +(25090, 'Operación triunfo: Academia Coca-Cola', 'AR', now()), +(25092, 'Fama', 'BR', now()), +(25093, 'Star Academy (BG)', 'BG', now()), +(25094, 'Operación Triunfo (CL)', 'CL', now()), +(25095, 'Tusker Project Fame', 'KE', now()), +(25096, 'Operación Triunfo (EC)', 'EC', now()), +(25097, 'Star Academy (GE)', 'GE', now()), +(25098, 'Fame Academy (DE)', 'DE', now()), +(25099, 'Fame Story', 'GR', now()), +(25100, 'WWE NXT', 'US', now()), +(25101, 'Fame Gurukul', 'IN', now()), +(25102, 'Celebrity Fame Gurukul', 'IN', now()), +(25103, 'Operazione Trionfo', 'IT', now()), +(25104, 'Star Akademi Türkiye', 'TR', now()), +(25105, 'Фабрика зірок', 'UA', now()), +(25106, 'Project Fame (BA)', 'BA', now()), +(25107, 'Operacija trijumf', 'YI', now()), +(25108, 'Job Hunt', 'US', now()), +(25109, 'Sold in Seconds', 'US', now()), +(25110, 'Before They Were Stars', 'US', now()), +(25111, 'Born to the Wind', 'US', now()), +(25112, 'Indian Hill Railways', 'UK', now()), +(25113, 'Dirty Work', 'UK', now()), +(25114, 'Welsh Greats', 'UK', now()), +(25116, 'Madman of the Sea', 'US', now()), +(25117, 'Shameless (US)', 'US', now()), +(25118, 'Matador', 'DK', now()), +(25119, 'Comic Strip: Live', 'US', now()), +(25120, 'The Chevy Chase Show', 'US', now()), +(25121, 'Crime Syndicated', 'US', now()), +(25122, 'The Diahann Carroll Show', 'US', now()), +(25123, 'Dick Clark''s World of Talent', 'US', now()), +(25124, 'Double Dare (1985)', 'US', now()), +(25125, 'Ed McMahon''s Next Big Star', 'US', now()), +(25126, 'The Gisele MacKenzie Show', 'US', now()), +(25127, 'High Society (2010)', 'US', now()), +(25128, 'Home Rules', 'US', now()), +(25129, 'Lawrence Welk''s Top Tunes and New Talent', 'US', now()), +(25130, 'Men', 'US', now()), +(25131, 'The $64,000 Challenge', 'US', now()), +(25132, 'Married Single Other', 'UK', now()), +(25133, 'The World''s Toughest Driving Tests', 'UK', now()), +(25134, 'Michael Winner''s Dining Stars', 'UK', now()), +(25135, 'Adams of Eagle Lake', 'US', now()), +(25136, 'The Awakening Land', 'US', now()), +(25137, 'Marriage Under Construction (US)', 'US', now()), +(25138, 'Strisser på Samsø', 'DK', now()), +(25139, 'Addicted', 'US', now()), +(25140, 'Kirstie Alley''s Big Life', 'US', now()), +(25141, 'Pineapple Dance Studios', 'UK', now()), +(25142, 'Brandy and Ray J: A Family Business', 'US', now()), +(25143, 'Undateable', 'US', now()), +(25144, 'May the Best House Win', 'UK', now()), +(25145, '2009: That Really Happened!?!', 'US', now()), +(25146, 'Celebrity Hens & Stags', 'UK', now()), +(25147, 'The House of Gristle', 'UK', now()), +(25148, 'Teenage Health Freak', 'UK', now()), +(25149, 'Loverboys', 'NL', now()), +(25150, 'Sing it', 'NL', now()), +(25151, 'The Kennedys', 'US', now()), +(25152, '7 Vidas (PT)', 'PT', now()), +(25153, 'Limmy''s Show', 'UK', now()), +(25154, 'Il peccato e la vergogna', 'IT', now()), +(25155, 'Brit Cops: Rapid Response', 'UK', now()), +(25156, 'Noonbory and the Super Seven', 'US', now()), +(25157, 'Busytown Mysteries', 'CA', now()), +(25158, 'Van Moskou tot Moermansk', 'NL', now()), +(25159, 'Van Weelden over water', 'NL', now()), +(25160, 'Color TV', 'US', now()), +(25161, 'NASCAR in a Hurry Monday Edition', 'US', now()), +(25162, 'What''s the Deal?', 'US', now()), +(25163, 'Prehistoric', 'US', now()), +(25164, 'Paranatural', 'US', now()), +(25165, 'Behind Bars (US)', 'US', now()), +(25166, 'Rosalinda', 'PH', now()), +(25167, 'Ant and Dec''s Push the Button', 'UK', now()), +(25168, 'The Last Prince', 'PH', now()), +(25169, 'Darna (2009)', 'PH', now()), +(25170, 'Copycats', 'UK', now()), +(25172, 'Berulfsens konspirasjoner', 'NO', now()), +(25173, 'A League of Their Own (UK)', 'UK', now()), +(25174, 'Klub Szalonych Dziewic', 'PL', now()), +(25175, 'The Women of Brewster Place', 'US', now()), +(25176, 'Undercover Princesses', 'UK', now()), +(25177, 'Shrink Rap', 'UK', now()), +(25178, 'Nathan vs. Nurture', 'US', now()), +(25179, 'The Business Inspector', 'UK', now()), +(25180, 'Winter Next X', 'US', now()), +(25181, 'Trashmen', 'US', now()), +(25182, 'The Fast Money Halftime Report', 'US', now()), +(25183, 'Brandon Bets the World', 'US', now()), +(25184, 'The Specials In Concert', 'UK', now()), +(25185, 'Tracy Beaker Returns', 'UK', now()), +(25186, 'Sheeep', 'UK', now()), +(25187, 'Der letzte Zeuge', 'DE', now()), +(25188, 'The ClueFinders', 'UK', now()), +(25189, 'Nikita', 'US', now()), +(25190, 'Victorious', 'US', now()), +(25191, 'Monsters vs. Aliens: The Series', 'US', now()), +(25192, 'Bubble Guppies', 'US', now()), +(25193, 'Usta Usta', 'PL', now()), +(25194, 'Our Little Life', 'US', now()), +(25195, 'De kinderpuzzel', 'BE', now()), +(25196, 'Moterų alėja', 'LT', now()), +(25197, 'King Tut Unwrapped', 'US', now()), +(25198, 'mun2 Sports Arena', 'US', now()), +(25199, 'Bij ons in de Jordaan', 'NL', now()), +(25200, 'Kid Pitch', 'US', now()), +(25201, 'Dance-a-Lot Robot', 'US', now()), +(25202, 'Mater''s Tall Tales', 'US', now()), +(25203, 'Your Kid Ate What?', 'US', now()), +(25204, 'Fast Track to Fame', 'US', now()), +(25205, 'The Racing Chef', 'US', now()), +(25206, 'Sounds of NASCAR', 'US', now()), +(25207, 'Race in 60', 'US', now()), +(25208, 'Being John Daly', 'US', now()), +(25209, 'Man v. Food Presents Carnivore', 'US', now()), +(25210, '1,000 Ways to Lie', 'US', now()), +(25211, 'Extreme Peril', 'US', now()), +(25212, 'Instant Recall', 'US', now()), +(25213, 'Surviving Death', 'US', now()), +(25214, 'Machines!', 'US', now()), +(25215, 'Dag & Nacht: Hotel Eburon', 'BE', now()), +(25216, 'The World Wild Vet', 'UK', now()), +(25217, 'Lambing Live', 'UK', now()), +(25218, 'Danny Dyer''s Deadliest Men', 'UK', now()), +(25219, 'Wonders of the Solar System', 'UK', now()), +(25220, 'Huntik-Secrets and Seekers', 'IT', now()), +(25221, 'IRIS (2009)', 'KR', now()), +(25222, 'Antiques Road Trip', 'UK', now()), +(25223, 'Sali', 'FI', now()), +(25224, 'Famous Rich And Jobless', 'UK', now()), +(25225, 'Rhod Gilbert''s Work Experience', 'UK', now()), +(25226, 'The Gemma Factor', 'UK', now()), +(25227, 'Breakout', 'US', now()), +(25228, 'Eddie Izzard: Marathon Man', 'UK', now()), +(25229, 'We Are The Champions', 'UK', now()), +(25230, 'Henry Rollins: Uncut', 'US', now()), +(25231, 'Deadly North Sea', 'UK', now()), +(25232, 'Stinkend Rijk & Dakloos', 'NL', now()), +(25233, 'Labyrint (NL)', 'NL', now()), +(25234, 'Bonje met de Buren', 'NL', now()), +(25235, 'Danny & Jenny gaan verhuizen', 'NL', now()), +(25236, 'Danny & Jenny de Munk', 'NL', now()), +(25237, 'Food Wars', 'US', now()), +(25238, '10 Best Desperate Landscapes', 'US', now()), +(25239, 'The Spice Is Right', 'US', now()), +(25240, 'Dan for Mayor', 'CA', now()), +(25241, 'Take Your Pick (1992)', 'UK', now()), +(25242, 'България търси талант', 'BG', now()), +(25243, 'Reporters', 'FR', now()), +(25244, 'Full Tilt Durrrr Million Dollar Challenge', 'US', now()), +(25245, 'Chef in Nood', 'BE', now()), +(25246, 'Pretty Wild', 'US', now()), +(25247, 'Duel in de Diepte', 'NL', now()), +(25249, 'Hoge Hakken, Strakke Pakken: de makelaars', 'NL', now()), +(25250, 'Met de deur in huis', 'NL', now()), +(25251, 'Stylist van de Sterren', 'NL', now()), +(25252, 'The Sci Fi Guys', 'UK', now()), +(25253, 'Popstar Wesley: Op weg naar de Top', 'NL', now()), +(25254, '10 Best Yard Crashers', 'US', now()), +(25255, 'Lisaraye: The Real McCoy', 'US', now()), +(25256, 'Secrets of the Mountain', 'CA', now()), +(25257, 'Riverworld', 'US', now()), +(25258, 'Pressure Cook', 'US', now()), +(25259, 'Private Chefs of Beverly Hills', 'US', now()), +(25260, 'Boris', 'IT', now()), +(25261, 'Who Do You Think You Are? (CA)', 'CA', now()), +(25262, 'X De Leeuw', 'NL', now()), +(25263, 'Nederpopshow', 'NL', now()), +(25264, 'Dolfijnen in de hoofdrol', 'NL', now()), +(25265, 'De Leeuw op zondag', 'NL', now()), +(25266, 'If I Can Dream', 'US', now()), +(25267, 'Mutual of Omaha''s Wild Kingdom (2002)', 'US', now()), +(25268, 'SnakesKin', 'US', now()), +(25269, 'Single, Together, Whatever', 'UK', now()), +(25270, 'Fake Britain', 'UK', now()), +(25271, 'Tropic Of Cancer', 'UK', now()), +(25272, 'Richard Hammond''s Invisible Worlds', 'UK', now()), +(25273, 'Circus (2010)', 'US', now()), +(25274, 'Worldwide Tribe', 'US', now()), +(25275, 'Samantha Brown''s Asia', 'US', now()), +(25276, 'Hero: 108', 'US', now()), +(25277, 'Cycling – World Track Championships 2010', 'UK', now()), +(25278, 'Girls On The Frontline', 'UK', now()), +(25279, 'A Band for Britain', 'UK', now()), +(25280, 'Wrestlicious TakeDown', 'US', now()), +(25281, 'Jazmin''s Touch', 'AR', now()), +(25282, 'Clash of the Nicktoons', 'US', now()), +(25283, 'My First Sale', 'US', now()), +(25284, 'Selling New York', 'US', now()), +(25285, 'Museum of Life', 'UK', now()), +(25286, 'Over The Rainbow', 'UK', now()), +(25287, '40 dagen zonder jou', 'NL', now()), +(25288, 'Comedytrain', 'NL', now()), +(25289, 'The Cutting Edge (1992)', 'US', now()), +(25290, 'Hoarding: Buried Alive', 'US', now()), +(25293, 'Children''s Champion Awards', 'UK', now()), +(25294, 'Kamen Rider X', 'JP', now()), +(25295, 'Kamen Rider Amazon', 'JP', now()), +(25296, 'Kamen Rider Stronger', 'JP', now()), +(25297, 'Kamen Rider (Skyrider)', 'JP', now()), +(25298, 'Kamen Rider Super-1', 'JP', now()), +(25299, 'Kamen Rider Black RX', 'JP', now()), +(25300, 'Liza and Huey''s Pet Nation', 'UK', now()), +(25301, 'Dr. G: America''s Most Shocking Cases', 'US', now()), +(25302, 'Chinese Food in Minutes', 'UK', now()), +(25303, 'Jamie''s Kitchen Australia', 'AU', now()), +(25304, 'Running Wilde', 'US', now()), +(25305, 'The Restoration Man', 'UK', now()), +(25306, 'Atlas 4D', 'US', now()), +(25307, 'Over The Limit', 'US', now()), +(25308, 'Children''s Hospital (UK)', 'UK', now()), +(25309, 'The Delicious Miss Dahl', 'UK', now()), +(25310, 'Aftermath', 'US', now()), +(25311, 'Comedy Rocks with Jason Manford', 'UK', now()), +(25312, 'The Man Who Cycled The Americas', 'UK', now()), +(25313, 'You Can Dance - Po Prostu tańcz (PL)', 'PL', now()), +(25314, 'Antiques Auction Party', 'UK', now()), +(25315, 'Justin Lee Collins: Good Times', 'UK', now()), +(25316, 'Pure Pwnage: Teh TV Show', 'CA', now()), +(25317, 'The 5.19 Show', 'UK', now()), +(25318, 'Criminal Minds: Suspect Behavior', 'US', now()), +(25319, 'Chasing Rainbows - A Nation and Its Music', 'UK', now()), +(25320, 'Van Oekel''s Discohoek', 'NL', now()), +(25321, 'Buzzer Beat', 'JP', now()), +(25322, 'BN’ers in de Zorg', 'NL', now()), +(25323, 'Kat in de Zak', 'NL', now()), +(25324, 'Look of Love', 'NL', now()), +(25325, 'Jukebox Heroes', 'UK', now()), +(25326, 'Hjernevask', 'NO', now()), +(25327, 'Mystère', 'FR', now()), +(25328, 'Jump Nation', 'UK', now()), +(25329, 'Departures', 'CA', now()), +(25330, 'Junior Eurovision Song Contest', 'BY', now()), +(25331, 'Vermist (2008)', 'BE', now()), +(25332, 'Afternoon Report', 'UK', now()), +(25333, 'Solsidan', 'SE', now()), +(25334, 'ZingZillas', 'UK', now()), +(25335, 'The Door', 'UK', now()), +(25336, 'Der Troedeltrupp das Geld liegt im Keller', 'DE', now()), +(25337, 'Muddle Earth', 'UK', now()), +(25339, 'Heroman', 'JP', now()), +(25340, 'Jump London', 'UK', now()), +(25341, 'Jump Britain', 'UK', now()), +(25342, 'Rare Anatomy', 'US', now()), +(25343, 'Hollywood East', 'US', now()), +(25344, 'US Marines: First to Fight', 'US', now()), +(25345, 'Playboy Radio', 'US', now()), +(25346, 'Is It Possible?', 'US', now()), +(25347, 'Spring Break Performances', 'US', now()), +(25348, 'Cheyenne Cinnamon and the Fantabulous Unicorn of Sugar Town Candy', 'US', now()), +(25349, 'Construction Intervention', 'US', now()), +(25350, 'Into the Universe with Stephen Hawking', 'US', now()), +(25351, 'John King, USA', 'US', now()), +(25352, 'Bellator Fighting Championships', 'US', now()), +(25353, 'Biblical Plagues', 'US', now()), +(25354, 'Elle & Tito: The Married Life', 'US', now()), +(25355, 'Chasing Classic Cars', 'US', now()), +(25356, 'The Daily Line', 'US', now()), +(25357, 'Turf War', 'US', now()), +(25358, 'Expedition Wild with Casey Anderson', 'US', now()), +(25359, 'Keeping Up with the Joneses', 'US', now()), +(25361, 'B Gata H Kei', 'JP', now()), +(25362, 'Kaichou wa Maid-sama!', 'JP', now()), +(25363, 'Kitchen Nightmares Caught on Tape', 'US', now()), +(25364, 'Rebel Monkeys', 'US', now()), +(25365, 'Caught in the Act', 'US', now()), +(25366, 'Mystery Gorillas', 'US', now()), +(25367, 'Echt Waar?!', 'NL', now()), +(25368, 'Hotelpolitie, De', 'NL', now()), +(25369, 'Africa''s Lost Eden', 'US', now()), +(25370, 'Shark Island with Enric Sala', 'US', now()), +(25371, 'Hunt for the Giant Octopus', 'US', now()), +(25372, 'My Life Is a Zoo', 'US', now()), +(25373, 'Oog in Oog', 'NL', now()), +(25374, 'Frans Duijts: Leef Je Droom', 'NL', now()), +(25375, 'Succéduon', 'SE', now()), +(25376, 'Oficerowie', 'PL', now()), +(25377, 'Academisch Ziekenhuis, Het', 'NL', now()), +(25378, 'Eeuwige Roem', 'NL', now()), +(25379, 'Tropisch Koninkrijk', 'NL', now()), +(25380, '13 Posterunek', 'PL', now()), +(25381, 'Doręczyciel', 'PL', now()), +(25382, 'The Edible Garden', 'UK', now()), +(25383, 'Cracking Antiques', 'UK', now()), +(25384, 'The Real A and E', 'UK', now()), +(25385, 'Tajemnica Twierdzy Szyfrów', 'PL', now()), +(25386, 'Berlinerpoplene', 'NO', now()), +(25387, 'A Comedy Roast', 'UK', now()), +(25388, 'PitBull', 'PL', now()), +(25389, 'Szpieg', 'PL', now()), +(25390, 'Stawiam na Tolka Banana', 'PL', now()), +(25391, 'Parent Trip', 'UK', now()), +(25392, 'Dyrektorzy', 'PL', now()), +(25393, 'Dolmen', 'FR', now()), +(25394, 'Zodiaque', 'FR', now()), +(25395, 'Le Maître du Zodiaque', 'FR', now()), +(25396, 'Revolution 618 (2010)', 'US', now()), +(25397, 'Children of Dune', 'US', now()), +(25398, 'Fingersmith', 'UK', now()), +(25399, 'The Maharaja''s Daughter', 'US', now()), +(25400, 'Steve Jones in the Jones Boys'' Great Adventure', 'UK', now()), +(25401, 'Concrete Canvas', 'AU', now()), +(25402, 'Nowa', 'PL', now()), +(25403, 'Ojciec Mateusz', 'PL', now()), +(25404, 'Ranczo', 'PL', now()), +(25405, 'Plebania', 'PL', now()), +(25406, 'The Baja Unlimited', 'US', now()), +(25407, 'Hollywood''s Top Ten', 'US', now()), +(25408, 'Naked Trailers', 'US', now()), +(25409, 'Fix This Yard', 'US', now()), +(25410, 'Tax Man', 'US', now()), +(25411, 'Joanna Lumley''s Nile', 'UK', now()), +(25412, 'Christian Siriano: Having A Moment', 'US', now()), +(25413, 'Out of the Frying Pan', 'UK', now()), +(25414, 'Alex Reid: The Fight of His Life', 'UK', now()), +(25415, 'Welcome To Lagos', 'UK', now()), +(25416, 'Hotel 52', 'PL', now()), +(25417, 'Naznaczony', 'PL', now()), +(25418, 'Agentki', 'PL', now()), +(25419, 'Géniusz', 'HU', now()), +(25420, 'Blondynka', 'PL', now()), +(25421, 'Licencja na wychowanie', 'PL', now()), +(25422, 'Young, Autistic and Stagestruck', 'UK', now()), +(25423, 'Jamie Does...', 'UK', now()), +(25424, 'Neki novi klinci', 'YU', now()), +(25426, 'Włatcy móch', 'PL', now()), +(25427, 'Tűzvonalban', 'HU', now()), +(25428, 'Kryminalni', 'PL', now()), +(25429, 'Herrie in je Huiskamer', 'NL', now()), +(25430, 'Maps', 'UK', now()), +(25431, 'Blood, Sweat And Luxuries', 'UK', now()), +(25432, 'Eva Life', 'NL', now()), +(25433, 'SNAFU TV', 'NL', now()), +(25434, 'Frank Skinner''s Opinionated', 'UK', now()), +(25435, 'Marco''s Kitchen Burnout', 'UK', now()), +(25436, 'Oficer', 'PL', now()), +(25437, 'Duncan Bannatyne''s Seaside Rescue', 'UK', now()), +(25438, 'Twarzą w twarz', 'PL', now()), +(25439, 'Wiedźmin', 'PL', now()), +(25440, 'Mamuśki', 'PL', now()), +(25441, 'Czas honoru', 'PL', now()), +(25442, 'Fighting words with Mike Straka', 'US', now()), +(25443, 'Storm Riders', 'US', now()), +(25444, 'Playboy Shootout', 'US', now()), +(25445, 'Battle on the Block', 'US', now()), +(25446, 'The Scenic Route', 'US', now()), +(25447, 'What a Tool', 'US', now()), +(25448, 'The Real Housewives of Beverly Hills', 'US', now()), +(25449, 'The Real Housewives of DC', 'US', now()), +(25450, 'Law & Order: Los Angeles', 'US', now()), +(25451, 'Survivor (SA)', 'ZA', now()), +(25452, 'The Graham Norton Effect', 'US', now()), +(25453, 'Food Fighters', 'UK', now()), +(25454, 'Facejacker', 'UK', now()), +(25455, 'The Landscape Man', 'UK', now()), +(25456, 'Three In A Bed', 'UK', now()), +(25457, 'The Whole 19 Yards (UK)', 'UK', now()), +(25458, 'Survival with Ray Mears', 'UK', now()), +(25459, 'Blitz Street', 'UK', now()), +(25460, 'The Secret Life of the Airport', 'UK', now()), +(25461, 'Party Dish', 'CA', now()), +(25462, 'Oh! My Girl!!', 'JP', now()), +(25463, 'Tokyo DOGS', 'JP', now()), +(25464, 'Southern Fried Stings', 'US', now()), +(25465, 'Hellstrøm Rydder Opp', 'NO', now()), +(25466, 'Quick Pitch', 'US', now()), +(25467, 'Prime 9', 'US', now()), +(25468, '30 Clubs in 30 Days', 'US', now()), +(25469, 'All-Time Games', 'US', now()), +(25470, 'Baseball''s Seasons', 'US', now()), +(25472, 'Deadliest Journeys', 'US', now()), +(25473, 'Ingen Grenser', 'NO', now()), +(25474, 'Feeding Frenzy', 'US', now()), +(25475, 'Amazing Animal Ads', 'US', now()), +(25476, 'The Atom Show', 'US', now()), +(25477, 'Dropout Delinquents', 'US', now()), +(25478, 'Real American Stories', 'US', now()), +(25479, 'Top 20 Countdown', 'US', now()), +(25480, 'Los Twiins', 'US', now()), +(25481, 'MLB.com''s Fantasy 411', 'US', now()), +(25482, 'Masterclass', 'US', now()), +(25483, 'Baggage', 'US', now()), +(25484, 'Treehugger TV', 'US', now()), +(25485, 'A Passionate Woman', 'UK', now()), +(25486, 'Lijst 0', 'NL', now()), +(25487, 'South Africa Walks', 'UK', now()), +(25488, 'The Amazing Spiez!', 'FR', now()), +(25489, 'Gormiti: The Lords of Nature Return', 'FR', now()), +(25490, 'Ancient Aliens', 'US', now()), +(25491, 'What''s My Car Worth?', 'US', now()), +(25492, 'Benidorm Bastards', 'BE', now()), +(25493, 'Weird or What?', 'US', now()), +(25494, 'Tacky House', 'US', now()), +(25495, 'Sliced', 'US', now()), +(25496, 'Two Kenyan Guys', 'US', now()), +(25497, 'Sunset Daze', 'US', now()), +(25498, 'Iron Chef UK', 'UK', now()), +(25499, 'Five Daughters', 'UK', now()), +(25500, 'Sylvana', 'NL', now()), +(25501, 'Paul Rosenmöller en het hart van Afrika', 'NL', now()), +(25502, 'Mentalisten Ontmaskerd', 'NL', now()), +(25503, 'The Phone (2010) (NL)', 'NL', now()), +(25504, 'Nalatenschap, De', 'NL', now()), +(25505, 'André Rieu in Zuid-Afrika', 'NL', now()), +(25506, 'Everything''s Rosie', 'UK', now()), +(25507, 'Spice & Easy', 'US', now()), +(25508, 'Your Baby Can Read', 'US', now()), +(25509, 'Pompeii', 'FR', now()), +(25510, 'Britain''s Greatest Machines', 'UK', now()), +(25511, 'Nonkel Jef', 'BE', now()), +(25512, 'North American Poker Tour', 'US', now()), +(25513, 'SEAT Mooiste Goals Ooit', 'NL', now()), +(25514, 'Superdaddy', 'UK', now()), +(25515, 'Monty Halls'' Great Hebridean Escape', 'UK', now()), +(25516, 'Zoo Factor', 'UK', now()), +(25517, 'Showder Klub', 'HU', now()), +(25518, 'Cloppa Castle', 'UK', now()), +(25519, 'Tea and Biscuits with Maggie Pritchard', 'UK', now()), +(25520, 'Modern Masters (UK)', 'UK', now()), +(25521, 'Jersey Couture', 'US', now()), +(25522, 'Luther', 'UK', now()), +(25523, 'Magician Impossible', 'UK', now()), +(25524, 'De Oplichters', 'BE', now()), +(25525, 'The Phantom', 'US', now()), +(25526, 'History Cold Case', 'UK', now()), +(25527, 'How To Live A Simple Life', 'UK', now()), +(25528, 'Hitmakers', 'US', now()), +(25529, 'Miami Social Club', 'US', now()), +(25530, 'Million Dollar Decorators', 'US', now()), +(25531, 'Pregnant in Heels', 'US', now()), +(25532, 'Grossology', 'CA', now()), +(25533, 'Weekend Pre-Game wiith Craig Carton', 'US', now()), +(25534, 'The Famous 5 are on the Case!', 'UK', now()), +(25535, 'Martha Speaks', 'US', now()), +(25536, 'Autistic Superstars', 'UK', now()), +(25537, 'How the Universe Works', 'US', now()), +(25538, 'Evening Update', 'UK', now()), +(25539, 'I''m In A Rock ''n'' Roll Band!', 'UK', now()), +(25540, 'Beatrix 30 jaar Koningin', 'NL', now()), +(25541, 'Benali in boeken', 'NL', now()), +(25542, 'Young Justice', 'US', now()), +(25543, 'Hana''s Helpline', 'UK', now()), +(25544, 'Fred Basset', 'UK', now()), +(25545, 'Ray Johnston Band: Road Diaries', 'US', now()), +(25546, 'Design Giants', 'US', now()), +(25547, 'Wild Nights with Mireya Mayor', 'US', now()), +(25548, 'Swamp Men', 'US', now()), +(25549, 'Simon in the Land of the Chalk Drawings', 'UK', now()), +(25550, 'Fingerbobs', 'UK', now()), +(25551, 'Play School (UK)', 'UK', now()), +(25552, 'When I Was 17', 'US', now()), +(25553, 'MTV''s 10 on Top', 'US', now()), +(25554, 'The Real L Word', 'US', now()), +(25555, 'Bump', 'UK', now()), +(25556, 'Ludwig', 'UK', now()), +(25557, 'The People Versus', 'UK', now()), +(25558, 'Ennal''s Point', 'UK', now()), +(25559, 'The Lifeboat', 'UK', now()), +(25560, 'Rooms', 'UK', now()), +(25561, 'BBC News at Six', 'UK', now()), +(25562, 'Storm Worlds', 'US', now()), +(25563, 'Delta Divers', 'US', now()), +(25564, 'Shadow Soldiers', 'US', now()), +(25565, 'How the Earth Changed History', 'US', now()), +(25566, 'Most Haunted USA', 'US', now()), +(25567, 'Money Hunters', 'US', now()), +(25568, 'Best Food Ever', 'US', now()), +(25569, 'The Good Guys (1992)', 'UK', now()), +(25570, 'Dead Gorgeous', 'AU', now()), +(25571, 'Worst Case Scenario', 'US', now()), +(25572, 'The Dudesons in America', 'US', now()), +(25573, 'Heavy Haulers', 'US', now()), +(25574, 'Cut It in Half', 'US', now()), +(25575, 'Need to Know', 'US', now()), +(25576, 'Toughest Military Jobs', 'US', now()), +(25577, 'You''re Wearing That?!?', 'US', now()), +(25578, 'Lotto''s Onvergetelijke Zondag', 'NL', now()), +(25579, 'The Beauty of Maps', 'UK', now()), +(25580, 'Derek Ogilvie', 'NL', now()), +(25581, 'E20', 'UK', now()), +(25582, 'Theo''s Adventure Capitalists', 'UK', now()), +(25584, 'Derren Brown Investigates', 'UK', now()), +(25585, 'The Seasons with Alan Titchmarsh', 'UK', now()), +(25586, 'High Street Dreams', 'UK', now()), +(25587, 'Wormwood Scrubs', 'UK', now()), +(25588, 'Junior Apprentice', 'UK', now()), +(25589, 'Battle of the Wedding Designers', 'US', now()), +(31596, 'Profilage', 'FR', now()), +(25591, 'Pretty Little Liars', 'US', now()), +(25592, 'Kiss x Sis', 'JP', now()), +(25593, 'WAGs, Kids And World Cup Dreams', 'UK', now()), +(25594, 'All At Sea', 'UK', now()), +(25595, 'Work of Art: The Next Great Artist', 'US', now()), +(25596, 'Bethenny Ever After', 'US', now()), +(25597, 'The Green Room', 'US', now()), +(25598, 'You''re Cut Off!', 'US', now()), +(25599, 'Money Hungry', 'US', now()), +(25600, 'My Big Friggin Wedding', 'US', now()), +(25601, 'Wedding Wars', 'US', now()), +(25602, 'Diary of a Hip Hop Girlfriend', 'US', now()), +(25603, 'Beso: Waiting on Fame', 'US', now()), +(25604, 'Estranged with Dr. Drew', 'US', now()), +(25605, 'Family Food Fight with Flora', 'UK', now()), +(25606, 'Masterchef Australia', 'AU', now()), +(25607, 'Im Angesicht des Verbrechens', 'DE', now()), +(25608, 'The Glades', 'US', now()), +(25609, 'Lyngbø Og Hærlands Big Bang', 'NO', now()), +(25610, 'She, the Ultimate Weapon (Saishu heiki kanojo)', 'JP', now()), +(25611, 'Kaiji', 'JP', now()), +(25612, 'Catch Me', 'US', now()), +(25613, 'Downfall', 'US', now()), +(25614, 'The OCD Project', 'US', now()), +(25615, 'Ichiban Ushiro no Daimaou', 'JP', now()), +(25616, 'Durch die Nacht mit...', 'DE', now()), +(25617, 'Angel Beats!', 'JP', now()), +(25618, 'Hakuouki', 'JP', now()), +(25619, 'Working!!', 'JP', now()), +(25620, 'Arakawa under the Bridge', 'JP', now()), +(25621, 'Sandokan', 'eu', now()), +(25622, 'Boston Med', 'US', now()), +(25623, 'My Dog Ate What?', 'US', now()), +(25624, 'Gillian in Georgia', 'US', now()), +(25625, 'The Mangru Report', 'US', now()), +(25626, '10 Ways to Save', 'US', now()), +(25627, 'Southern Fresh', 'US', now()), +(25628, 'Seeing vs Believing', 'US', now()), +(25629, 'Imus at Night', 'US', now()), +(25630, 'Secrets of the Tribe', 'US', now()), +(25631, 'So You Wanna Be...', 'US', now()), +(25632, 'Huge', 'US', now()), +(25633, 'Ground War', 'US', now()), +(25634, 'Ochocinco: The Ultimate Catch', 'US', now()), +(25635, 'Mary Knows Best', 'US', now()), +(26176, 'X-Diaries - love, sun & fun', 'DE', now()), +(25637, 'The Jensen Project', 'US', now()), +(25638, 'Scrappers', 'US', now()), +(25639, 'The Six', 'US', now()), +(25640, 'Trust Me, I''m A Game Show Host', 'US', now()), +(25641, 'Wie wordt Kruimeltje?', 'NL', now()), +(25642, 'Lopen over water', 'NL', now()), +(25643, 'Actie in het Attractiepark', 'NL', now()), +(25644, 'Masterchef (US)', 'US', now()), +(25645, 'Hand van God, De', 'NL', now()), +(25646, 'Beauty +', 'NL', now()), +(25647, 'NatuurTalent', 'NL', now()), +(25648, 'Mayoi Neko Overrun!', 'JP', now()), +(25649, 'Last Chance Highway', 'US', now()), +(25650, 'Last American Cowboy', 'US', now()), +(25651, 'Cupcake Wars', 'US', now()), +(25652, 'Strike Back', 'UK', now()), +(25653, 'Halcyon River Diaries', 'UK', now()), +(25654, 'The WAGs'' Stories', 'UK', now()), +(25655, 'The David Dickinson Show', 'UK', now()), +(25656, 'The Fertility Chase', 'US', now()), +(25657, 'Perfect Couples', 'US', now()), +(25658, 'Hellcats', 'US', now()), +(25659, 'Southern Discomfort', 'US', now()), +(25660, 'Love Bites', 'US', now()), +(25661, 'Happy Endings', 'US', now()), +(25662, 'Mad Love', 'US', now()), +(25663, 'The Defenders (2010)', 'US', now()), +(25664, 'Beach Lane', 'US', now()), +(25665, 'Panic Attack', 'US', now()), +(25666, 'The Story of Science: Power, Proof and Passion', 'UK', now()), +(25667, 'Engrenages', 'FR', now()), +(25668, 'Funk Flex Full Throttle', 'US', now()), +(25669, 'The Clifton House Mystery', 'UK', now()), +(25670, 'The Cloning of Joanna May', 'UK', now()), +(25671, 'Seven Deadly Sins (2010)', 'US', now()), +(25672, 'Lagerhuis verkiezingen 2010', 'NL', now()), +(25673, 'Cannes film festival 2010', 'NL', now()), +(25674, 'Dokters van VUmc, De', 'NL', now()), +(25675, 'Brendon Chase', 'UK', now()), +(25676, 'Russell Simmons Presents: Stand-Up at the El Rey', 'US', now()), +(25678, 'The Genius of Britain', 'UK', now()), +(25679, 'The Charmer', 'UK', now()), +(25680, 'The Feathered Serpent', 'UK', now()), +(25681, 'Echoes of Louisa', 'UK', now()), +(25682, 'Jamie', 'UK', now()), +(25683, 'ESPN College Football Thursday Primetime', 'US', now()), +(25684, 'Sara and Hoppity', 'UK', now()), +(25685, 'Voice (JP)', 'JP', now()), +(25686, 'Fabulous Cakes', 'US', now()), +(25687, 'Snow Men', 'US', now()), +(25688, 'Inedible to Incredible', 'US', now()), +(25689, 'DC Cupcakes', 'US', now()), +(25690, 'It''s All About Faith', 'US', now()), +(25691, 'Say Yes to the Dress: Atlanta', 'US', now()), +(25692, 'Twist of Kate', 'US', now()), +(25693, 'MTV Hired', 'US', now()), +(25694, 'What on Earth?', 'US', now()), +(25695, 'UFC Primetime', 'US', now()), +(25696, 'American Chopper: Senior vs. Junior', 'US', now()), +(25697, 'Girls Gone Wild Presents: Search for the Hottest Girl in America', 'US', now()), +(25698, 'Check It Out (US)', 'US', now()), +(25699, '20/20 Medical Mysteries', 'US', now()), +(25700, 'One in a Million (2011)', 'US', now()), +(25884, 'Studio Sportzomer', 'NL', now()), +(25702, 'The Million Pound Drop Live', 'UK', now()), +(25703, 'The Event', 'US', now()), +(25704, 'Outsourced', 'US', now()), +(25705, 'POV PD', 'US', now()), +(25706, 'The National Lottery Friday Night Draws', 'UK', now()), +(25707, 'The Zone', 'UK', now()), +(25708, 'Cinema Verite', 'US', now()), +(25709, 'Wilfred (US)', 'US', now()), +(25710, 'Hair Battle Spectacular', 'US', now()), +(25711, 'Going Postal', 'UK', now()), +(25712, 'Wereldkampioen van Afrika', 'NL', now()), +(25713, 'M!LF', 'BE', now()), +(25714, 'Space Patrol', 'UK', now()), +(25715, 'Tom Grattan''s War', 'UK', now()), +(25716, 'My Generation (2010)', 'US', now()), +(25717, 'The Whole Truth', 'US', now()), +(25718, 'Body Of Proof', 'US', now()), +(25719, 'Outlaw', 'US', now()), +(25720, 'Harry''s Law', 'US', now()), +(25721, 'Sunday Supplement', 'UK', now()), +(25722, 'Witse', 'BE', now()), +(25724, 'The Paul Reiser Show', 'US', now()), +(25725, 'Lurt av Karlsen', 'NO', now()), +(25726, 'Wright vs. Wrong', 'US', now()), +(25727, 'William the Conqueror', 'US', now()), +(25728, 'Peacekeeper', 'US', now()), +(25729, 'Terra Nova', 'US', now()), +(25730, 'Through The Night', 'UK', now()), +(25731, 'Britain''s Closest Encounters', 'UK', now()), +(25732, 'Project Blue Earth SOS', 'JP', now()), +(25733, 'UFO Files', 'US', now()), +(25734, 'KRO Reporter International', 'NL', now()), +(25735, 'Onmogelijke Liefdes', 'NL', now()), +(25736, 'Engelen van Oranje, De', 'NL', now()), +(25737, 'Open Books', 'US', now()), +(25738, 'The Line (US)', 'US', now()), +(25739, 'Livin'' on a Prayer', 'US', now()), +(25740, 'Dings vom Dach', 'DE', now()), +(25741, 'Raumpatrouille Orion', 'DE', now()), +(25742, 'Raising Hope', 'US', now()), +(25743, 'Traffic Light', 'US', now()), +(25744, 'School Pride', 'US', now()), +(25745, 'Better With You', 'US', now()), +(25747, 'Strictly Ice Dancing', 'US', now()), +(25748, 'America''s Next Great Restaurant', 'US', now()), +(25749, 'Uit de kast', 'NL', now()), +(25750, 'Paul Rosenmöller en de Lijsttrekkers', 'NL', now()), +(25751, 'Girl Racers (NZ)', 'NZ', now()), +(25752, 'Wat kiest Nederland', 'NL', now()), +(25753, 'Playhouse: The Mind Beyond', 'UK', now()), +(25754, 'Bret Michaels: Life As I Know It', 'US', now()), +(25755, '$#*! My Dad Says', 'US', now()), +(25756, 'Blue Bloods', 'US', now()), +(25757, 'Bachelorette Party: Las Vegas', 'US', now()), +(25758, 'An African Journey with Jonathan Dimbleby', 'UK', now()), +(25759, 'The 5 O''Clock Show', 'UK', now()), +(25775, 'Szomszédok', 'HU', now()), +(25761, 'West Country Tales', 'UK', now()), +(25762, 'Same Smile', 'UK', now()), +(25763, 'When Romeo Met Juliet', 'UK', now()), +(25764, 'Springwatch Unsprung', 'UK', now()), +(25765, 'Best of Homes Under the Hammer', 'UK', now()), +(25766, 'The Odds', 'US', now()), +(25767, 'Familie Backeljau', 'BE', now()), +(25768, 'Buiten de zone', 'BE', now()), +(25769, 'Die Gipfelzipfler', 'AT', now()), +(25770, 'Der letzte Bulle', 'DE', now()), +(25771, 'Lyxfällan', 'SE', now()), +(25772, 'Svergies historia', 'SE', now()), +(25773, 'FIFA World Cup 2010', 'UK', now()), +(25774, 'Father and Son', 'UK', now()), +(25776, 'Стъклен дом', 'BG', now()), +(25777, 'Night and Day (US)', 'US', now()), +(25778, 'Shake It Up', 'US', now()), +(25779, 'Cutthroat', 'US', now()), +(25780, 'It Takes a Village', 'US', now()), +(25781, 'Women Are Crazy, Men Are Stupid', 'US', now()), +(25782, 'Chaos', 'US', now()), +(25783, 'The Quinn-Tuplets', 'US', now()), +(25784, 'Team Spitz', 'US', now()), +(25786, 'The Strip (2010)', 'US', now()), +(25787, 'Live to Dance', 'US', now()), +(25788, 'Plain Jane', 'US', now()), +(25789, 'Shedding For The Wedding', 'US', now()), +(25790, 'Changelings', 'US', now()), +(25791, 'Ben Hur', 'CA', now()), +(25792, 'Nolan Knows Best', 'US', now()), +(25793, 'WTF!', 'US', now()), +(25794, 'Naked But Funny', 'US', now()), +(25795, 'Nevermind Nirvana', 'US', now()), +(25796, 'Security', 'US', now()), +(25797, 'Spoof', 'US', now()), +(25798, 'Strange Brew', 'US', now()), +(25799, 'The Adam Carolla Show', 'US', now()), +(25800, 'Our Show', 'US', now()), +(25801, 'Boston''s Finest', 'US', now()), +(25802, 'The Damn Thorpes', 'US', now()), +(25803, 'Nomads', 'US', now()), +(25804, 'Pleading Guilty', 'US', now()), +(25805, 'Evacuation', 'UK', now()), +(25806, 'How Many People Can Live on Planet Earth', 'UK', now()), +(25807, 'Chessgame', 'UK', now()), +(25808, 'Can It Be Built?', 'US', now()), +(25809, 'Football Rivalries', 'US', now()), +(25810, 'International Rivalries', 'US', now()), +(25811, '500 Greatest Goals', 'US', now()), +(25812, 'Unusual Suspects', 'US', now()), +(25813, 'Walkaway', 'NL', now()), +(25814, 'The Neistat Brothers', 'US', now()), +(25815, 'Mega Bites', 'US', now()), +(25816, 'Brutale Meiden: Hemd Van Je Lijf!', 'NL', now()), +(25817, 'Patrick in de Bijlmer', 'NL', now()), +(25818, 'MAX peilt de stemming!', 'NL', now()), +(25819, 'Brotherhood of Leet', 'CA', now()), +(25820, 'US Navy: Pirate Hunters', 'US', now()), +(25821, 'Drink Up', 'US', now()), +(25822, 'Food(ography)', 'US', now()), +(25823, 'FoodCrafters', 'US', now()), +(31599, 'Derren Brown - Mind Reader – An Evening of Wonders', 'UK', now()), +(25825, 'Unique Eats', 'US', now()), +(25826, '24 Hour Restaurant Battle', 'US', now()), +(25827, 'Kid in a Candy Store', 'US', now()), +(25828, 'Spice Goddess', 'US', now()), +(25829, 'Indian Food Made Easy', 'US', now()), +(25830, 'Cook Like an Iron Chef', 'US', now()), +(25831, 'Caribbean Food Made Easy (US)', 'US', now()), +(33380, 'Watchdog Daily', 'UK', now()), +(25833, 'Chuck’s Day Off', 'CA', now()), +(25834, 'Chinese Food Made Easy (US)', 'US', now()), +(25835, 'Bill''s Food', 'US', now()), +(25836, 'David Rocco''s Dolce Vita', 'US', now()), +(25837, 'Everyday Exotic', 'US', now()), +(25838, 'French Food at Home', 'CA', now()), +(25839, 'Rachel Allen: Bake! (US)', 'US', now()), +(25840, 'At the Table With...', 'US', now()), +(25841, 'Bill''s Holiday', 'US', now()), +(25842, 'Der kleine König', 'DE', now()), +(25843, 'Skins (US)', 'US', now()), +(25844, 'Franklin & Bash', 'US', now()), +(25845, 'Svetlana', 'US', now()), +(25846, 'The King of Braves GaoGaiGar FINAL', 'JP', now()), +(25847, 'World War II in Colour and HD', 'UK', now()), +(25848, 'Secret Shark Pits', 'US', now()), +(25849, 'Bridal Bootcamp', 'US', now()), +(25850, 'Late Night Liars', 'US', now()), +(25851, 'Dual Survival', 'US', now()), +(25852, 'Rekening in het rood', 'BE', now()), +(25853, 'Tienermoeders', 'BE', now()), +(25854, 'Recht door Vlaanderen', 'BE', now()), +(25855, 'Food Buddha', 'US', now()), +(25856, 'Bert the Conqueror', 'US', now()), +(25857, 'Ultimate Car Build-Off', 'US', now()), +(25858, 'Heartland Thunder', 'US', now()), +(25859, 'Dragon Ball Z Kai', 'AJ', now()), +(25860, 'Radio 1''s Big Weekend', 'UK', now()), +(25861, 'Fact or Faked: Paranormal Files', 'US', now()), +(25862, 'My Ghost Story', 'US', now()), +(25863, 'Big Lake', 'US', now()), +(25864, 'Melissa & Joey', 'US', now()), +(25865, 'Ezel', 'TR', now()), +(25866, 'The Balancing Act', 'US', now()), +(25867, 'Love''s Divine', 'US', now()), +(25868, 'James Corden''s World Cup Live', 'UK', now()), +(25869, 'Peckham Finishing School for Girls', 'UK', now()), +(25870, 'Mongrels', 'UK', now()), +(25871, 'Wildlife Africa', 'NL', now()), +(25872, 'Lee Nelson''s Well Good Show', 'UK', now()), +(25873, 'Aussie Millions', 'US', now()), +(25874, 'It''s Effin Science', 'US', now()), +(25875, 'Pit Boss XL', 'US', now()), +(25876, 'Drill Team', 'US', now()), +(25877, 'Summer Lovin''', 'US', now()), +(25878, 'World Cup Primetime', 'US', now()), +(25879, 'Rock Solid: Top 10', 'US', now()), +(25880, 'Donald J. Trump Presents The Ultimate Merger', 'US', now()), +(25881, 'Joris en de jonge helden van Zuid-Afrika', 'NL', now()), +(25882, 'WK Journaal', 'NL', now()), +(25883, 'Winkelwagen, De', 'NL', now()), +(25885, 'VI Oranje', 'NL', now()), +(25886, 'Food Feuds', 'US', now()), +(25887, 'Pulse (UK)', 'UK', now()), +(25888, 'The Do Something Awards', 'US', now()), +(25889, 'Golden Gods Awards', 'US', now()), +(25890, 'Doubles Poker Championship', 'US', now()), +(25891, 'The Increasingly Poor Decisions Of Todd Margaret', 'US', now()), +(25892, 'FIFA World Cup 2010 - Countdown to Kick-Off', 'UK', now()), +(25893, 'Psychic Sally''s Big Fat Operation', 'UK', now()), +(25894, 'World Music Awards', 'US', now()), +(25895, 'Two Wheel Thunder: An American Icon', 'US', now()), +(25896, 'Kiki''s American Adventure', 'US', now()), +(25897, 'Little Parents, Big Charlie', 'US', now()), +(25898, 'New Now Next Awards', 'US', now()), +(25899, 'Football Today', 'UK', now()), +(25900, 'Football Tonight', 'UK', now()), +(25901, 'Sky Sports News at Ten', 'UK', now()), +(25902, 'Dappers', 'UK', now()), +(25903, 'Stanley Park', 'UK', now()), +(25904, 'Ed and Oucho''s Excellent Inventions', 'UK', now()), +(25905, 'Galactik football', 'FR', now()), +(25906, 'Stand Up for the Week', 'UK', now()), +(25907, 'The Drunk and On Drugs Happy Funtime Hour', 'CA', now()), +(25908, 'Mississippi River Quest', 'US', now()), +(25909, 'Drugs, Inc.', 'US', now()), +(25910, '"Dónde está Elisa?"', 'US', now()), +(25911, 'Steindinn okkar', 'IS', now()), +(25912, 'World Cup Rock ''n'' Goal Years', 'UK', now()), +(25913, '"Sin Senos No Hay Paraíso"', 'CO', now()), +(25914, '"Pecados Ajenos"', 'US', now()), +(25915, 'Rev', 'UK', now()), +(25916, 'Gareth Malone Goes to Glyndebourne', 'UK', now()), +(25917, 'God in de lage landen', 'NL', now()), +(25918, '"Te Voy a Ensenar a querer"', 'CO', now()), +(25919, '"La Venganza"', 'CO', now()), +(25920, 'Más Sabe El Diablo', 'US', now()), +(25921, '"Amantes del Desierto"', 'CO', now()), +(25922, 'Voyage to the Planets', 'AU', now()), +(25923, 'Double Wedding', 'US', now()), +(25924, 'Trouble in Paradise', 'AU', now()), +(25925, 'Real Prison Breaks', 'UK', now()), +(25926, 'Маша и Медведь', 'RU', now()), +(25927, 'Conan', 'US', now()), +(25928, 'Quickies In My Kitchen', 'AU', now()), +(25929, 'Homemade Millionaire', 'US', now()), +(25930, 'Auctioneers', 'US', now()), +(25932, 'Bachelorette Party', 'US', now()), +(25933, 'What Did I Do Last Night?', 'UK', now()), +(25934, 'House Crashers', 'US', now()), +(25935, 'Cake Boss: Next Great Baker', 'US', now()), +(31221, 'High School', 'UK', now()), +(25937, 'The Peacemaker', 'US', now()), +(25938, 'The Hasselhoffs', 'US', now()), +(25939, 'Growing Up Twisted', 'US', now()), +(25940, 'Teach: Tony Danza', 'US', now()), +(25941, 'Intervention In Depth: One Man Rehab', 'US', now()), +(25942, 'Coma', 'US', now()), +(25943, 'Criminology', 'US', now()), +(25944, 'Big Mike', 'US', now()), +(25945, 'American Crime', 'US', now()), +(25946, 'Hazel Rhodes', 'US', now()), +(25947, '$100 Makeover', 'US', now()), +(25948, 'Aftermath with William Shatner', 'US', now()), +(25949, 'Lorraine Kelly’s Big Slim: The Chawner Challenge', 'US', now()), +(25950, 'Mia Michaels', 'US', now()), +(25951, 'Commander In Chef', 'US', now()), +(25952, 'Around the World In 80 Plates', 'US', now()), +(25953, 'Future Earth (2010)', 'US', now()), +(25954, 'Energy', 'US', now()), +(25955, 'I Hate Your House', 'US', now()), +(25956, 'Hollywood Builders', 'US', now()), +(25957, 'America’s Most Desperate Landscapes', 'US', now()), +(25958, 'Family Renovation', 'US', now()), +(25959, 'I Hate My Kitchen', 'US', now()), +(25960, '10 Killer Kitchen Projects', 'US', now()), +(25961, 'DIY Punch List', 'US', now()), +(25962, 'Run My Renovation', 'US', now()), +(25963, 'This New House', 'US', now()), +(25964, 'Rescue Renovation', 'US', now()), +(25965, 'DIY Dominator', 'US', now()), +(25966, 'Vanilla Ice Project', 'US', now()), +(25967, 'Renovation Virgins', 'US', now()), +(25968, 'The Planets (1999)', 'UK', now()), +(25969, 'Indoors Out', 'US', now()), +(25970, 'Kitchen Impossible', 'US', now()), +(25971, 'Yard Crashers', 'US', now()), +(25972, '10 Grand In Your Hand', 'US', now()), +(25973, 'Inside the Perfect Predator', 'UK', now()), +(25974, 'Missing Children: Lorraine Kelly Investigates', 'UK', now()), +(25975, 'Kids Who Have it All', 'UK', now()), +(25976, 'Being... N-Dubz', 'UK', now()), +(25977, 'The Estate We''re In', 'UK', now()), +(25978, 'Antiques Master', 'UK', now()), +(25979, 'Money Watch', 'UK', now()), +(25980, 'The Private Life Of ...', 'UK', now()), +(25981, 'Kate Plus 8', 'US', now()), +(25982, 'Nicu', 'US', now()), +(25983, 'Man, Woman, Wild', 'US', now()), +(25984, 'Powering the Future', 'US', now()), +(25985, 'Hotaru no Hikari', 'JP', now()), +(25986, 'Homes from Hell', 'UK', now()), +(25987, 'The Talisman', 'US', now()), +(25988, 'Under the Dome', 'US', now()), +(25989, 'Nine Lives', 'US', now()), +(25990, 'Pioneer One', 'US', now()), +(25991, 'Long Way Round Special Edition', 'UK', now()), +(25992, 'Offspring', 'AU', now()), +(25993, 'Billy Connolly''s World Tour of England, Ireland and Wales', 'UK', now()), +(25994, 'Billy Connolly''s World Tour of New Zealand', 'UK', now()), +(25995, 'World''s Deadliest', 'US', now()), +(25996, 'Python Hunters', 'US', now()), +(25997, 'Flipper & Lopaka', 'AU', now()), +(25998, 'Tabaluga', 'DE', now()), +(25999, 'Joan and Leslie', 'AU', now()), +(26000, 'Ultimate School Musical', 'AU', now()), +(26001, 'Cops LAC', 'AU', now()), +(26002, 'As The Bell Rings (2007)', 'AU', now()), +(26004, 'Staines Down Drains', 'AU', now()), +(26005, 'B430', 'AU', now()), +(26006, 'The Contender Australia', 'AU', now()), +(26007, 'Under Surveillance Australian Druglords', 'AU', now()), +(26008, 'Australian Families of Crime', 'AU', now()), +(26009, 'Pixel Pinkie', 'AU', now()), +(26010, 'Animalia', 'AU', now()), +(26011, 'Limo Bob', 'US', now()), +(26012, 'Vegas Repo', 'US', now()), +(26013, 'Disclosure (US)', 'US', now()), +(26014, 'Rogue Society', 'US', now()), +(26015, 'America''s Toughest Boss', 'US', now()), +(26016, 'The Naked Office', 'US', now()), +(26017, 'Exposed (US)', 'US', now()), +(26018, 'Ma''s Roadhouse', 'US', now()), +(26019, 'Cash Cab (AUS)', 'AU', now()), +(26020, 'Out of Control Drivers', 'US', now()), +(26021, 'Trey Songz: My Moment', 'US', now()), +(26022, 'Knicks Night Live', 'US', now()), +(26023, 'Tough Nuts: Australia''s Hardest Criminals', 'AU', now()), +(26024, 'Minute to Win It (AUS)', 'AU', now()), +(26025, 'Kommotion', 'AU', now()), +(26026, 'Larger Than Life (AUS)', 'AU', now()), +(26027, 'My Pet Shame', 'UK', now()), +(26028, 'Cell', 'UK', now()), +(26029, 'Identity (2010)', 'UK', now()), +(26030, 'Dive Olly Dive!', 'AU', now()), +(26031, 'Alt For Norge', 'NO', now()), +(26032, 'Celebrity Pressure Cooker', 'UK', now()), +(26033, 'Seaside Hotel', 'AU', now()), +(26034, 'Make Me...', 'UK', now()), +(26035, 'The PokerStars.net Big Game', 'US', now()), +(26036, 'Ben Fogle''s Escape in Time', 'UK', now()), +(26037, 'Big Meets Bigger', 'UK', now()), +(26038, 'T In The Park', 'UK', now()), +(26039, 'Once Upon a Classic', 'US', now()), +(26040, 'Keith Sweat''s Platinum House', 'US', now()), +(26041, 'La La''s Full Court Wedding', 'US', now()), +(26042, 'Australia Versus', 'AU', now()), +(26043, 'Monster Fish', 'US', now()), +(26044, 'Nat Geo Amazing', 'US', now()), +(26045, 'Salvage Code Red', 'US', now()), +(26046, 'Freddo the Frog', 'AU', now()), +(26047, 'In Person with Maureen O''Boyle', 'US', now()), +(26048, 'Not Just News', 'US', now()), +(26049, 'The Kidsongs TV Show', 'US', now()), +(26050, 'Sexskolen', 'NO', now()), +(26051, 'Hockey Night Live: Summer Ice', 'US', now()), +(26052, 'Money Rocks with Eric Bolling', 'US', now()), +(26053, 'Mountain Dew''s Green Label Experience', 'US', now()), +(26054, 'Mary Shelley''s Frankenhole', 'US', now()), +(26055, 'Rikingen', 'NO', now()), +(26056, 'Paradise Hotel Norge', 'NO', now()), +(26057, 'Slanger I Paradis', 'NO', now()), +(26058, 'Nordens Herligste', 'NO', now()), +(26059, 'Beat the Chefs', 'US', now()), +(26060, 'BOO!', 'UK', now()), +(26061, 'SMS-Rulett', 'NO', now()), +(26105, 'Fresh Food Fast', 'US', now()), +(26063, 'Tangerudbakken Borettslag', 'NO', now()), +(26064, 'Life in the Canopy', 'US', now()), +(26065, 'The Kilborn File', 'US', now()), +(26066, 'Van Pup tot Geleidehond', 'NL', now()), +(26067, 'Uitgesproken VARA', 'NL', now()), +(26068, '101 Ways to Leave a Gameshow', 'UK', now()), +(26069, 'The Silence', 'UK', now()), +(26070, 'The Big Silence', 'UK', now()), +(26071, 'The Fairy Jobmother', 'UK', now()), +(26072, 'The Ugly Face of Beauty', 'UK', now()), +(26073, 'Marijuana Inc. Inside America’s Pot Industry', 'US', now()), +(26074, 'Undercover Boss (UK)', 'UK', now()), +(26075, 'Sunday Morning Live', 'UK', now()), +(26076, 'Tricky TV', 'UK', now()), +(26077, 'Victorian Pharmacy', 'UK', now()), +(26078, 'Uitgesproken EO', 'NL', now()), +(26079, 'Uitgesproken WNL', 'NL', now()), +(26080, 'The Matty Johns Show', 'AU', now()), +(26081, 'The Footy Show (NRL)', 'AU', now()), +(26082, 'Breaking In', 'US', now()), +(26084, 'Emergency Bikers', 'UK', now()), +(26085, 'Fat Doctor, The', 'UK', now()), +(26086, 'Jim Shockey''s The Professionals', 'US', now()), +(26087, 'Dream Season Celebrity', 'US', now()), +(26088, 'Benelli on Assignment', 'US', now()), +(26089, 'Gun Nuts', 'US', now()), +(26090, 'Gold Tip''s 4CE', 'US', now()), +(26091, 'Knockout Sportsworld', 'US', now()), +(26092, 'Sugar and Spice (AUS)', 'AU', now()), +(26093, 'Wanna Go Fishing?', 'US', now()), +(26094, 'Pirate Islands: The Lost Treasure of Fiji', 'AU', now()), +(26095, 'The Season with Justin Martin', 'US', now()), +(26096, 'Dominant Bucks', 'US', now()), +(26097, 'Legends of the Fall', 'US', now()), +(26098, '60 Minutes on ID', 'US', now()), +(26099, 'Chasing Justice with Dan Abrams', 'US', now()), +(26100, 'Turmoil and Triumph: The George Schultz Years', 'US', now()), +(26101, 'Chasing Mummies', 'US', now()), +(26102, 'I Escaped: Real Prison Breaks', 'US', now()), +(26103, 'Don''t Stop Believing', 'UK', now()), +(26104, 'Obese (NL)', 'NL', now()), +(26106, 'Impact TV', 'US', now()), +(26107, 'Sports Crash', 'US', now()), +(26108, 'Aistrų pakrantė', 'LT', now()), +(26109, 'The Circle', 'AU', now()), +(26110, 'Fox Grønland', 'NO', now()), +(26111, 'Katie and Alex: For Better For Worse', 'UK', now()), +(26112, 'InFocus: Visions', 'US', now()), +(26113, 'Ran', 'NO', now()), +(26114, 'Border Patrol', 'NZ', now()), +(26115, 'Odd One In', 'UK', now()), +(26116, 'Magic Numbers', 'UK', now()), +(26117, 'On Hannibal''s Trail', 'UK', now()), +(26118, 'The Last Resort (AUS)', 'AU', now()), +(26119, 'Turtuoliai - vargšai', 'LT', now()), +(26120, 'Deadly', 'AU', now()), +(26121, 'The Bionic Vet', 'UK', now()), +(26122, 'Mighty-Mites', 'UK', now()), +(26123, 'Baby Beauty Queens', 'UK', now()), +(26124, 'Auberge de Vlaamsche Pot', 'NL', now()), +(26125, 'Cellblock 6: Female Lock Up', 'US', now()), +(26126, 'Reunited (2010)', 'UK', now()), +(26127, 'Vlinderrevolutie, De', 'NL', now()), +(26128, 'Cash op zolder', 'NL', now()), +(26129, 'Bestemming Onbekend', 'NL', now()), +(26130, 'Der Ermittler', 'DE', now()), +(26131, 'Dennis en Valerio vs De Rest', 'NL', now()), +(26132, 'The Dave & Kerley Show', 'AU', now()), +(26133, 'Aš!', 'LT', now()), +(26134, 'Daybreak', 'UK', now()), +(26135, 'Lorraine', 'UK', now()), +(26136, 'World''s Wackiest Game Shows', 'US', now()), +(26137, 'A*mazing', 'AU', now()), +(26138, 'Studio 3', 'AU', now()), +(26139, 'Strange Sex', 'US', now()), +(26140, 'Welcome to Pooh Corner', 'US', now()), +(26141, 'Allein gegen die Zeit', 'DE', now()), +(26142, 'The Next Food Network Star After Party', 'US', now()), +(26143, 'Susitikime virtuvėje', 'LT', now()), +(33968, 'Адская Кухня', 'RU', now()), +(26145, 'Cold Blood (US)', 'US', now()), +(26146, 'The Tom Sullivan Show', 'US', now()), +(26147, 'Earth Wonders', 'US', now()), +(26148, 'The Club (US)', 'US', now()), +(26149, 'Bligh', 'AU', now()), +(26150, 'Bullpitt', 'AU', now()), +(26151, 'Underage and Having Sex', 'UK', now()), +(26152, 'Bicheonmu', 'KR', now()), +(26153, 'You''re Beautiful', 'KR', now()), +(26154, 'MotoGP:Moto2', 'ES', now()), +(26155, 'Stealth Rider', 'US', now()), +(26156, 'Truck Academy', 'US', now()), +(26157, 'Nina''s Little Fables', 'US', now()), +(26158, 'Wipeout Moments', 'US', now()), +(26159, 'Secret Worlds with Michael Arbuthnot', 'US', now()), +(26160, 'Renovation Nightmares Caught on Tape', 'US', now()), +(26161, 'Confessions: Animal Hoarding', 'US', now()), +(26162, 'Intersections', 'US', now()), +(26163, 'Hardcore Partying', 'US', now()), +(26164, 'Battle of the Supercars', 'US', now()), +(26165, 'Your Chance to Dance', 'US', now()), +(26166, 'Dieter Nuhr - Nuhr die Wahrheit', 'DE', now()), +(26167, 'Wild Wales', 'UK', now()), +(26168, 'Up the Convicts', 'AU', now()), +(26169, 'The Bakery Bunch', 'US', now()), +(26170, 'The Huckabee Show', 'US', now()), +(26171, 'Extreme Makeover: Weight Loss Edition', 'US', now()), +(26172, 'Break It Down', 'US', now()), +(26173, 'Coastwatch', 'US', now()), +(26174, 'Greiti ir įsiutusios', 'LT', now()), +(26177, 'Fish Warrior', 'US', now()), +(26178, 'On the Road with Austin & Santino', 'US', now()), +(26179, 'Modern Marvels Essentials', 'US', now()), +(26180, 'John Bishop''s Britain', 'UK', now()), +(26181, 'European Athletics Championships 2010', 'UK', now()), +(26182, 'World of Tennis', 'US', now()), +(26183, 'Lucha Libre USA: Masked Warriors', 'US', now()), +(26184, 'Shark Bay', 'AU', now()), +(26185, 'Oxygen''s 25iest', 'US', now()), +(26186, 'Disorder in the Court', 'US', now()), +(26187, 'Gakuen Mokushiroku: High School of the Dead', 'JP', now()), +(26188, 'Terriers', 'US', now()), +(26189, 'Orchestra United', 'UK', now()), +(26190, 'The Amish: World''s Squarest Teenagers', 'UK', now()), +(26191, 'Ten Mile Menu', 'UK', now()), +(26192, 'The Secret Tourist', 'UK', now()), +(26193, 'Roger And Val Have Just Got In', 'UK', now()), +(26194, 'The Statler Brothers Show', 'US', now()), +(26195, 'The Oak Ridge Boys Live from Las Vegas', 'US', now()), +(26196, 'Stedenspel', 'NL', now()), +(26197, 'Tweede Leven, Een', 'NL', now()), +(26198, 'Lekker...!', 'NL', now()), +(26199, 'Bende Bij De Beesten', 'NL', now()), +(26200, 'XXS', 'NL', now()), +(26201, 'De Geheimen van Barslet', 'NL', now()), +(26202, 'Close to Home (UK)', 'UK', now()), +(26203, 'TV Antis', 'LT', now()), +(26204, 'The Boss is Coming to Dinner', 'UK', now()), +(26205, 'Falling Skies', 'US', now()), +(26206, 'Clash of the Continents', 'US', now()), +(26207, 'Lietuvos daina', 'LT', now()), +(26208, 'Emilija', 'LT', now()), +(26209, 'Sessions', 'US', now()), +(26210, 'Afternoon Live', 'UK', now()), +(26211, 'Odd Man Out (UK)', 'UK', now()), +(26212, 'Top Chef: Just Desserts', 'US', now()), +(26213, 'Turtle''s Progess', 'UK', now()), +(26214, 'Shattered (2010)', 'CA', now()), +(26215, 'BBC America Reveals', 'US', now()), +(26216, 'Too Fat For 15: Fighting Back', 'US', now()), +(26217, 'The Spin Crowd', 'US', now()), +(26218, 'Surviving The Cut', 'US', now()), +(26219, 'Hip Korea-Seoul', 'AU', now()), +(26220, '3-ias butas', 'LT', now()), +(26221, 'Africa Laughs', 'US', now()), +(26222, 'Between the Lines 2010', 'US', now()), +(26223, 'Soul Train Gospel Express', 'US', now()), +(26224, 'Žiūrim, ką turim', 'LT', now()), +(26225, 'Kriminaliniai tyrimai', 'LT', now()), +(26226, 'Bay City', 'AU', now()), +(26227, 'Stan Lee''s SuperHumans', 'US', now()), +(26228, 'Mel B: It''s A Scary World', 'US', now()), +(26229, 'Beast Legends', 'US', now()), +(26230, 'Alan Titchmarsh''s Walks of Fame', 'UK', now()), +(26231, 'Trivia Track', 'US', now()), +(26232, 'Pinigų taksi', 'LT', now()), +(26234, 'Pete Versus Life', 'UK', now()), +(26235, 'Money (UK)', 'UK', now()), +(26236, 'Karoluko ir Pencės rytas', 'LT', now()), +(26237, '3@three', 'UK', now()), +(26238, 'The Deep', 'UK', now()), +(26239, 'Dan Snow''s Norman Walks', 'UK', now()), +(26240, 'Šok su manimi', 'LT', now()), +(26241, 'The Normans', 'UK', now()), +(26242, 'The Great British Home Movie Roadshow', 'UK', now()), +(26243, 'In Therapie', 'NL', now()), +(26244, 'Dannii Minogue: Style Queen', 'UK', now()), +(26245, 'Weg met 3', 'NL', now()), +(26246, 'Oneindig Verlangen', 'NL', now()), +(26247, 'Mushiuta', 'JP', now()), +(26248, 'Pričiupom', 'LT', now()), +(26249, 'Live at Five', 'UK', now()), +(26250, 'Sky News Today', 'UK', now()), +(26251, 'The Live Desk (UK)', 'UK', now()), +(26252, 'Great Railway Adventures with Dan Cruickshank', 'UK', now()), +(26253, 'Gyvenimas pagal moteris', 'LT', now()), +(26254, 'The Legend of Korra', 'US', now()), +(26255, 'Deeper Throat', 'US', now()), +(26256, 'Lietuvos perlai', 'LT', now()), +(26257, 'Shiki', 'JP', now()), +(26258, 'Baton', 'JP', now()), +(26259, 'Must Be The Music', 'UK', now()), +(26260, 'The Lion Ranger', 'US', now()), +(26261, 'Killing Time', 'AU', now()), +(26262, 'Drama Trails', 'UK', now()), +(26263, 'The People Next Door (AUS)', 'AU', now()), +(26264, 'Gears And Tears', 'UK', now()), +(26265, 'Who Knows Best', 'UK', now()), +(26266, 'Help! My House Is Falling Down', 'UK', now()), +(26267, 'Kakadu', 'LT', now()), +(26268, 'Medisch Centrum', 'NL', now()), +(26269, 'Grandma''s House', 'UK', now()), +(26270, 'Restoration Roadshow', 'UK', now()), +(26271, 'Dinner Date (UK)', 'UK', now()), +(26272, 'Huizenjacht', 'NL', now()), +(26273, 'Big City Park', 'UK', now()), +(26274, 'Zaterdagavondshow met Marc-Marie & Beau, De', 'NL', now()), +(26275, 'Gekste Guinness Wereldrecords, De', 'NL', now()), +(26276, 'Leukste Verborgen Cameragrap van Nederland, De', 'NL', now()), +(26277, 'Tienermoeders (NL)', 'NL', now()), +(26278, 'Making Fiends', 'US', now()), +(26279, 'Undercover Boss (NL)', 'NL', now()), +(26280, 'Seikimatsu Occult Gakuin', 'JP', now()), +(26282, 'The Great Outdoors (UK)', 'UK', now()), +(26283, 'This Is Not My Life', 'NZ', now()), +(26284, 'Чебурашка', 'SU', now()), +(26285, 'Gift ~eternal rainbow~', 'JP', now()), +(26286, 'Mr. Horn', 'US', now()), +(26287, 'Seitokai Yakuindomo', 'JP', now()), +(26288, 'Nurarihyon no Mago', 'JP', now()), +(26289, 'Tono to Issho', 'JP', now()), +(26290, 'Asobi ni Iku yo!', 'JP', now()), +(26291, 'Otome Youkai Zakuro', 'JP', now()), +(26292, 'Kuragehime', 'JP', now()), +(26293, 'Star Driver Kagayaki no Takuto', 'JP', now()), +(26294, 'Togainu no Chi', 'JP', now()), +(26295, 'MM!', 'JP', now()), +(26296, 'Hyakka Ryouran: Samurai Girls', 'JP', now()), +(26297, 'Yosuga no Sora', 'JP', now()), +(26298, 'Tantei Opera Milky Holmes', 'JP', now()), +(26299, 'Ore no Imouto ga Konna ni Kawaii Wake ga Nai', 'JP', now()), +(26300, 'Sora no Otoshimono', 'JP', now()), +(26301, 'Soredemo Machi wa Mawatteiru', 'JP', now()), +(26302, 'Windkracht 10', 'BE', now()), +(26303, 'Shinrei Tantei Yakumo', 'JP', now()), +(26304, 'Bakuman.', 'JP', now()), +(26305, 'Alles kan beter', 'BE', now()), +(26306, 'Mag ik u kussen?', 'BE', now()), +(26307, 'Zonde van de zendtijd', 'BE', now()), +(26309, 'Mercator', 'BE', now()), +(26310, 'Unforgivable Crimes', 'US', now()), +(26311, 'The Short List', 'US', now()), +(26312, 'Familieportret, Het', 'NL', now()), +(26313, 'Oceans Blue', 'US', now()), +(26314, 'One Water', 'US', now()), +(26315, 'Sharkwater', 'US', now()), +(26316, 'The Cove', 'US', now()), +(26317, 'Superfest', 'US', now()), +(26318, 'Beach Heat: Miami', 'US', now()), +(26319, 'Maltin on Movies', 'US', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(26320, 'Luke Gamble’s Vet Adventures', 'UK', now()), +(26321, 'The Nightlife', 'US', now()), +(26322, 'Speed of Life', 'US', now()), +(26323, 'Jay Glazer''s Training Camp Party', 'US', now()), +(26324, 'CNBC Bizography', 'US', now()), +(26325, 'ID Films', 'US', now()), +(26326, 'The Nate Berkus Show', 'US', now()), +(26327, 'Stephen Tompkinson''s Australian Balloon Adventure', 'UK', now()), +(26328, 'Secret Britain', 'UK', now()), +(26329, 'Vexed', 'UK', now()), +(26330, 'The Michael Ball Show', 'UK', now()), +(26331, 'The Cupcake Girls', 'US', now()), +(26332, 'The Great British Bake Off', 'UK', now()), +(26333, 'Digging For Britain', 'UK', now()), +(26334, 'Fantasy World Cup', 'UK', now()), +(26335, 'Nightline Prime', 'US', now()), +(26336, 'Twisted (US)', 'US', now()), +(26337, 'Who The (Bleep) Did I Marry?', 'US', now()), +(26338, 'Hardcover Mysteries', 'US', now()), +(26339, 'American Occult', 'US', now()), +(26340, 'Primal Root: Elements Of Balance', 'BE', now()), +(26341, 'Beyond Survival With Les Stroud', 'US', now()), +(26342, 'Blood Dolphins', 'US', now()), +(26343, 'TNA Reaction', 'US', now()), +(26344, 'Misija: Lietuvis', 'LT', now()), +(26345, 'Gutta Boys', 'NO', now()), +(26346, 'Bugging Out', 'US', now()), +(26347, 'Harry Loves Lisa', 'US', now()), +(26348, 'The A-List: New York', 'US', now()), +(26349, 'Football Wives', 'US', now()), +(26350, 'The Great Food Truck Race', 'US', now()), +(26351, 'Swamp People', 'US', now()), +(26352, 'Nick Swardson''s Pretend Time', 'US', now()), +(26353, 'Rock ''n Roll Fantasy Camp', 'US', now()), +(26354, 'Mountain Gorilla', 'UK', now()), +(26355, 'Sky News at Six', 'UK', now()), +(26356, 'Outcasts', 'UK', now()), +(26357, 'Beethoven (UK)', 'UK', now()), +(26358, 'Solve My Mystery', 'US', now()), +(26359, 'Steam Hot Yoga', 'US', now()), +(26360, 'Stanley: On the Go', 'US', now()), +(26361, 'Best Places I''ve Ever Been', 'US', now()), +(26362, 'Knofje', 'NL', now()), +(26363, 'Horsepower With Martin Clunes', 'UK', now()), +(26364, 'Invitation Only', 'US', now()), +(26365, 'Dean Of Invention', 'US', now()), +(26367, 'Jedward: Let Loose', 'UK', now()), +(26368, 'Middle EastEnders', 'UK', now()), +(26369, 'E numbers: An Edible Adventure', 'UK', now()), +(26370, 'The Saturdays: 24/7', 'UK', now()), +(26371, 'Total Drama Action', 'CA', now()), +(26372, 'Adrenalina', 'US', now()), +(26373, 'Latino 101', 'US', now()), +(26374, 'Dresscue Me', 'US', now()), +(26850, 'Jean Michel Jarre at the Pyramids', 'EG', now()), +(26376, 'Happy Hour (RO)', 'RO', now()), +(26377, 'Broken Trail', 'US', now()), +(26378, 'Svenska Dialektmysterier', 'SE', now()), +(26379, 'The Poker Lounge', 'UK', now()), +(26380, 'Downsized', 'US', now()), +(26381, 'Sister Wives', 'US', now()), +(26382, 'Sarah Palin''s Alaska', 'US', now()), +(26383, 'American Country Awards', 'US', now()), +(26384, 'Fox Soccer Tonight', 'US', now()), +(26385, 'Garbage Moguls', 'US', now()), +(26386, 'Mitsudomoe', 'JP', now()), +(26387, 'Ookami-san to Shichinin no Nakama-tachi', 'JP', now()), +(26388, 'Amagami SS', 'JP', now()), +(26389, 'Rainbow Nisha Rokubou no Shichinin', 'JP', now()), +(26390, 'Shukufuku no Campanella', 'JP', now()), +(26391, 'Densetsu no Yuusha no Densetsu', 'JP', now()), +(26392, 'Giant Killing', 'JP', now()), +(26393, 'Uragiri wa Boku no Namae wo Shitte Iru', 'JP', now()), +(26395, 'Yojouhan Shinwa Taikei', 'JP', now()), +(26397, 'Juuni Kokuki', 'JP', now()), +(26399, 'The Hunt For Britain''s Sex Traffickers', 'UK', now()), +(26400, 'Women''s Professional Soccer', 'US', now()), +(26401, 'Lost Girl', 'CA', now()), +(26402, 'The Atlanta Child Murders', 'US', now()), +(26403, 'The People''s Detective', 'UK', now()), +(26404, 'Zevo-3', 'US', now()), +(26405, 'Two Weeks in Hell', 'US', now()), +(26406, 'Bad Universe', 'US', now()), +(26407, 'Gareth Malone''s Extraordinary School For Boys', 'UK', now()), +(26408, 'Sam And Mark''s TMi Friday', 'UK', now()), +(26409, 'The Young Ones (2010)', 'UK', now()), +(26410, 'The Big School Lottery', 'UK', now()), +(26411, 'Beckii: Schoolgirl Superstar at 14', 'UK', now()), +(26412, 'Hero Factory', 'US', now()), +(26413, 'Hounded', 'UK', now()), +(26414, 'Maximum Drive', 'US', now()), +(26415, 'Benidorm Bastards (NL)', 'NL', now()), +(26416, 'Toon Hermans', 'NL', now()), +(26417, 'Richard Dawkins'' Age of Reason', 'UK', now()), +(26418, 'Mad Libs', 'US', now()), +(26419, 'Quints By Surprise', 'US', now()), +(26420, 'Sandblast', 'US', now()), +(26421, 'Soccer Talk Live', 'US', now()), +(26423, 'Freaky Eaters (US)', 'US', now()), +(26424, 'Sextuplets Take NYC', 'US', now()), +(26425, 'LFL Presents Friday Night Football on MTV2', 'US', now()), +(26426, 'Regular Show', 'US', now()), +(26427, 'Mad', 'US', now()), +(26428, '360 sessions', 'UK', now()), +(26429, 'Underground War', 'US', now()), +(26430, 'Convoy (2010', 'US', now()), +(26431, 'Access Hollywood Live', 'US', now()), +(26432, 'All-American Handyman', 'US', now()), +(26433, 'The Benson Interruption', 'US', now()), +(26434, 'UEFA Champions League', 'UK', now()), +(26435, 'GMT', 'UK', now()), +(26436, 'Kažkas atsitiko', 'LT', now()), +(26437, 'Kviečiu šokti', 'LT', now()), +(26438, 'Kviečiu šokti. Pradžia', 'LT', now()), +(26439, 'KK2', 'LT', now()), +(26440, 'Iki pasimatymo, mama', 'LT', now()), +(26441, 'Žvaigždžių klubas', 'LT', now()), +(26442, 'Neišgalvoti gyvenimai', 'LT', now()), +(26443, 'Širdys paklydėlės', 'LT', now()), +(26444, 'Drąsos kaina', 'LT', now()), +(26445, 'Muzikos čempionų taurė', 'LT', now()), +(26446, 'How to Take Stunning Pictures', 'UK', now()), +(26447, 'Head Rush', 'US', now()), +(26448, 'If God Is Willing and Da Creek Don''t Rise', 'US', now()), +(26449, 'Bad Dog! (US)', 'US', now()), +(26450, 'Dive', 'UK', now()), +(26451, 'Van Popster tot Operaster', 'NL', now()), +(26452, 'My Name Is ...', 'NL', now()), +(26453, 'Timboektoe', 'NL', now()), +(26454, 'Out of de Blue (NL)', 'NL', now()), +(26455, 'Advocatenclub, De', 'NL', now()), +(26456, 'Ja ik wil... Rutte', 'NL', now()), +(26457, 'Madiwodovrijdagshow', 'NL', now()), +(26458, 'Lipdub', 'NL', now()), +(26459, 'Oh my god!', 'NL', now()), +(26460, 'Dorpse meiden', 'NL', now()), +(26461, 'Door 1 deur', 'NL', now()), +(26462, 'Scrooged', 'NL', now()), +(26463, 'Tiende van Tijl, De', 'NL', now()), +(26464, 'Hermans Kookeiland', 'NL', now()), +(26465, 'Open en bloot (NL)', 'NL', now()), +(26466, 'Dr. Ellen', 'NL', now()), +(26467, 'Trinny & Susannah: Missie Holland', 'NL', now()), +(26468, 'Upside Down', 'NL', now()), +(26469, '10 ways to turn you on', 'NL', now()), +(26470, 'Zij is van mij', 'NL', now()), +(26471, 'Oh Oh Cherso', 'NL', now()), +(26472, 'Weijers ontweekt', 'NL', now()), +(26473, 'The Private Life Of … (NL)', 'NL', now()), +(26474, 'Human Sacrifice', 'US', now()), +(26475, 'Road Cops', 'NZ', now()), +(26476, 'Bouquet of Barbed Wire (2010)', 'UK', now()), +(26477, 'My Family''s Crazy Gap Year', 'UK', now()), +(26478, 'Him & Her', 'UK', now()), +(26479, 'Surgery School', 'UK', now()), +(26480, 'My Story', 'UK', now()), +(26481, 'This is England ''86', 'UK', now()), +(26482, 'Alan Davies'' Teenage Revolution', 'UK', now()), +(29405, 'Family Game Night', 'US', now()), +(26484, 'Bang U', 'US', now()), +(26485, 'Badass', 'US', now()), +(26486, 'Hollywood Uncensored with Sam Rubin', 'US', now()), +(26487, 'Yes We Canberra!', 'AU', now()), +(26488, 'Extreme Duudsonit', 'FI', now()), +(26489, 'Climbing Great Buildings', 'UK', now()), +(26490, 'Timothy Spall: Somewhere at Sea', 'UK', now()), +(26491, 'Nikki and Nora', 'US', now()), +(26492, 'Live ''n'' Deadly', 'UK', now()), +(26493, 'The Rob Brydon Show', 'UK', now()), +(26494, 'Cheetah Kingdom', 'UK', now()), +(26495, 'Paul O''Grady Live', 'UK', now()), +(26496, 'The King is Dead', 'UK', now()), +(26497, 'Panda Week with Nigel Marven', 'UK', now()), +(26498, 'Lucky Letters', 'NL', now()), +(26499, 'Mi Pecado', 'MX', now()), +(26500, 'Sky News at Ten', 'UK', now()), +(26501, 'X Faktor (HU)', 'HU', now()), +(26502, 'Žvaigždžių karai', 'LT', now()), +(26503, 'Swift Justice with Nancy Grace', 'US', now()), +(26504, 'Playboy''s Coeds', 'US', now()), +(26505, 'Mano TV3 - visada su manimi!', 'LT', now()), +(26506, 'Popstars (Germany)', 'DE', now()), +(26507, 'Valanda su Rūta', 'LT', now()), +(26508, 'The Beat (2010)', 'US', now()), +(26509, 'Highlight Express', 'US', now()), +(26510, 'Fish Hooks', 'US', now()), +(26511, '100 Greatest Artists of All Time', 'US', now()), +(26512, 'Profiles', 'US', now()), +(26513, 'Girl on the Run', 'US', now()), +(26514, 'Dodge Danpei', 'JP', now()), +(26515, 'Dash Kappei', 'JP', now()), +(26516, 'Kodėl?', 'LT', now()), +(26517, 'Prieš srovę', 'LT', now()), +(26518, 'First, Fast, Now', 'UK', now()), +(26519, 'SKY Sports News at Seven', 'UK', now()), +(26520, 'Sport Tonight', 'UK', now()), +(26521, '71 Degrees North', 'UK', now()), +(26522, 'Ramsay''s Best Restaurant', 'UK', now()), +(26523, 'Love on the Rocks', 'US', now()), +(26524, 'ASBO Teen to Beauty Queen', 'UK', now()), +(26525, 'Allemachtig 80!', 'NL', now()), +(26526, 'Nieuwsuur', 'NL', now()), +(26527, 'Food', 'UK', now()), +(26528, 'Pownews', 'NL', now()), +(26529, 'Alex Reid Fights Back', 'UK', now()), +(26530, 'Filthy Rotten Scoundrels', 'UK', now()), +(26531, 'In het Vuur van de Storm', 'NL', now()), +(26532, 'Je zal het maar zijn', 'NL', now()), +(26533, 'Hjerte til hjerte', 'NO', now()), +(26534, 'Politie te paard', 'NL', now()), +(26535, 'Altijd Wat', 'NL', now()), +(26536, 'Neonletters', 'NL', now()), +(26537, 'Michael Wood''s Story Of England', 'UK', now()), +(26538, 'Ochtendspits', 'NL', now()), +(26539, 'Acorralada', 'VE', now()), +(26540, 'Met vier in bed', 'BE', now()), +(26541, 'stressvakantie', 'BE', now()), +(26542, 'Meals in Moments', 'UK', now()), +(26543, 'Eddie Stobart: Trucks and Trailers', 'UK', now()), +(26544, 'Rory and Paddy''s Even Greater British Adventure', 'UK', now()), +(26545, 'Rush Zone: Guardians of the Core', 'US', now()), +(26546, 'The Voice of Holland', 'NL', now()), +(26547, 'Lena - Liebe meines Lebens', 'DE', now()), +(26548, 'An Idiot Abroad', 'UK', now()), +(26549, 'Super Nurses', 'UK', now()), +(26550, 'Sortilegio', 'MX', now()), +(26551, 'Cuna de lobos', 'MX', now()), +(26552, 'Das Haus Anubis', 'DE', now()), +(26553, 'Weißensee', 'DE', now()), +(26554, 'Gyvenimas yra gražus', 'LT', now()), +(26555, 'The Cat in the Hat Knows A Lot About That', 'US', now()), +(26556, 'Holland Doc', 'NL', now()), +(26557, 'Close Up (NL)', 'NL', now()), +(26558, 'World of Jenks', 'US', now()), +(26559, 'Game Time Decisions', 'US', now()), +(26560, 'The Grid (2010)', 'US', now()), +(26561, 'Skateboard Street League', 'US', now()), +(26562, 'A Different Spin with Mark Hoppus', 'US', now()), +(26563, 'ADRL Tour 2010', 'US', now()), +(26564, 'Bikini Allstars', 'US', now()), +(26565, 'Fitness Beauties', 'US', now()), +(26566, 'Real & Chance: Legend Hunters', 'US', now()), +(26567, 'De Beste Hobbykok van Vlaanderen', 'BE', now()), +(26568, 'Wild Weather', 'UK', now()), +(26569, 'Hofleveranciers', 'NL', now()), +(26570, 'Laat maar zitten', 'NL', now()), +(26571, 'Stephen Hawking''s Universe (2010)', 'UK', now()), +(26572, 'River Cottage Everyday', 'UK', now()), +(26573, 'Lost Land of the Tiger', 'UK', now()), +(26574, 'Britain''s Youngest Boarders', 'UK', now()), +(26575, 'The Off Road Championship', 'US', now()), +(26576, 'UFCW College Gameday', 'US', now()), +(26577, 'Mad Hungry with Lucinda Scala Quinn', 'US', now()), +(26578, 'America''s Best', 'US', now()), +(26579, 'Meat & Potatoes', 'US', now()), +(26580, 'Rachael Ray''s Week in a Day', 'US', now()), +(26581, 'Bitchin’ Kitchen', 'US', now()), +(26582, 'The Minimalist', 'US', now()), +(26583, 'Brunch @ Bobby’s', 'US', now()), +(26584, 'Kelsey’s Essentials', 'US', now()), +(26585, 'United Tastes of America', 'US', now()), +(26586, 'Seven Days', 'UK', now()), +(26587, 'Heilig Gras', 'NL', now()), +(26588, 'Richard Bacon''s Beer and Pizza Club', 'UK', now()), +(26589, 'Louis Theroux''s BBC 2 Specials', 'UK', now()), +(26590, 'Robs Grote Tuinverbouwing', 'NL', now()), +(26591, 'Brandpunt (2010)', 'NL', now()), +(26592, 'Taarten van Abel, De', 'NL', now()), +(26593, 'Harry And Paul', 'UK', now()), +(26594, 'Going South', 'NL', now()), +(26595, 'Highgrove: Alan Meets Prince', 'UK', now()), +(26596, 'Moeders van Nu', 'NL', now()), +(26597, 'WIA 4', 'NL', now()), +(26598, 'Pasión de Gavilanes', 'CO', now()), +(26599, 'My Parents Are Gonna Love You', 'NL', now()), +(26600, 'Dr. Horrible''s Sing-Along Blog', 'US', now()), +(26601, '4-stjerners reise', 'NO', now()), +(26602, 'Community Surface', 'US', now()), +(26603, 'Fight Me MMA', 'US', now()), +(26604, 'Big Ten Icons', 'US', now()), +(26605, 'The Gossip Queens', 'US', now()), +(26606, 'The Naked Civil Servant', 'UK', now()), +(26607, 'The Comeback (UK)', 'UK', now()), +(26608, 'PRISM Awards', 'US', now()), +(26609, 'Bergen Binnen', 'NL', now()), +(26610, 'Embarrassing Bodies', 'UK', now()), +(26611, 'Dubbelpion', 'NL', now()), +(26612, 'Je mist meer dan je ziet', 'NL', now()), +(26613, 'Lietuvos vyrų krepšinio rinktinės sutiktuvės', 'LT', now()), +(26614, 'Vreemde Praktijken', 'NL', now()), +(26615, 'Downton Abbey', 'UK', now()), +(26616, 'Ask Rhod Gilbert', 'UK', now()), +(26617, 'DCI Banks', 'UK', now()), +(26618, 'The Classroom Experiment', 'UK', now()), +(26619, 'Secret Dealers', 'UK', now()), +(26620, 'The Office (IL)', 'IL', now()), +(26621, 'Titanic: The Mission', 'UK', now()), +(26622, 'Whites', 'UK', now()), +(26623, 'Nigella Kitchen', 'UK', now()), +(26624, 'Masterchef (NL)', 'NL', now()), +(26625, 'The 2010 Commonwealth Games', 'UK', now()), +(26626, 'The Octonauts', 'UK', now()), +(26627, 'Are You Fitter Than a Pensioner?', 'UK', now()), +(26628, 'Judge Karen''s Court', 'US', now()), +(26629, 'Street Court', 'US', now()), +(26630, 'Better', 'US', now()), +(26631, 'The Larry Keith Show', 'US', now()), +(26632, 'The John Walsh Show', 'US', now()), +(26633, 'The Tempestt Bledsoe Show', 'US', now()), +(26634, 'The Carnie Wilson Show', 'US', now()), +(26635, 'The Danny Bonaduce Show', 'US', now()), +(26636, 'Gabrielle', 'US', now()), +(26637, 'The Mark Walberg Show', 'US', now()), +(26638, 'The Stephanie Miller Show', 'US', now()), +(26639, 'Twist The Throttle', 'US', now()), +(26640, 'Thune Files', 'NO', now()), +(26641, 'Typisk Norsk', 'NO', now()), +(26642, 'Ebba och Didrik', 'SE', now()), +(26643, 'Junior MasterChef Australia', 'AU', now()), +(26644, 'An Englishman in New York', 'UK', now()), +(26645, 'The Talk', 'US', now()), +(26646, 'Scarlett Hill', 'CA', now()), +(26647, 'Crimes of Passion', 'US', now()), +(26648, 'Raw', 'IE', now()), +(26649, 'Wipeout (NO)', 'NO', now()), +(26650, 'The Top 100: NFL''s Greatest Players', 'US', now()), +(26651, 'House Of Glam', 'US', now()), +(26652, 'Friday Night Games', 'AU', now()), +(26653, 'Head 2 Head', 'AU', now()), +(26654, 'Bartenderskolen', 'NO', now()), +(26655, 'Sports Mash: Taking the Mic', 'UK', now()), +(26656, 'Acteren is ook een vak', 'NL', now()), +(26657, 'Verborgen Verleden', 'NL', now()), +(26659, 'Triumfo arka', 'LT', now()), +(26660, 'Ludzie chudego', 'PL', now()), +(26661, 'Retour Uruzgan', 'NL', now()), +(26662, 'Naaste Familie', 'NL', now()), +(26663, 'The Genius of British Art', 'UK', now()), +(26664, 'Wedding House', 'UK', now()), +(26665, 'Jancis Robinson''s Wine Course', 'UK', now()), +(26666, 'All Shook Up!', 'UK', now()), +(26667, 'Tardisodes', 'UK', now()), +(26668, 'My Girlfriend is a Gumiho', 'KR', now()), +(26669, 'Katy Brand vs', 'UK', now()), +(26670, 'Labas vakaras, mielasis', 'LT', now()), +(26671, 'Sea Nation', 'US', now()), +(26672, 'The Celluloid World Of Dezmond Rezillo', 'UK', now()), +(26673, 'Lip Service', 'UK', now()), +(26674, 'A History Of Horror With Mark Gatiss', 'UK', now()), +(26675, 'Lite Sallskap', 'SE', now()), +(26676, 'Interlude', 'JP', now()), +(26677, 'Mighty Ships', 'CA', now()), +(26678, 'Alchemija', 'LT', now()), +(26679, 'Wij van België', 'BE', now()), +(26681, 'Ten Ways', 'US', now()), +(26682, 'Sankirtos', 'LT', now()), +(26683, 'Drūtsraigtis. Lietuvos Galiūnas 2010', 'LT', now()), +(26684, 'Pasaulis pagal lietuvius', 'LT', now()), +(26685, 'Burbulas', 'LT', now()), +(26686, 'Kryžminė ugnis', 'LT', now()), +(26687, 'Breaking Up The Biggest', 'UK', now()), +(26688, 'Mano žvaigždė', 'LT', now()), +(26689, 'Jagerpilotene', 'NO', now()), +(26690, 'Šventinis Mokytojų dienos koncertas', 'LT', now()), +(26691, 'TV3 Žinios', 'LT', now()), +(26692, 'Den unge Fleksnes', 'NO', now()), +(26693, 'Be recepto', 'LT', now()), +(26694, 'Sekmadienio rytas', 'LT', now()), +(26695, 'Šeštadienio rytas', 'LT', now()), +(26696, 'Har Ar Ditt Liv', 'SE', now()), +(26698, 'Wheeler Dealers (2003)', 'UK', now()), +(26699, 'Gordon Ramsay: Beyond Boiling Point', 'UK', now()), +(26701, 'NileCity 105,6', 'SE', now()), +(26702, 'Advokaterna', 'SE', now()), +(26703, 'Den rätte för Rosing', 'SE', now()), +(26704, 'Storbynatt', 'NO', now()), +(26705, 'Buurtsuper, De', 'NL', now()), +(26706, 'Starke Man', 'SE', now()), +(26707, 'Robinsonekspedisjonen', 'NO', now()), +(26708, 'Atvirai su žvaigžde', 'LT', now()), +(26709, 'Karštas vakaras', 'LT', now()), +(26710, 'Verslo širšės', 'LT', now()), +(26711, '2 minutės šlovės', 'LT', now()), +(26712, 'Hoe Vind Ik Een Vent?', 'NL', now()), +(26713, 'Moordvrouw', 'NL', now()), +(26714, 'Acteurs. De', 'NL', now()), +(26715, 'Nesėsi - nepjausi', 'LT', now()), +(26716, 'Borgen', 'DK', now()), +(26717, 'Studio E & W', 'NL', now()), +(26718, 'Gek Op Wielen', 'NL', now()), +(26719, 'RTL Autowereld', 'NL', now()), +(26720, 'Angry Planet', 'CA', now()), +(26721, 'Single Father', 'UK', now()), +(26722, 'Thorne', 'UK', now()), +(26723, 'Jamie''s 30 Minute Meals', 'UK', now()), +(26724, 'Wild Britain with Ray Mears', 'UK', now()), +(26725, 'Pasivaikščiojimai', 'LT', now()), +(26726, 'Todd & The Book Of Pure Evil', 'CA', now()), +(26727, 'The Only Way Is Essex', 'UK', now()), +(26728, 'IRT Deadliest Roads', 'US', now()), +(26729, 'Me And My Monsters', 'UK', now()), +(26730, 'PhoneShop', 'UK', now()), +(26731, 'Burnistoun', 'UK', now()), +(26732, 'Barend & Barend', 'NL', now()), +(26733, 'Jorritsma Blikt Vooruit', 'NL', now()), +(26734, 'Gemeentebelangen', 'NL', now()), +(26735, 'Josie and John James: What Happened Next?', 'UK', now()), +(26736, '7 Days (NZ)', 'NZ', now()), +(26737, 'Magerarenai Onna', 'JP', now()), +(26738, 'Dag (NO)', 'NO', now()), +(26739, 'Kai švenčia', 'LT', now()), +(26740, 'The Borrowers', 'UK', now()), +(26741, 'Iron Man (JP)', 'JP', now()), +(26742, 'The Secret Garden', 'UK', now()), +(26743, 'Jean Michel Jarre: Music and Lyrics', 'FR', now()), +(26744, 'The Amazing Race Australia', 'AU', now()), +(26745, 'Making History', 'US', now()), +(26746, 'Party Wars', 'UK', now()), +(26748, 'Hvem kan slå Aamodt og Kjus?', 'NO', now()), +(26749, 'Panty & Stocking with Garterbelt', 'JP', now()), +(26750, 'The Return of the Borrowers', 'UK', now()), +(26751, 'I Cesaroni', 'IT', now()), +(26752, 'Brandende Kwesties', 'NL', now()), +(26753, 'Bende van Sjako, De', 'NL', now()), +(26754, 'Den Uyl en de affaire Lockheed', 'NL', now()), +(26755, 'InSecurity', 'CA', now()), +(26756, 'Renaissance Revolution', 'UK', now()), +(26757, 'Verandering, De', 'NL', now()), +(26758, 'Kami nomi zo Shiru Sekai', 'JP', now()), +(26759, 'Wie van de Drie (2010)', 'NL', now()), +(26760, 'The Beauty of Oil Painting with Gary Jenkins', 'US', now()), +(26761, 'Hollywood Treasure', 'US', now()), +(26762, 'Fortune Arterial Akai Yakusoku', 'JP', now()), +(26763, 'På Hjul med Dag Otto', 'NO', now()), +(26764, 'Light Fantastic', 'UK', now()), +(26765, 'Bygg Og Bedrag', 'NO', now()), +(26766, 'Transformers: Prime', 'US', now()), +(26767, 'Fort Boyard (FI)', 'FI', now()), +(26768, 'Street Market Chef', 'UK', now()), +(26769, 'G.I. Joe Renegades', 'US', now()), +(26770, 'Oberon', 'NL', now()), +(26771, 'Read My Lips', 'NL', now()), +(26772, 'Cosmic Quantum Ray', 'DE', now()), +(26773, 'Paradise Hotel Sverige', 'SE', now()), +(26774, 'Call Me Fitz', 'CA', now()), +(26775, 'Ratownicy', 'PL', now()), +(26776, 'Urbain', 'BE', now()), +(26777, 'De jaren stillekes', 'BE', now()), +(26778, 'The Secret Life of the National Grid', 'UK', now()), +(26779, 'Meldpunt!', 'NL', now()), +(26780, 'Walhalla', 'NL', now()), +(26781, 'Paranormale Kinderen', 'NL', now()), +(26782, 'Belpop', 'BE', now()), +(26783, 'Green Lantern: The Animated Series', 'US', now()), +(26784, 'Men With Brooms', 'CA', now()), +(26785, 'Bam''s World Domination', 'US', now()), +(26786, 'The Hairy Bikers'' Cook Off', 'UK', now()), +(26787, 'Freak Like Me', 'UK', now()), +(26788, 'Wives', 'UK', now()), +(26789, 'Los Zand', 'BE', now()), +(26790, 'Being Terry Kennedy', 'US', now()), +(26791, 'The Stephen K Amos Show', 'UK', now()), +(26792, 'Monte Carlo or Bust', 'UK', now()), +(26793, 'Wait Till Your Teacher Gets Home!', 'UK', now()), +(26794, 'De Kavijaks', 'BE', now()), +(26795, 'Le cœur a ses raisons', 'CA', now()), +(26796, 'Skating With the Stars', 'US', now()), +(26797, 'Jimmy Hopper Show, De', 'NL', now()), +(26798, 'Vlaamse Hollywood Vrouwen', 'BE', now()), +(26799, 'De Smaak van de Keyser', 'BE', now()), +(26800, 'Danni Lowinski', 'DE', now()), +(26801, 'Soy tu fan', 'MX', now()), +(26802, 'Coal', 'US', now()), +(26803, 'Fakes', 'AU', now()), +(26804, 'Geologic Journey', 'CA', now()), +(26805, 'Birds Britannia', 'UK', now()), +(26806, 'Aanpakkers', 'NL', now()), +(26807, 'Nederland op Wielen', 'NL', now()), +(26808, 'Holland’s Best Fashion Designer', 'NL', now()), +(26809, 'Herrie In De Keuken', 'NL', now()), +(26810, 'Sinnasnekker''n', 'NO', now()), +(26811, 'Coppers', 'UK', now()), +(26812, 'Wolven', 'BE', now()), +(26813, 'Ushi en Van Dijk', 'NL', now()), +(26814, 'Animal Madhouse', 'UK', now()), +(26815, 'James May''s Man Lab', 'UK', now()), +(26816, 'The Trip', 'UK', now()), +(26817, 'Back On the Job', 'UK', now()), +(26818, 'The Little House', 'UK', now()), +(26819, 'Wallace and Gromit''s World of Invention', 'UK', now()), +(26820, 'Johnny Kingdom''s Year with the Birds', 'UK', now()), +(26821, 'Turn Back Time (2010)', 'UK', now()), +(26822, 'David Attenborough''s First Life', 'UK', now()), +(26823, 'Giles And Sue Live The Good Life', 'UK', now()), +(26824, 'Alan''s Garden Secrets', 'UK', now()), +(26825, 'Edwardian Farm', 'UK', now()), +(26826, 'One Night Stand With', 'UK', now()), +(26827, 'Neveneffecten', 'BE', now()), +(26828, 'Dapkai ir Butkai', 'LT', now()), +(26829, 'The First Men in the Moon', 'UK', now()), +(26830, 'Veckans brott', 'SE', now()), +(26831, 'White Van Man (2010)', 'UK', now()), +(26832, 'Battlestar Galactica: Blood & Chrome', 'US', now()), +(26833, 'Missie Amazone', 'BE', now()), +(26834, 'Taylor Swift''s Journey To Fearless', 'US', now()), +(26835, 'Three Inches', 'US', now()), +(26836, 'El Cártel de Los Sapos', 'CO', now()), +(26837, 'Mark Watson kicks Off', 'UK', now()), +(26838, 'Robotomy', 'US', now()), +(26839, 'American Restoration', 'US', now()), +(26840, 'Ateities lyderiai', 'LT', now()), +(26841, 'Drinking Made Easy', 'US', now()), +(26842, 'Celebrity Coach Trip', 'UK', now()), +(26843, 'Beyblade (US)', 'JP', now()), +(26844, 'R.E.L.: Romeyn en Lamoree', 'NL', now()), +(26845, 'Rake', 'AU', now()), +(26846, '21 manieren om gelukkig te worden', 'NL', now()), +(26847, 'Feuten', 'NL', now()), +(26848, 'Remembrance Week', 'UK', now()), +(26849, 'The Zoo (UK)', 'UK', now()), +(26851, 'The Secret Life of the motorway', 'UK', now()), +(26852, 'Ancient Worlds', 'UK', now()), +(26853, 'Rewind The 60s', 'UK', now()), +(26854, 'The Indian Doctor', 'UK', now()), +(26855, 'Accused (UK)', 'UK', now()), +(26856, 'Making Scotland''s Landscape', 'UK', now()), +(26857, '3JS op weg naar het songfestival', 'NL', now()), +(26858, 'Auction Kings', 'US', now()), +(26859, 'Running Russell Simmons', 'US', now()), +(26860, 'What the Ancients Knew', 'US', now()), +(26861, 'Megadrive', 'US', now()), +(26862, 'Sábado Gigante', 'US', now()), +(26863, 'God en klein Pierke', 'BE', now()), +(26864, 'Carlos', 'US', now()), +(26865, 'Apocalypse: The Second World War (UK)', 'UK', now()), +(26866, 'Ullared', 'SE', now()), +(26867, 'Böda Camping', 'SE', now()), +(26868, 'Rory and Paddy''s Great British Adventure', 'UK', now()), +(26869, 'Carpool', 'UK', now()), +(26870, 'Mario Lopez: Saved By The Baby', 'US', now()), +(26871, 'Beat De Mol', 'NL', now()), +(26872, 'Beeny''s Restoration Nightmare', 'UK', now()), +(26873, 'Meet the Parents', 'UK', now()), +(26874, 'Lagerhuis, Het', 'NL', now()), +(26875, 'KRO Reporter', 'NL', now()), +(26876, 'Kinderen voor kinderen', 'NL', now()), +(26877, 'Magie van de Wetenschap', 'NL', now()), +(26878, 'Leiders gezocht', 'NL', now()), +(26879, 'Bellicher, de macht van meneer Miller', 'NL', now()), +(26880, 'Wereldwijnen', 'NL', now()), +(26881, 'American Dream (UK)', 'UK', now()), +(26882, 'The Foods That Make Billions', 'UK', now()), +(26883, 'Pelgrimscode, De', 'NL', now()), +(26884, 'Politie Paramaribo', 'NL', now()), +(26885, 'Dance Cam Slam', 'US', now()), +(26886, 'Spartacus: Gods of the Arena', 'US', now()), +(26887, 'Stuklen Dom', 'BG', now()), +(26888, 'Olly Murs: Revealed', 'UK', now()), +(26889, 'The Fairy Jobmother (US)', 'US', now()), +(26890, 'Oddities', 'US', now()), +(26891, 'Digimon Xros Wars', 'JP', now()), +(26892, 'Born Survivors', 'UK', now()), +(26893, 'The Art Of Germany', 'UK', now()), +(26894, 'WANNA-BEn', 'NZ', now()), +(26895, 'Våra Vänners Liv', 'SE', now()), +(26896, 'After The First 48', 'US', now()), +(26897, 'Radioresepsjonen på TV', 'NO', now()), +(26898, 'Grand Designs Australia', 'AU', now()), +(26899, 'Kreutzer kommt', 'DE', now()), +(26902, 'Bimble''s Bucket', 'UK', now()), +(26903, 'Robert''s Web', 'UK', now()), +(26904, 'Any Human Heart', 'UK', now()), +(26905, 'Married to Rock', 'US', now()), +(26906, 'What''s Eating You', 'US', now()), +(26907, 'That''s Tough', 'US', now()), +(26908, 'Zonder Ernst', 'NL', now()), +(26909, 'Heren van Oranje', 'NL', now()), +(26910, 'Yo y Tú (Me and You)', 'CO', now()), +(26911, 'Pavlov', 'NL', now()), +(26912, 'Motown Live', 'US', now()), +(26913, 'Earth Investigated', 'UK', now()), +(26914, 'Sinterklaasjournaal, Het', 'NL', now()), +(26915, 'Ian Hislop''s Age Of The Do-Gooders', 'UK', now()), +(26916, 'Snooker – UK Championships 2010', 'UK', now()), +(26917, 'Goong', 'KR', now()), +(26918, 'Sunrise Earth', 'US', now()), +(26919, '24 valandos', 'LT', now()), +(26920, 'Minute to Win It (NL)', 'NL', now()), +(26921, 'The Morgana Show', 'UK', now()), +(26922, 'Frankie Boyle''s Tramadol Nights', 'UK', now()), +(26923, 'Birth of a Sports Car', 'CA', now()), +(26924, 'Mary Stayed Out All Night', 'KR', now()), +(26925, '"Inside"', 'US', now()), +(26926, 'Joe McElderry: Cheek To Cheek', 'UK', now()), +(26927, 'The Nature of Things', 'CA', now()), +(26928, 'Working Class', 'US', now()), +(26929, 'Jeremy Kyle: Morning Surgery', 'UK', now()), +(26930, 'Ergens onderweg', 'BE', now()), +(26931, 'Diplomatavadász', 'HU', now()), +(26932, 'At Home with the Georgians', 'UK', now()), +(26933, 'John Sergeant on Tracks of Empire', 'UK', now()), +(26934, 'Countrywise Kitchen', 'UK', now()), +(26935, 'Playful Kiss', 'KR', now()), +(26936, 'The world god only knows', 'JP', now()), +(26937, 'Alpha 0.7', 'DE', now()), +(26938, 'Duts', 'BE', now()), +(26939, 'Die Snobs', 'DE', now()), +(26940, 'Why Why Love', 'TW', now()), +(26941, 'Shokojo Seira', 'JP', now()), +(26942, 'Bloody Monday', 'JP', now()), +(26943, 'Radio 1 Teen Awards', 'UK', now()), +(26944, 'BANNED From The BIBLE', 'US', now()), +(26945, 'The Most Evil Men and Women in History', 'US', now()), +(26946, 'Goed Fout!', 'NL', now()), +(26947, 'Operatie Live', 'NL', now()), +(26948, 'Namens Jou', 'NL', now()), +(26949, 'Kirstie and Phil''s Perfect Christmas', 'UK', now()), +(26950, 'The House That Made Me', 'UK', now()), +(26951, 'Wielerland', 'NL', now()), +(26952, 'Mediazine', 'NL', now()), +(26953, 'Op zoek naar Zorro', 'NL', now()), +(26954, '3 Fat Brides, 1 Thin Dress', 'UK', now()), +(26955, 'Quest for Sunken Warships', 'US', now()), +(26956, 'I Am Alex Reid', 'UK', now()), +(26957, 'China''s Mega-Dam', 'US', now()), +(26958, 'When Vacations Attack', 'US', now()), +(26959, 'Tailgate Warriors with Guy Fieri', 'US', now()), +(26960, 'Auction Hunters', 'US', now()), +(26961, 'Gold Rush', 'US', now()), +(26962, 'Joris’ Kerstboom', 'NL', now()), +(26963, 'I''m a Celebrity - Jungle Royals', 'UK', now()), +(26964, 'Kerry Katona: The Next Chapter', 'UK', now()), +(26965, 'Rick Stein''s Cornish Christmas', 'UK', now()), +(26966, 'Coronation Street - 50 Years, 50 Moments', 'UK', now()), +(26967, 'Dionne and Friends', 'US', now()), +(26968, 'Big Break (US)', 'US', now()), +(26969, 'Dubbelleven', 'BE', now()), +(26970, 'Million Dollar Money Drop', 'US', now()), +(26971, 'Dessert First', 'US', now()), +(26972, 'Brad Meltzer''s Decoded', 'US', now()), +(26973, 'Marry Me (US)', 'US', now()), +(26974, 'Storage Wars', 'US', now()), +(26975, 'Outrageous Food', 'US', now()), +(26976, 'Great Migrations', 'US', now()), +(26977, 'World''s Worst Weather', 'US', now()), +(26978, 'Strike Force (2010)', 'US', now()), +(26979, 'Green Wheels', 'US', now()), +(26980, 'Helicopter Missions', 'US', now()), +(26981, 'The Ride', 'US', now()), +(26982, 'What the Sell?!', 'US', now()), +(26983, 'Crime Scene Wild', 'US', now()), +(26984, 'The Brain', 'US', now()), +(26985, 'The Steve Harvey Project', 'US', now()), +(26986, 'Pawn Queens', 'US', now()), +(26987, 'Science of the Deep', 'US', now()), +(26988, 'science of storm chasing', 'US', now()), +(26989, 'Restless Planet', 'US', now()), +(26990, 'Super Animals', 'US', now()), +(26991, 'Desperate Crossing: The Untold Story of the Mayflower', 'US', now()), +(26992, 'Brew Masters', 'US', now()), +(26993, 'Spy Wars', 'US', now()), +(26994, 'Boys before flowers', 'KR', now()), +(26995, '12 Nights at the Academy', 'US', now()), +(26996, 'Into the Lost Crystal Caves', 'US', now()), +(26997, 'Hollywood''s Hottest Car Chases', 'US', now()), +(26998, 'Cold Diggers', 'US', now()), +(26999, 'Facing Evil', 'US', now()), +(27000, 'Wild Justice', 'US', now()), +(27001, 'Bridalplasty', 'US', now()), +(27002, 'The Ghost Prophecies', 'US', now()), +(27003, 'Big Mac: Inside The McDonald''s Empire', 'US', now()), +(27004, 'Dangerous Company', 'US', now()), +(27005, 'Heaven''s Gate The Definitive Story', 'US', now()), +(27006, 'Inside Planet Earth', 'US', now()), +(27007, 'Madness in the White City', 'US', now()), +(27008, 'Manson''s Missing Victims', 'US', now()), +(27009, 'Monster Bug Wars!', 'US', now()), +(27010, 'My Child Is a Monkey', 'US', now()), +(27011, 'Shipwreck! Captain Kidd', 'US', now()), +(27012, 'Come Fly With Me (2010)', 'UK', now()), +(27013, 'The Nativity', 'UK', now()), +(27014, 'Upstairs Downstairs (2010)', 'UK', now()), +(34095, 'Old Jack''s Boat', 'UK', now()), +(27016, 'Journey of Life', 'UK', now()), +(27017, 'Generals at War', 'US', now()), +(27018, 'The Beauty of Diagrams', 'UK', now()), +(27019, 'The Atheism Tapes', 'UK', now()), +(27020, 'Frontline Battle Machines with Mike Brewer', 'US', now()), +(27021, 'Battle of Arnhem: Tour of Duty', 'UK', now()), +(27022, 'Pornography: The Secret History Of Civilization', 'UK', now()), +(27023, 'Riddles of the Bible', 'US', now()), +(27024, 'Gigantic', 'US', now()), +(27025, 'The Guild', 'US', now()), +(27026, 'Inside the Tiger Trade', 'UK', now()), +(27027, 'Africa''s Great Rift', 'US', now()), +(27028, 'Take Two with Phineas and Ferb', 'US', now()), +(27029, 'Deadly Descent', 'US', now()), +(27030, 'Hablemos de Cine', 'US', now()), +(27031, 'Het Sterke Geslacht', 'BE', now()), +(27032, 'Pompeii (UK)', 'UK', now()), +(27033, 'This is JLS', 'UK', now()), +(27034, 'The Savoy', 'UK', now()), +(27035, 'Jeff Brazier: Me and My Brother', 'UK', now()), +(27036, 'I Survived...Beyond and Back', 'US', now()), +(27037, 'Trzeci oficer', 'PL', now()), +(27038, 'Duch w dom', 'PL', now()), +(27039, 'Szpilki na Giewoncie', 'PL', now()), +(27040, 'Big Cat Week', 'US', now()), +(27041, 'The Vice Guide to Everything', 'US', now()), +(27042, 'Girls Who Like Boys Who Like Boys', 'US', now()), +(27043, 'Hookers: Saved on the Strip', 'US', now()), +(27044, 'De allerslimste mens ter wereld', 'BE', now()), +(27045, 'Påpp og Råkk', 'NO', now()), +(27046, 'The One Ronnie', 'UK', now()), +(27047, 'Jamie''s Best Christmas Bits', 'UK', now()), +(27048, 'Come Rain Come Shine', 'UK', now()), +(27049, 'Stuck with Hackett', 'US', now()), +(27050, 'Pets 101', 'US', now()), +(27051, 'Blais Out', 'US', now()), +(27052, 'Bama Belles', 'US', now()), +(27053, 'Oprah Presents Master Class', 'US', now()), +(27054, 'Extreme Clutter', 'US', now()), +(27055, 'Miracle Detectives', 'US', now()), +(27056, 'Season 25: Oprah Behind the Scenes', 'US', now()), +(27057, 'Your OWN Show: Oprah''s Search for the Next TV Star', 'US', now()), +(27058, 'Let''s Stay Together', 'US', now()), +(27060, 'Onion SportsDome', 'US', now()), +(27061, 'Lights Out (2011)', 'US', now()), +(27062, 'Joan & Melissa: Joan Knows Best?', 'US', now()), +(27063, 'A Stand Up Mother', 'US', now()), +(27064, 'Meet the In-Laws', 'US', now()), +(27065, 'Rechtbank, De', 'NL', now()), +(27066, 'Mysteries at the Museum', 'US', now()), +(27067, 'David Suchet on the Orient Express', 'UK', now()), +(27068, 'Christmas with Gordon', 'UK', now()), +(27069, '''t Spaanse Schaep', 'NL', now()), +(27070, 'Gesprek op 2', 'NL', now()), +(27071, 'RTL 5 Wintersport', 'NL', now()), +(27072, 'The T.Ocho Show', 'US', now()), +(27073, 'When Rome Ruled', 'US', now()), +(27074, 'Living in the Time of Jesus', 'US', now()), +(27075, 'Nazi Hunters', 'US', now()), +(27076, 'Idiot Savants', 'US', now()), +(27077, 'Just William (2010)', 'UK', now()), +(27078, 'Wie kiest Tatjana?', 'NL', now()), +(27079, 'Al Murray''s German Adventure', 'UK', now()), +(27080, 'Arctic With Bruce Parry', 'UK', now()), +(27081, 'Stargazing Live', 'UK', now()), +(27082, 'The Unforgettable', 'UK', now()), +(27083, 'Het Huis Anubis En De Vijf Van Het Magische Zwaard', 'NL', now()), +(27084, 'Rod Rocket', 'US', now()), +(27887, 'Sket Dance', 'JP', now()), +(27086, 'El internado', 'ES', now()), +(27088, 'Get Out Alive', 'US', now()), +(27089, 'Waraeru Koi wa Shitakunai', 'JP', now()), +(27090, 'Xmas Nante Daikirai', 'JP', now()), +(27091, 'A History Of Ancient Britain', 'UK', now()), +(27092, 'This is Michael Buble', 'UK', now()), +(27093, 'The Nation''s Favourite ABBA Song', 'UK', now()), +(27094, 'Going Platinum', 'US', now()), +(27095, 'Taking Care with Joan Lunden', 'US', now()), +(27096, 'Slam!', 'US', now()), +(27097, 'Comedy Central''s Hot List', 'US', now()), +(27098, 'The Adventures of Pow Wow the Indian Boy', 'US', now()), +(27099, 'Turbo Dogs', 'CA', now()), +(27100, 'Master of the Mix', 'US', now()), +(27101, 'TeenNick HALO Awards', 'US', now()), +(27102, 'Cops & Coyotes', 'US', now()), +(27103, 'Phowned!', 'US', now()), +(27104, 'Tormented By Genius', 'US', now()), +(27376, 'Stories from Toytown featuring Larry the Lamb', 'UK', now()), +(27106, 'Macy''s Thanksgiving Day Parade', 'US', now()), +(27107, 'Weapon X', 'US', now()), +(27108, 'Third Reich', 'US', now()), +(27109, 'The Beatles on Record', 'US', now()), +(27110, 'National Dog Show', 'US', now()), +(27111, 'McDonald''s Thanksgiving Parade', 'US', now()), +(27112, 'I''m Telling!', 'US', now()), +(27113, 'Famous and Fearless', 'UK', now()), +(27114, 'Louie Spence''s Showbusiness', 'UK', now()), +(27115, 'Into The Dragon''s Lair', 'US', now()), +(27116, 'The Thanksgiving Day Parade on CBS', 'US', now()), +(27117, 'R.L. Stine''s The Haunting Hour', 'US', now()), +(27118, 'I Used To Be Fat', 'US', now()), +(27119, 'Red Garden', 'JP', now()), +(27120, 'Dan vs.', 'US', now()), +(27121, 'Ron''s grote ganzenbord', 'NL', now()), +(27122, 'Sneak Previews', 'US', now()), +(27123, 'De medisch specialist als dokter en als mens', 'NL', now()), +(27124, 'Groot Dictee der Nederlandse Taal, Het', 'NL', now()), +(27125, 'At the Movies (1982)', 'US', now()), +(27126, 'At the Movies (2011)', 'US', now()), +(27127, 'Pop! Goes the Country', 'US', now()), +(27128, 'Trekant', 'NO', now()), +(27129, 'Zen', 'UK', now()), +(27130, 'The Magicians (2011)', 'UK', now()), +(27131, 'The Sinking Of The Laconia', 'UK', now()), +(27132, 'Erica op Reis', 'NL', now()), +(27133, 'Dick And Dom''s Funny Business', 'UK', now()), +(27134, 'Human Planet', 'UK', now()), +(27135, 'Baking Made Easy', 'UK', now()), +(27136, 'Hollywood Connection', 'US', now()), +(27137, 'The Secret Mediterranean with Trevor Mcdonald', 'UK', now()), +(27138, 'Martin Clunes: Man to Manta', 'UK', now()), +(27139, 'Penn & Teller: Fool Us', 'UK', now()), +(27140, 'Dream Lives for Sale', 'UK', now()), +(27141, 'Michel Roux''s Service', 'UK', now()), +(27269, 'Wolverine', 'JP', now()), +(27143, '100 Limite', 'CA', now()), +(27144, 'Holmes Inspection', 'US', now()), +(27145, 'My Strange Addiction', 'US', now()), +(27146, 'Cash & Cari', 'US', now()), +(27147, 'Kidnapped by the Kids', 'US', now()), +(27148, 'Searching for...', 'US', now()), +(27149, 'Candice Tells All', 'US', now()), +(31514, 'Great Planes', 'US', now()), +(27151, 'Taquinons la planète', 'CA', now()), +(27152, 'Ask Oprah''s All-Stars', 'US', now()), +(27153, 'Закон и порядок: отдел оперативных расследований', 'RU', now()), +(27154, 'Oz and Hugh Raise the Bar', 'UK', now()), +(27155, 'The Bear Family and Me', 'UK', now()), +(27156, 'How Drugs Work', 'UK', now()), +(27157, 'Sun... Sex & Suspicious Parents', 'UK', now()), +(27158, 'Life''s Too Short', 'UK', now()), +(27159, 'Day Under Fire', 'US', now()), +(27160, 'Permanent Mark', 'US', now()), +(27161, 'Flying Wild Alaska', 'US', now()), +(27162, 'Masters Snooker 2011', 'UK', now()), +(27163, 'Piets mooiste kerstversiering', 'NL', now()), +(27164, 'Op zoek naar God', 'NL', now()), +(27165, 'Life is beautiful', 'NL', now()), +(27166, 'Stinkend, Beroemd & Dakloos', 'NL', now()), +(27167, 'Met je Neus in de Boter', 'NL', now()), +(27168, 'Taxi 0-22', 'CA', now()), +(27169, 'Dark Realm', 'CA', now()), +(27170, 'Infested', 'US', now()), +(27171, 'Закон и Порядок. Преступный умысел', 'RU', now()), +(27172, 'Winners & Losers', 'AU', now()), +(27173, 'Disney Parks Christmas Day Parade', 'US', now()), +(27174, 'Ed vs. Spencer', 'UK', now()), +(27175, 'Cricket on the Hearth', 'US', now()), +(27176, 'The Vanessa Show (2011)', 'UK', now()), +(27177, 'Jamie''s Fish Supper', 'UK', now()), +(27178, 'Athena: Goddess of War', 'KR', now()), +(32796, 'The Paradise', 'UK', now()), +(27180, 'Around the World with Willy Fog', 'ES', now()), +(27181, 'Tournament of Roses Parade', 'US', now()), +(27182, 'Hollywood Christmas Parade', 'US', now()), +(27183, 'IMDb''s 20th Anniversary Star of the Day', 'US', now()), +(27184, 'The Wacky Adventures of Ronald McDonald', 'US', now()), +(27185, 'Histoires de filles', 'CA', now()), +(27186, 'Celebrity Five Go to...', 'UK', now()), +(27187, 'That Sunday Night Show', 'UK', now()), +(27188, 'Joe McElderry: Chart Show Chat', 'UK', now()), +(27189, 'Kidnap & Ransom', 'UK', now()), +(27190, 'Transporter: The Series', 'DE', now()), +(27191, 'The Erin Simpson Show', 'NZ', now()), +(27192, 'AKA Jessica Jones', 'US', now()), +(27193, 'Taken: The Series', 'US', now()), +(27194, 'True Lies', 'US', now()), +(27195, 'Hell on Wheels', 'US', now()), +(27196, 'Can''t Take it with You', 'UK', now()), +(27197, 'Men of Rock', 'UK', now()), +(27198, 'The X Life', 'US', now()), +(27199, 'I, Predator', 'US', now()), +(27200, 'Pipe Dream', 'US', now()), +(27201, 'Sons of Guns', 'US', now()), +(27202, 'Swarm Chasers', 'US', now()), +(27203, 'Beyond Scared Straight', 'US', now()), +(27204, 'Dirk Gently', 'UK', now()), +(27205, 'Judge Karen', 'US', now()), +(27206, 'Northern Ireland''s Greatest Haunts', 'UK', now()), +(27207, 'Les Lavigueur, la vraie histoire', 'CA', now()), +(27208, 'Hogs Gone Wild', 'US', now()), +(27209, 'Wild Animal Repo', 'US', now()), +(27210, 'Heavy', 'US', now()), +(27211, 'Ultimate Women Challenge', 'US', now()), +(27212, 'James Ellroy''s LA: City Of Demons', 'US', now()), +(27213, 'Face Off', 'US', now()), +(27214, 'Christmas with the Mormon Tabernacle Choir', 'US', now()), +(27215, 'Black in Latin America', 'US', now()), +(27216, 'Dining With Death', 'US', now()), +(27217, 'Minuit, le soir', 'CA', now()), +(27218, 'TROUBLEMAN', 'JP', now()), +(27219, 'Portlandia', 'US', now()), +(27220, 'Kourtney and Kim Take New York', 'US', now()), +(27221, 'La fin du monde est à sept heures', 'CA', now()), +(27222, 'Infoman', 'CA', now()), +(27223, '450, Chemin du Golf', 'CA', now()), +(27224, 'Radio Enfer', 'CA', now()), +(27225, 'Starlight: For the Children', 'UK', now()), +(27226, 'Goud, Wierook en Mirre', 'NL', now()), +(27227, 'Avonturen van Kruimeltje, De', 'NL', now()), +(27228, 'André van Duin theater revue', 'NL', now()), +(27229, 'MAX Proms', 'NL', now()), +(27230, 'The Snowman', 'UK', now()), +(27231, 'Father Christmas', 'UK', now()), +(27232, 'Yahşi Cazibe', 'TR', now()), +(27233, 'Bob Gratton: ma vie, my life', 'CA', now()), +(27234, 'The Fran Drescher Tawk Show', 'US', now()), +(27235, 'Kamen Rider OOO', 'JP', now()), +(27237, 'Liever dan geluk', 'NL', now()), +(27238, 'Fortier', 'CA', now()), +(27239, 'Young Guns', 'US', now()), +(27240, 'Lizard Lick Towing', 'US', now()), +(27241, 'Naughty or Nice', 'US', now()), +(27242, 'True NBA', 'US', now()), +(27243, 'What Not to Wear: Extra Layer', 'US', now()), +(27244, 'RuPaul''s Drag Race: Untucked', 'US', now()), +(27245, 'Cristina Ferrare''s Big Bowl of Love', 'US', now()), +(27246, 'Best of Trading Spaces', 'US', now()), +(27247, 'The Opener', 'US', now()), +(27248, 'Greatest Tank Battles', 'US', now()), +(27249, 'mtvU Woodie Awards', 'US', now()), +(27250, 'Grande Ourse', 'CA', now()), +(27251, 'Une grenade avec ça?', 'CA', now()), +(27252, 'To nisi', 'GR', now()), +(27253, 'Onion News Network', 'US', now()), +(27254, 'Mongo Wrestling Alliance', 'US', now()), +(27255, 'Desert Car Kings', 'US', now()), +(27256, 'Boomtown (2011)', 'US', now()), +(27257, 'Kidnap & Rescue', 'US', now()), +(27258, 'Basta', 'BE', now()), +(27259, 'Code Blue', 'JP', now()), +(27260, 'As Cariocas', 'BR', now()), +(27261, 'Byakkotai', 'JP', now()), +(27262, 'Cameramen Who Dare', 'US', now()), +(27263, 'Rio: Rainbow Gate!', 'JP', now()), +(27264, 'Mahou Shoujo Madoka Magika', 'JP', now()), +(27265, 'L''Gros Show', 'CA', now()), +(27266, 'Testament of Youth', 'UK', now()), +(27267, 'IS: Infinite Stratos', 'JP', now()), +(27268, 'Yumekui Merry', 'JP', now()), +(27270, 'Gosick', 'JP', now()), +(27271, 'On The Spot (2009)', 'HU', now()), +(27272, 'Postcode Nieuwjaarsshow, De', 'NL', now()), +(27273, 'Straatdokter, De', 'NL', now()), +(27274, 'Beste, De', 'NL', now()), +(27275, 'Cardfight!! Vanguard', 'JP', now()), +(27276, 'In het ziekenhuis', 'NL', now()), +(27277, 'Freezing (JP)', 'JP', now()), +(27278, 'Terug naar mijn roti', 'NL', now()), +(27279, 'Onii-chan no Koto Nanka Zenzen Suki Janain Dakara ne!!', 'JP', now()), +(27280, 'Ali B op volle toeren', 'NL', now()), +(27281, 'Beelzebub', 'JP', now()), +(27284, 'Must Love Cats', 'US', now()), +(27285, 'Prosto w serce', 'AR', now()), +(27286, 'Omertà, la loi du silence', 'CA', now()), +(27287, 'The Secret Millionaire (AUS)', 'AU', now()), +(27288, 'Wie Is De Reisleider?', 'NL', now()), +(27289, 'Km/h', 'CA', now()), +(27290, 'Out Of The Wild: Venezuela', 'US', now()), +(27291, 'Accidental Farmer', 'UK', now()), +(27292, 'Dragon Crisis!', 'JP', now()), +(27293, 'Level E', 'JP', now()), +(27294, 'Fractale', 'JP', now()), +(27295, 'Hourou Musuko', 'JP', now()), +(27297, 'Theatre Night', 'UK', now()), +(27298, 'Screen One', 'UK', now()), +(27299, 'Performance (UK)', 'UK', now()), +(27300, 'Fast and Loose (UK)', 'UK', now()), +(27301, 'Piers Morgan Tonight', 'US', now()), +(27302, 'Akai Ito', 'JP', now()), +(27303, 'Leave It to Todhunter', 'UK', now()), +(27304, 'MTV New Year''s Eve', 'US', now()), +(27305, 'Il était une fois dans le trouble', 'CA', now()), +(27306, 'Nightmare Next Door', 'US', now()), +(27307, 'House of Anubis', 'UK', now()), +(27308, 'The Hour (2011)', 'UK', now()), +(27309, 'Australian Pirate Patrol', 'AU', now()), +(27310, 'The Cheetah Girls', 'US', now()), +(27311, 'The Wild Within', 'US', now()), +(27312, 'Alaska Wing Men', 'US', now()), +(27313, 'Stolen Voices, Buried Secrets', 'US', now()), +(27316, 'Happiness is a Warm Blanket, Charlie Brown', 'US', now()), +(27317, 'Fox Movietone News', 'US', now()), +(27320, 'Captain America (1944)', 'US', now()), +(27322, 'Superman (1948)', 'US', now()), +(31575, 'Felicity Kendal''s Indian Shakespeare Quest', 'UK', now()), +(27324, 'Atom Man vs. Superman', 'US', now()), +(32174, 'The Hollow Crown', 'UK', now()), +(27326, 'Rescue from Gilligan''s Island', 'US', now()), +(27327, 'Knots Landing: Back to the Cul-de-Sac', 'US', now()), +(27328, 'Revenge of the Nerds', 'US', now()), +(27329, 'Revenge of the Nerds: The Series', 'US', now()), +(27331, 'The Omen', 'US', now()), +(27332, 'Hyakujuu Sentai GaoRanger', 'JP', now()), +(27333, '19-2', 'CA', now()), +(27334, 'The Haney Project', 'US', now()), +(27335, 'Precure', 'JP', now()), +(27336, 'Precure Max Heart', 'JP', now()), +(27337, 'Blue-Collar Dogs', 'US', now()), +(27338, 'Ticket to Ride', 'US', now()), +(27339, 'World''s Deadliest Towns', 'US', now()), +(27340, 'Friends of NRA', 'US', now()), +(27341, 'Whitetail Nation', 'US', now()), +(27342, 'Young Blood', 'US', now()), +(27343, 'FOXPRO Fast & Furious', 'US', now()), +(27344, 'Wardens', 'US', now()), +(27345, 'AWA Whitetail Pro Series', 'US', now()), +(27346, 'Avastars', 'NL', now()), +(27347, 'Gary: Tank Commander', 'UK', now()), +(27348, 'Hugh''s Fish Fight', 'UK', now()), +(27349, 'Elite Model Look', 'NL', now()), +(27350, 'Weg naar het Avondland, De', 'BE', now()), +(27351, 'Zingen', 'NL', now()), +(27352, 'Hotel de Toekomst', 'NL', now()), +(27353, 'Dokters aan de costa', 'NL', now()), +(27354, 'Yacht Vision', 'NL', now()), +(27355, 'Die Wehrmacht - Eine Bilanz', 'DE', now()), +(27356, 'The Comics Choice Awards', 'UK', now()), +(27357, 'Birth of Britain', 'UK', now()), +(27358, 'Rome Wasn''t Built in a Day', 'UK', now()), +(27359, 'Riese', 'US', now()), +(27360, 'Le Gentleman', 'CA', now()), +(27361, 'Mary Portas: Secret Shopper', 'UK', now()), +(27362, 'The Joy of Teen Sex', 'UK', now()), +(27363, '10 O''Clock Live', 'UK', now()), +(27364, 'THE LATE SESSION with Waleed Aly', 'AU', now()), +(27365, 'Forensic Factor', 'US', now()), +(27366, '10 Best Space-Saving Solutions', 'US', now()), +(27367, 'Top 20 Games', 'US', now()), +(27368, 'Mutant Planet', 'US', now()), +(27369, 'L''Auberge du chien noir', 'CA', now()), +(27370, 'Perfection', 'UK', now()), +(27371, 'Big Fat Gypsy Weddings', 'UK', now()), +(27372, 'Life in a Cottage Garden with Carol Klein', 'UK', now()), +(27373, 'Voetbalfans', 'NL', now()), +(27374, 'Binnen de Minuut', 'BE', now()), +(27375, 'Die perfekte Minute', 'DE', now()), +(27377, 'Buccaneers and Bones', 'US', now()), +(27378, 'Zona''s Awesome Fishing Show', 'US', now()), +(27379, 'The Saltwater Series', 'US', now()), +(27380, 'Alaska Outdoors Television', 'US', now()), +(27381, 'The Fish Fishburne Show', 'US', now()), +(27382, 'Dirt Knights', 'US', now()), +(27383, 'SWAT: Miami-Dade', 'US', now()), +(27384, 'Top 10 Right Now', 'US', now()), +(27385, 'Catchin'' Air', 'US', now()), +(27386, 'Hungry Girl', 'US', now()), +(27387, 'The Killing', 'US', now()), +(27388, 'Natsu no Koi wa Nijiiro ni Kagayaku', 'JP', now()), +(27389, 'The Looney Tunes Show (2011)', 'US', now()), +(27390, 'Dream House: Log Cabin', 'US', now()), +(27391, 'Teen Mom 2', 'US', now()), +(27392, 'Last Woman Standing (US)', 'US', now()), +(27393, 'Brooklyn Kinda Love', 'US', now()), +(27394, 'Mega Dens', 'US', now()), +(27395, 'Hollywood Dailies', 'US', now()), +(27396, 'Julia Bradbury''s German Wanderlust', 'UK', now()), +(27397, 'Hard', 'FR', now()), +(27398, 'Kaibutsu-kun', 'JP', now()), +(27399, 'Fly Fishing Television with Kelly Galloup', 'US', now()), +(27400, 'Making Stuff Stronger, Smaller, Cleaner, Smarter', 'US', now()), +(27401, 'Restaurant: Impossible', 'US', now()), +(27402, 'Le Groulx Luxe', 'CA', now()), +(27403, 'The Brain: A Secret History', 'UK', now()), +(27404, 'Mijn Geheime Missie', 'NL', now()), +(27405, 'Ik heb er schoon genoeg van!', 'NL', now()), +(27406, 'De Pappenheimers', 'BE', now()), +(27407, 'Sveriges mästerkock', 'SE', now()), +(27408, 'Jack and Knaves', 'UK', now()), +(27409, 'Stjärnkockarna', 'SE', now()), +(27410, 'Ici Louis-José Houde', 'CA', now()), +(27411, '3X Rien', 'CA', now()), +(27412, 'Filip och Fredriks Årskrönika 2010', 'SE', now()), +(27413, 'Terry Wogan''s Ireland', 'UK', now()), +(27414, 'Gok''s Clothes Roadshow', 'UK', now()), +(27415, 'Beste Voetballers Ooit, De', 'NL', now()), +(27416, 'Toegift, De', 'NL', now()), +(27417, 'Gooische Frieten', 'NL', now()), +(27418, 'Maison Close', 'FR', now()), +(27419, 'Dieu merci!', 'CA', now()), +(27420, 'Welkom Thuis', 'NL', now()), +(27421, 'The Sing Off (NL)', 'NL', now()), +(27422, 'How TV Ruined Your Life', 'UK', now()), +(27423, 'Je Leven op de Rit', 'NL', now()), +(27424, 'Rastamouse', 'UK', now()), +(27425, 'Millennium (SWE)', 'SE', now()), +(27426, 'Les Pieds dans la marge', 'CA', now()), +(27427, 'Chambres en ville', 'CA', now()), +(27428, 'A Farmer''s Life For Me', 'UK', now()), +(27429, 'The Chinese Are Coming', 'UK', now()), +(27430, 'Grand Designs Indoors', 'UK', now()), +(27431, 'Tia & Tamera', 'US', now()), +(27432, 'The Punk Years', 'UK', now()), +(27433, 'Drugged', 'US', now()), +(27434, 'Auction Packed', 'US', now()), +(27435, 'Prison Women', 'US', now()), +(27436, 'Secret Service Files', 'US', now()), +(27437, 'Mad Dogs', 'UK', now()), +(27438, 'Allemaal FILM', 'NL', now()), +(27439, 'Starry Sky', 'JP', now()), +(27440, '2 Frères', 'CA', now()), +(27441, 'Blanche', 'CA', now()), +(27442, 'Gordon Ramsay: Shark Bait', 'UK', now()), +(27444, 'Les Filles de Caleb', 'CA', now()), +(27445, 'Felix Stör en Ingenjör', 'SE', now()), +(27446, 'Nationale Geldtest, De', 'NL', now()), +(27447, 'The Voice (US)', 'US', now()), +(27448, 'Cher Olivier', 'CA', now()), +(27449, 'Noddy', 'UK', now()), +(27450, 'Secret Story (NL)', 'NL', now()), +(27451, 'Rembrandt en ik', 'NL', now()), +(27452, 'VriendenLoterij Holland’s Next Millionaire', 'NL', now()), +(27453, 'The Great Food Revolution', 'CA', now()), +(27454, 'Extreme Universe', 'UK', now()), +(27455, 'Stranded with Les Stroud', 'CA', now()), +(27456, 'Off the Grid', 'CA', now()), +(27457, 'Ringer', 'US', now()), +(27458, 'Tournée Générale', 'BE', now()), +(27459, 'Masters of Survival', 'US', now()), +(27460, 'Baker Boys', 'UK', now()), +(27461, 'Save My Holiday', 'UK', now()), +(27462, 'Najib en Julia', 'NL', now()), +(27463, 'Marchlands', 'UK', now()), +(27464, 'Tre Brødre Som Ikke Er Brødre', 'NO', now()), +(27465, 'Silk Road', 'JP', now()), +(27466, 'Embarrassing Bodies Kids', 'UK', now()), +(27467, 'Mr Bloom''s Nursery', 'UK', now()), +(27468, 'Faulks On Fiction', 'UK', now()), +(27469, 'Iedereen is gek op Jack', 'NL', now()), +(27470, 'The Lock Up (UK)', 'UK', now()), +(27471, 'El Fantasma de Elena', 'US', now()), +(27472, 'Underbelly Files', 'AU', now()), +(27473, 'Extraordinary Dogs', 'UK', now()), +(27474, 'Fotballkrigen', 'NO', now()), +(34063, '60 Minutes Sports', 'US', now()), +(27476, 'Laugh Out Loud Comedy Festival', 'US', now()), +(27477, 'LEGO NinjaGo: Masters of Spinjitzu', 'US', now()), +(27478, 'Supah Ninjas', 'US', now()), +(27479, 'Extra Virgin', 'US', now()), +(27480, 'And Baby Will Fall', 'US', now()), +(27481, 'Kitchen Boss', 'US', now()), +(27482, 'Stalked: Someone''s Watching', 'US', now()), +(27483, 'School of Golf', 'US', now()), +(27484, 'Way Black When', 'US', now()), +(27485, 'The Mysteries of Love', 'HK', now()), +(27486, 'Ghost Writer', 'HK', now()), +(27487, 'Akakabu Kenji Kyoto-hen', 'JP', now()), +(27488, 'Countdown – Die Jagd beginnt', 'DE', now()), +(27489, 'Beauty and the Beast: The Ugly Face of Prejudice', 'UK', now()), +(27490, 'The Traveler''s Guide to Life', 'US', now()), +(27491, 'Goodnight For Justice', 'US', now()), +(27493, 'The Lost Valentine', 'US', now()), +(27494, 'Taken From Me: The Tiffany Rubin Story', 'US', now()), +(27495, 'Shinryaku! Ika Musume', 'JP', now()), +(27496, 'Bedlam', 'UK', now()), +(27497, 'Sofias änglar', 'SE', now()), +(27498, 'Lachen op zaterdag', 'NL', now()), +(27499, 'The Promise', 'UK', now()), +(27500, 'Royal Navy Caribbean Patrol', 'UK', now()), +(27501, 'One Man and His Campervan', 'UK', now()), +(27502, 'De Ronde', 'BE', now()), +(27503, 'The People''s Supermarket', 'UK', now()), +(27504, 'Cookery School', 'UK', now()), +(27505, 'The Beauty of Books', 'UK', now()), +(27506, 'Freddie Flintoff Versus the World', 'UK', now()), +(27507, 'Stansted: The Inside Story', 'UK', now()), +(27508, 'Madagascar', 'UK', now()), +(27509, 'Justice (BBC Four)', 'UK', now()), +(27510, 'Junior Doctors – Your Life In Their Hands', 'UK', now()), +(27511, 'Toughest Place To Be A ....', 'UK', now()), +(27512, 'Svensk maffia', 'SE', now()), +(27513, 'Under Pressure', 'UK', now()), +(27514, 'Kaj og Andrea', 'DK', now()), +(27515, 'Komen eten', 'NL', now()), +(27516, 'Thundercats (2011)', 'US', now()), +(27517, 'Necessary Roughness', 'US', now()), +(27518, 'Suits', 'US', now()), +(27519, 'The Gayle King Show', 'US', now()), +(27520, 'OK! TV', 'UK', now()), +(27521, 'Wereld van André Rieu, De', 'NL', now()), +(27522, 'Oído Caníbal', 'ES', now()), +(27523, 'Alcatraz', 'US', now()), +(27524, 'Mannasiðir Gillz', 'IS', now()), +(27525, 'Hlemmavideo', 'IS', now()), +(27526, 'Tvímælalaust', 'IS', now()), +(27527, 'Pressa', 'IS', now()), +(27528, 'Algjör Sveppi', 'IS', now()), +(27529, 'Ameríski Draumurinn', 'IS', now()), +(27530, 'Mér er gamanmál', 'IS', now()), +(27531, 'Auddi og Sveppi', 'IS', now()), +(27532, 'Sleepers', 'UK', now()), +(27533, 'Words Worth', 'JP', now()), +(27534, 'The Daily Show (Nederlandse editie)', 'NL', now()), +(27535, 'Marcel’s Quantum Kitchen', 'US', now()), +(27536, 'One Born Every Minute (US)', 'US', now()), +(27537, 'Hermanos y Detectives', 'AR', now()), +(27538, 'Weg, De', 'NL', now()), +(27539, 'Hay alguien ahí', 'ES', now()), +(27540, 'Halv åtta hos mig', 'SE', now()), +(27542, 'Space Police', 'UK', now()), +(27543, 'Ik Ben Saunders', 'NL', now()), +(27544, 'Rekenkamer, De', 'NL', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(27545, 'The National Lottery: Secret Fortune', 'UK', now()), +(27546, 'Seriously Funny Kids', 'US', now()), +(27547, 'Angry Kid', 'UK', now()), +(27548, 'Langt fra Las Vegas', 'DK', now()), +(27549, 'Drengene fra Angora', 'DK', now()), +(27550, 'South Riding', 'UK', now()), +(27551, 'Mrs Brown''s Boys', 'UK', now()), +(27552, 'Silk', 'UK', now()), +(27553, 'The Spice Trail', 'UK', now()), +(27554, 'Ross Kemp: Extreme World', 'UK', now()), +(27555, 'Walking the Amazon', 'UK', now()), +(27556, 'Sjön suger', 'SE', now()), +(27557, 'Bar Karma', 'US', now()), +(27558, 'Happily Divorced', 'US', now()), +(27559, 'Shooting Star Rockman', 'JP', now()), +(27560, 'Mega Man Star Force', 'JP', now()), +(27561, 'House of Lies', 'US', now()), +(27562, 'Taking on Tyson', 'US', now()), +(27563, 'Inside the Vault', 'US', now()), +(27564, 'Pril Geluk', 'NL', now()), +(27565, 'World War 1 in Colour', 'UK', now()), +(27566, '112 - på liv och död', 'SE', now()), +(27567, 'Moshidora', 'JP', now()), +(27568, 'Sengoku Otome: Momoiro Paradox', 'JP', now()), +(27569, 'The Unpoppables', 'US', now()), +(27570, 'Will Work For Nuts', 'US', now()), +(27571, 'Laid', 'AU', now()), +(27572, 'Only in America with Larry the Cable Guy', 'US', now()), +(27573, 'Our Mutual Friend', 'UK', now()), +(27574, 'Little Crackers', 'UK', now()), +(27575, 'Teen Wolf', 'US', now()), +(27576, 'Ice Brigade', 'US', now()), +(27577, 'The Almighty Johnsons', 'NZ', now()), +(27578, 'The Injustice Files', 'US', now()), +(27579, 'My Life in Books', 'UK', now()), +(27580, 'Heston''s Mission Impossible', 'UK', now()), +(27581, 'Wreck or Ready?', 'UK', now()), +(27582, 'The Model Agency', 'UK', now()), +(27583, 'When Teenage Meets Old Age', 'UK', now()), +(27584, 'All You Need Is Love', 'NL', now()), +(27585, 'Auf Achse', 'DE', now()), +(27586, 'Braxton Family Values', 'US', now()), +(27587, 'Ultimate Spider-Man', 'US', now()), +(27588, 'Geluk over de grens', 'NL', now()), +(27589, 'Forensic Heroes', 'HK', now()), +(27590, 'Sascha Grammel - Hetz mich nicht', 'DE', now()), +(27591, 'Raveleijn', 'NL', now()), +(27592, 'Dating In The Dark Australia', 'AU', now()), +(27593, 'Milkshake!', 'UK', now()), +(27594, 'Bigger, Better, Faster, Stronger', 'NZ', now()), +(27595, 'Brødrene Dal og Professor Drøvels hemmelighet', 'NO', now()), +(27596, 'Brødrene Dal og Spektralsteinene', 'NO', now()), +(27597, 'Casino', 'HU', now()), +(27598, 'Brødrene Dal og Legenden om Atlant-is', 'NO', now()), +(27599, 'Brødrene Dal og mysteriet om Karl XIIs gamasjer', 'NO', now()), +(27600, 'Jump City: Seattle', 'US', now()), +(27601, 'Breaking Down the Bars', 'US', now()), +(27602, 'Crimes Against Nature', 'US', now()), +(27603, 'Our America with Lisa Ling', 'US', now()), +(27604, 'The Real Housewives of Miami', 'US', now()), +(27605, 'Cash Cab Chicago', 'US', now()), +(27606, 'Beverly Hills Fabulous', 'US', now()), +(27607, 'Love & Hip Hop', 'US', now()), +(27608, 'Approval Matrix', 'US', now()), +(27609, 'Sins & Secrets', 'US', now()), +(27610, 'Bad Girls Club: Afterparty', 'US', now()), +(27611, 'Love/Lust', 'US', now()), +(27612, 'Social', 'US', now()), +(27613, 'The 10', 'US', now()), +(27614, 'Top 100 Right Now', 'US', now()), +(27615, 'Swing', 'US', now()), +(27616, 'SPEED Center', 'US', now()), +(27617, 'What Would You Do: OWN Edition', 'US', now()), +(27618, 'Jamie''s Food Escapes', 'US', now()), +(27619, 'Ingenious Minds', 'US', now()), +(27620, 'Renovation Rookies', 'US', now()), +(27621, 'Jamie''s Dream School', 'UK', now()), +(27622, 'Love Thy Neighbour', 'UK', now()), +(27623, 'Friday Night Dinner', 'UK', now()), +(27624, 'Dokter Deen', 'NL', now()), +(27625, 'How to Live with Women', 'UK', now()), +(27626, 'Great British Hairdresser', 'UK', now()), +(27627, 'The Boat that Guy Built', 'UK', now()), +(27628, 'OMG! With Peaches Geldof', 'UK', now()), +(27629, 'Fangene På Fortet', 'NO', now()), +(27630, 'Royal Upstairs Downstairs', 'UK', now()), +(27631, 'ZingZillas ZingBop', 'UK', now()), +(27632, 'Famous, Rich And In The Slums With Comic Relief', 'UK', now()), +(27633, 'Wonders Of The Universe', 'UK', now()), +(27634, 'Nature''s Miracle Babies', 'UK', now()), +(27635, 'Working Girls', 'UK', now()), +(27636, 'Love Triangle', 'US', now()), +(27637, 'Drew Carey''s Improv-A-Ganza', 'US', now()), +(27638, 'Show Me The Money (NL)', 'NL', now()), +(27639, 'The Judds', 'US', now()), +(27640, 'Melk & Honing', 'NL', now()), +(27641, 'Addicted to Food', 'US', now()), +(27642, 'The Way We Live Now', 'UK', now()), +(27643, 'Kevin''s Spanish Capers', 'ES', now()), +(27644, 'Snake Wranglers', 'US', now()), +(27645, 'La Piovra', 'IT', now()), +(27646, 'Cannabis: What''s the Harm?', 'UK', now()), +(27647, 'Stieg Larsson: Millenium', 'SE', now()), +(27648, 'Под прикритие', 'BG', now()), +(27649, 'Столичани в повече', 'BG', now()), +(27650, 'Carabinieri', 'IT', now()), +(27651, 'American Treasures', 'US', now()), +(27652, 'Paradijstuinen', 'NL', now()), +(27653, 'Hoe is het toch met...', 'NL', now()), +(27654, 'Zesde zintuig internationaal, Het', 'NL', now()), +(27655, 'Civilization: Is the West History?', 'UK', now()), +(27656, 'The Story of Variety with Michael Grade', 'UK', now()), +(27657, 'Ultimate Dance Battle, The', 'NL', now()), +(27658, 'Breingeheim', 'NL', now()), +(27659, 'Omroep Maxim', 'NL', now()), +(27660, 'Beast Hunter', 'US', now()), +(27661, 'The Lying Game', 'US', now()), +(27662, 'How To Stay Alive?', 'NL', now()), +(27663, 'Wie Is Mijn Vader', 'NL', now()), +(27664, 'Echte Co-Assistent, De', 'NL', now()), +(27665, 'Caroline Quentin: A Passage Through India', 'UK', now()), +(27666, 'Agony & Ecstasy: A Year with English National Ballet', 'UK', now()), +(27667, 'Great British Food Revival', 'UK', now()), +(27668, 'Monroe', 'UK', now()), +(27669, 'Морска сол', 'BG', now()), +(27670, 'Green Rose (PH)', 'PH', now()), +(27671, 'Comic Relief Does Glee Club!', 'UK', now()), +(27672, 'The Red Nose Desert Trek', 'UK', now()), +(27673, 'Bible''s Buried Secrets', 'UK', now()), +(27674, 'Neil Morrissey – Care Home Kid', 'UK', now()), +(27675, 'The British at Work', 'UK', now()), +(27676, 'Hong Gil Dong', 'KR', now()), +(27677, 'Ja Myung Go', 'KR', now()), +(27678, 'I manegen med Glenn Killing', 'SE', now()), +(27679, 'Anders och Måns', 'SE', now()), +(27680, 'Percy Tårar', 'SE', now()), +(27681, 'Kemonozume', 'JP', now()), +(27682, 'Fyra små filmer', 'SE', now()), +(27683, 'Secrets from a Stylist', 'US', now()), +(27684, 'Super City', 'NZ', now()), +(27685, 'Gladpack', 'SE', now()), +(27686, 'Tornado', 'SE', now()), +(27687, 'En himla många program', 'SE', now()), +(27688, 'Macken', 'SE', now()), +(27689, 'My Little Pony: Friendship is Magic', 'US', now()), +(27690, 'Take the Money and Run', 'US', now()), +(27691, 'Berlin Alexanderplatz', 'DE', now()), +(27692, 'Appleseed XIII', 'JP', now()), +(27693, 'Grotesco', 'SE', now()), +(27694, 'Bert', 'SE', now()), +(27695, 'De Kazakkendraaiers', 'BE', now()), +(27696, 'Next Stop', 'US', now()), +(27697, 'Morgonsoffan', 'SE', now()), +(27698, 'Varan-TV', 'SE', now()), +(27699, 'Landet brunsås', 'SE', now()), +(27700, 'Tori & Dean: sTORIbook Weddings', 'US', now()), +(27701, 'Switched at Birth', 'US', now()), +(27702, 'After Lately', 'US', now()), +(27703, 'The Assistants (2011)', 'US', now()), +(27704, 'Sverige dansar och ler', 'SE', now()), +(27705, 'All on the Line', 'US', now()), +(27706, 'Pentagon', 'SE', now()), +(27707, 'Räkfrossa', 'SE', now()), +(27708, 'Sungkyunkwan Scandal', 'KR', now()), +(27709, 'Belga Sport', 'BE', now()), +(27710, 'A''dam - E.V.A.', 'NL', now()), +(27711, 'Dichtbij het vuur', 'NL', now()), +(27712, 'Langgestraft', 'NL', now()), +(27713, 'Behind the Badge', 'US', now()), +(27714, 'Civil War Journal', 'US', now()), +(27715, 'Bride Trafficking Unveiled', 'US', now()), +(27716, 'Beltway Unbuckled: Political Secrets, Sagas, And Scandals', 'US', now()), +(27717, '24 Hour Panel People', 'UK', now()), +(27718, 'Twenty Twelve', 'UK', now()), +(27719, 'Total Blackout', 'NL', now()), +(27720, 'The Secret World of Whitehall', 'UK', now()), +(27721, 'Lily Allen: From Riches to Rags', 'UK', now()), +(27722, 'The Secret War On Terror', 'UK', now()), +(27723, 'The Crimson Petal And The White', 'UK', now()), +(27724, 'White Van Man', 'UK', now()), +(27725, 'All You Need Is Love: The Story of Popular Music', 'US', now()), +(27726, 'Les Invincibles (FR)', 'FR', now()), +(27727, 'XIII: The Series', 'CA', now()), +(27728, 'Dragon Quest: Dai no Daiboken', 'JP', now()), +(27729, 'Coming Home (US)', 'US', now()), +(27730, 'Седем часа разлика', 'BG', now()), +(27731, 'Ridiculousness', 'US', now()), +(27732, 'Sports Show with Norm Macdonald', 'US', now()), +(27733, 'Car Warriors', 'US', now()), +(27734, 'Extreme Couponing', 'US', now()), +(27735, 'Curious and Unusual Deaths', 'US', now()), +(27736, 'World''s Weirdest', 'US', now()), +(27737, 'Danball Senki', 'JP', now()), +(27738, 'Ao no Exorcist', 'JP', now()), +(27739, 'Toriko', 'JP', now()), +(27740, 'Outrageous Kid Parties', 'US', now()), +(27741, 'All About Aubrey', 'US', now()), +(27742, 'Adam Hills in Gordon St Tonight', 'AU', now()), +(27743, 'Endgame', 'CA', now()), +(27744, 'The Dance Scene', 'US', now()), +(27745, 'The Nine Lives of Chloe King', 'US', now()), +(27746, 'Mounted in Alaska', 'US', now()), +(27747, 'Simon''s Cat', 'UK', now()), +(27748, 'Hardliners', 'AU', now()), +(27749, 'Nothing Personal', 'US', now()), +(27750, 'Underwater Universe', 'US', now()), +(27751, 'Kongsvik Ungdomsskole', 'NO', now()), +(27752, 'Cuff Me If You Can', 'US', now()), +(27753, 'Total Blackout (DK)', 'DK', now()), +(27754, 'Katie', 'UK', now()), +(27755, 'Supersize Versus Superskinny Kids', 'UK', now()), +(27756, 'Katie: My Beautiful Friends', 'UK', now()), +(27757, 'Het Geslacht De Pauw', 'BE', now()), +(27758, 'FBI: Criminal Pursuit', 'US', now()), +(27759, 'Jean-Claude Van Damme: Behind Closed Doors', 'UK', now()), +(27760, 'Goldie''s Band – By Royal Appointment', 'UK', now()), +(27761, 'Cycling – World Track Championships 2011', 'UK', now()), +(27762, 'In De Gloria', 'BE', now()), +(27763, 'Roast fra Chat Noir', 'NO', now()), +(27764, 'CMT''s Next Superstar', 'US', now()), +(27765, 'Perfecte Plaatje, Het', 'NL', now()), +(27766, 'Go Cycling', 'NL', now()), +(27767, 'Vakantieliefdes', 'NL', now()), +(27768, 'Beauty & the Beast: Schoonheid zit van binnen', 'NL', now()), +(27769, 'Undercover Boss Norge', 'NO', now()), +(27770, 'Total Blackout (NO)', 'NO', now()), +(27771, 'Bingobanden', 'NO', now()), +(27772, 'Teenage Mutant Ninja Turtles (2012)', 'US', now()), +(27773, 'Wild Case Files', 'US', now()), +(27774, 'Donna Detective', 'IT', now()), +(27775, 'Cuenta Atrás', 'ES', now()), +(27776, 'Crematorio', 'ES', now()), +(27777, 'Missions That Changed the War', 'US', now()), +(27778, 'Four of a Kind', 'US', now()), +(27779, 'Deathwish Movers', 'US', now()), +(27780, 'Mauvais Karma', 'CA', now()), +(27781, 'Blonde vs. Bear', 'US', now()), +(27782, 'X-Factor France', 'FR', now()), +(27783, 'Интерны', 'RU', now()), +(27784, 'Martina Cole''s The Runaway', 'UK', now()), +(27785, '112 - Poliser', 'SE', now()), +(27786, 'Cheburashka Arere?', 'JP', now()), +(27787, 'A Hundred Years of Us', 'UK', now()), +(27788, '32 Brinkburn Street', 'UK', now()), +(27789, 'Fern', 'UK', now()), +(27790, 'My Life as an Experiment', 'US', now()), +(27791, 'Carré Viiip', 'FR', now()), +(27792, 'South Beach Classics', 'US', now()), +(27793, 'Texas Drug Wars', 'US', now()), +(27794, 'Vacation, Vacation, Vacation', 'UK', now()), +(27795, 'Superscrimpers: Waste Not, Want Not', 'UK', now()), +(27796, 'The Dales', 'UK', now()), +(27797, 'See You in Court', 'UK', now()), +(27798, 'The Truth About Lions', 'UK', now()), +(27799, 'Les Rescapés', 'CA', now()), +(27800, 'Lord of the Chefs', 'BG', now()), +(27801, 'De Keuken van de Meester', 'BE', now()), +(27802, 'Dat zal ze Leren!', 'BE', now()), +(27803, 'Willy''s en marjetten', 'BE', now()), +(27804, 'Relapse', 'US', now()), +(27805, 'Värsta Språket', 'SE', now()), +(27806, 'Candy Cabs', 'UK', now()), +(27807, 'Filthy Cities', 'UK', now()), +(27808, 'One Ocean', 'US', now()), +(27809, 'The Spirit of America', 'US', now()), +(27810, 'Gullungene', 'NO', now()), +(27811, 'Homeland', 'US', now()), +(27812, 'Tegen de Sterren op', 'BE', now()), +(27814, 'Ultimate Cleaners', 'US', now()), +(27815, 'Indoors Out Top 10', 'US', now()), +(27816, 'James May''s Road Trip', 'US', now()), +(27817, 'Big Brian: The Fortune Seller', 'US', now()), +(27818, 'Home Takeover with Simon & Tomas', 'US', now()), +(27819, 'M!LF (NL)', 'NL', now()), +(27820, 'Flashback (NL)', 'NL', now()), +(27821, 'Echte meisjes in de jungle', 'NL', now()), +(27822, 'House of Cards (2013)', 'US', now()), +(27823, 'Wonder Woman (2011)', 'US', now()), +(27824, 'Les beaux mecs', 'FR', now()), +(27825, 'Landskampen', 'NO', now()), +(27826, 'Khloe & Lamar', 'US', now()), +(28145, 'Case Sensitive', 'UK', now()), +(27828, 'The Mercury Men', 'US', now()), +(27829, 'Mysteriet på Greveholm', 'SE', now()), +(27830, 'Great Unanswered Questions', 'UK', now()), +(27831, 'A Different Breed', 'UK', now()), +(27832, 'Classic Albums (NL)', 'NL', now()), +(27833, 'In Turkije', 'NL', now()), +(27834, 'Modemeisjes met een missie', 'NL', now()), +(27835, 'From the Edge with Peter Lik', 'US', now()), +(27836, 'The Stash', 'US', now()), +(27837, 'My Teen''s a Nightmare: I''m Moving Out', 'US', now()), +(27838, 'Hook, Line & Skillet', 'US', now()), +(27839, 'Yard Attack!', 'US', now()), +(27840, 'Say Yes to the Dress: Randy Knows Best', 'US', now()), +(27841, 'Cuéntame cómo pasó', 'ES', now()), +(27842, 'Aída', 'ES', now()), +(27843, 'Motivos personales', 'ES', now()), +(27844, 'Doctor Mateo', 'ES', now()), +(27845, 'Los misterios de Laura', 'ES', now()), +(27846, 'Taxi 0-22 (US)', 'US', now()), +(27847, 'Taxi-22', 'US', now()), +(27848, 'Foul Hook''d', 'US', now()), +(27849, 'Last Cake Standing', 'US', now()), +(27850, 'Neighbourhood Blues', 'UK', now()), +(27851, 'Justice (2011)', 'UK', now()), +(27852, 'Campus', 'UK', now()), +(27853, 'Smugglers', 'UK', now()), +(27854, 'Ángel o Demonio', 'ES', now()), +(27855, 'Pluras kök', 'SE', now()), +(27856, 'NittiLeaks', 'SE', now()), +(27857, 'Police Academy UK', 'UK', now()), +(27858, 'Skilda Världar', 'SE', now()), +(27859, 'Tre Kronor', 'SE', now()), +(27860, 'Baboons with Bill Bailey', 'UK', now()), +(27861, 'Mildred Pierce', 'US', now()), +(27862, 'Aircrash Confidential', 'UK', now()), +(27863, 'Leonardo', 'UK', now()), +(27864, 'Britain''s Next Big Thing', 'UK', now()), +(27865, 'Misbehaving Mums To Be', 'UK', now()), +(27866, 'If Walls Could Talk', 'UK', now()), +(27867, 'Botox Britain', 'UK', now()), +(27868, 'Make Me Laugh (1983)', 'UK', now()), +(27869, 'Rekening in het Rood : Armoede in Vlaanderen', 'BE', now()), +(27870, 'Supernatural: The Animation', 'JP', now()), +(27871, 'Gran reserva', 'ES', now()), +(27872, 'Golgo 13', 'JP', now()), +(27873, 'Everything and Nothing', 'UK', now()), +(27874, 'Món 3XL', 'ES', now()), +(27875, 'Conexión', 'ES', now()), +(27876, 'Klass - Elu pärast', 'EE', now()), +(27877, 'The Life and Death of Sir John Falstaff', 'UK', now()), +(27878, 'Problem Solverz', 'US', now()), +(27879, 'Royal Wedding of a Lifetime', 'US', now()), +(27880, 'Jersey Cheer', 'US', now()), +(27881, 'Glamour Belles', 'US', now()), +(27882, 'Unleashed: K-9 Broward County', 'US', now()), +(27883, 'Hunks', 'UK', now()), +(27884, 'Gigolos', 'US', now()), +(27885, 'Popstokk', 'NO', now()), +(27886, 'Приключения Шерлока Холмса и доктора Ватсона', 'SU', now()), +(27888, 'JUNO Awards', 'CA', now()), +(27889, 'You Have Been Watching (AU)', 'AU', now()), +(27890, 'Museo Coconut', 'ES', now()), +(27891, 'RIN : Daughters of Mnemosyne', 'JP', now()), +(27892, 'Stossel', 'US', now()), +(27893, 'Велика България', 'BG', now()), +(27894, 'Dansken & Fingern', 'NO', now()), +(27895, 'Nummer 1', 'NO', now()), +(27896, 'Krtek', 'CZ', now()), +(27897, 'Tiger Man of Africa', 'US', now()), +(27898, 'How Big Can It Get', 'US', now()), +(27899, 'Exile', 'UK', now()), +(27900, 'Parade''s End', 'UK', now()), +(27901, 'Public Enemies', 'UK', now()), +(27902, 'Stolen', 'UK', now()), +(27903, 'Top Of The Lake', 'UK', now()), +(27904, 'Touch (UK)', 'UK', now()), +(27905, 'United', 'UK', now()), +(27906, 'White Heat', 'UK', now()), +(27907, 'Brand New Home', 'UK', now()), +(27908, 'David Walliams'' Awfully Good', 'UK', now()), +(27909, 'Fry''s Planet Word', 'UK', now()), +(32988, 'De bende Haemers', 'BE', now()), +(27911, 'Frozen Planet', 'UK', now()), +(27912, 'The Confession', 'US', now()), +(27913, 'Stockholm - Båstad', 'SE', now()), +(27914, 'Zombis (2009)', 'ES', now()), +(27915, 'Vinagre', 'ES', now()), +(27916, 'Furi Kuri (FLCL)', 'JP', now()), +(27918, 'El Barco', 'ES', now()), +(27919, 'Arròs Covat', 'ES', now()), +(27920, 'Civil Warriors', 'US', now()), +(27921, 'Inspector America', 'US', now()), +(27922, 'Sinbad It''s Just Family', 'US', now()), +(27923, 'Toya: A Family Affair', 'US', now()), +(27924, 'The Franchise', 'US', now()), +(27925, 'Killer Outbreaks', 'US', now()), +(27926, 'Mob Wives', 'US', now()), +(27927, 'Small Time Gangster', 'AU', now()), +(27928, 'Suite Precure', 'JP', now()), +(27929, 'Powers (2011)', 'US', now()), +(27930, '17th Precinct', 'US', now()), +(27931, 'Petworth House - The Big Spring Clean', 'UK', now()), +(27933, 'The Story Of Jesus', 'UK', now()), +(27934, 'The Animal''s Guide to Britain', 'UK', now()), +(27935, 'Monty Don''s Italian Gardens', 'UK', now()), +(27936, 'Betty White''s Off Their Rockers', 'US', now()), +(27937, 'Wives and Daughters', 'UK', now()), +(27938, 'Elias', 'NO', now()), +(27939, '101 Ways to Leave a Game Show (US)', 'US', now()), +(27940, 'Expedition Impossible', 'US', now()), +(27941, 'Combat Hospital', 'CA', now()), +(27943, 'Saddle Ranch', 'US', now()), +(27944, 'Police POV', 'US', now()), +(27945, 'TV Festival', 'FR', now()), +(27946, 'World Championship Snooker 2011', 'UK', now()), +(27947, 'Sing If You Can', 'UK', now()), +(27948, 'Hallo K3!', 'BE', now()), +(27949, 'Kanniewaarzijn', 'NL', now()), +(27950, 'Fear No Evil', 'US', now()), +(27951, 'Destination Polaris', 'US', now()), +(27952, 'The Great Ride', 'US', now()), +(27953, 'The Rundown', 'US', now()), +(27954, 'An Officer and a Movie', 'US', now()), +(27955, 'Rookies to Racers', 'US', now()), +(27956, 'The Future of Water', 'US', now()), +(27957, 'Intentional Talk', 'US', now()), +(27958, 'Dr. Drew', 'US', now()), +(27959, 'Extra Yardage', 'US', now()), +(27960, 'Ellismania', 'US', now()), +(27961, 'The Voice of Germany', 'DE', now()), +(27962, 'Eating With Cannibals', 'US', now()), +(27963, 'Danger Beach', 'US', now()), +(27964, 'Danger Hunters', 'US', now()), +(27965, 'Whatever, You''re Wrong!', 'US', now()), +(27966, 'The Bassmasters', 'US', now()), +(27967, 'Ultimate Match Fishing: All-Stars', 'US', now()), +(27968, 'Royally Mad', 'US', now()), +(27969, 'Son of a Gun', 'US', now()), +(27970, 'Say Yes to the Dress: Big Bliss', 'US', now()), +(27972, 'Take a Seat: Sharing a Ride Across America', 'US', now()), +(27973, 'Game On! With John Salley', 'US', now()), +(27974, 'In Search of Food', 'US', now()), +(27975, 'Eat St.', 'US', now()), +(27976, 'Dog Days (JP)', 'JP', now()), +(27977, 'X-Men (JP)', 'JP', now()), +(27978, 'La Hora Chanante', 'ES', now()), +(27980, 'Young, Broke & Beautiful', 'US', now()), +(27981, 'Hachimitsu to Clover', 'JP', now()), +(27982, 'Koishite Akuma', 'JP', now()), +(27983, 'Wipeout (CA)', 'CA', now()), +(27984, 'The Exes', 'US', now()), +(27985, 'Ice Pilots', 'CA', now()), +(27986, 'Setup Squad', 'US', now()), +(27987, 'Repo Games', 'US', now()), +(27988, 'How the States Got Their Shapes', 'US', now()), +(27989, 'Animal Fugitives', 'US', now()), +(27990, 'Wat Als?', 'BE', now()), +(27991, 'Nichijou', 'JP', now()), +(27992, 'Hana-Saku Iroha', 'JP', now()), +(27993, 'Hanasaku Iroha', 'JP', now()), +(27994, 'Tiger & Bunny', 'JP', now()), +(27995, 'Mobbed', 'US', now()), +(27996, 'The Angry Video Game Nerd', 'US', now()), +(27997, 'The Nostalgia Critic', 'US', now()), +(34046, 'Happy New Year from 4Music!', 'UK', now()), +(28001, 'The Football Years (2010)', 'UK', now()), +(28002, 'The Reckoning', 'UK', now()), +(28003, 'Fix My Family', 'UK', now()), +(28004, 'Military Driving School', 'UK', now()), +(28005, 'The Langoliers', 'US', now()), +(28006, 'Long Lost Family', 'UK', now()), +(28007, 'King of Dirt', 'US', now()), +(28008, 'Реальные пацаны', 'RU', now()), +(28009, 'Steins;Gate', 'JP', now()), +(28010, 'Ore-tachi ni Tsubasa wa Nai', 'JP', now()), +(28011, 'Le Code Chastenay', 'CA', now()), +(28012, 'Yamaska', 'CA', now()), +(28013, 'Un gars le soir', 'CA', now()), +(28014, 'La Facture', 'CA', now()), +(28015, 'Les Francs Tireurs', 'CA', now()), +(28016, '3600 secondes d''extase', 'CA', now()), +(28017, 'Les enfants de la télé', 'CA', now()), +(28018, 'L''épicerie', 'CA', now()), +(28019, 'Cinq soeurs', 'FR', now()), +(28020, 'En direct de l''univers', 'CA', now()), +(28021, 'Suite Noire', 'FR', now()), +(28022, 'Empreintes criminelles', 'FR', now()), +(28023, 'Les Boys', 'CA', now()), +(28024, 'Penthouse 5-0', 'CA', now()), +(28025, '30 Vies', 'CA', now()), +(28026, 'Enquête', 'CA', now()), +(28027, 'When Royals Wed', 'UK', now()), +(28028, 'The Royal Wedding', 'UK', now()), +(28029, 'Don''t Scare The Hare', 'UK', now()), +(28030, 'Giles and Sue''s Royal Wedding', 'UK', now()), +(28032, 'The Hotel', 'UK', now()), +(28033, 'Essex Jungle', 'UK', now()), +(28034, 'Emergency with Angela Griffin', 'UK', now()), +(28035, 'Benali boekt', 'NL', now()), +(28036, 'Découverte', 'CA', now()), +(28037, 'La Semaine Verte', 'CA', now()), +(28038, 'Nous avons les images', 'CA', now()), +(28039, 'Le verdict', 'CA', now()), +(28040, 'La Chanson du Dimanche', 'FR', now()), +(28041, 'Fortunes', 'FR', now()), +(28042, 'Une heure sur terre', 'CA', now()), +(28043, 'Taratata', 'FR', now()), +(28044, 'Tracks (FR)', 'FR', now()), +(28045, 'IT Planeet', 'EE', now()), +(28046, 'Klockan åtta hos stjärnorna', 'SE', now()), +(28047, 'A Channel', 'JP', now()), +(28048, 'Hyouge Mono', 'JP', now()), +(28049, '30-sai no Hoken Taiiku', 'JP', now()), +(28050, 'Dororon Enma-kun: Meeramera', 'JP', now()), +(28051, 'Yondemasu yo, Azazel-san', 'JP', now()), +(28052, 'Saving the Bay', 'US', now()), +(28053, 'Грозовые ворота', 'RU', now()), +(28054, 'Бригада', 'RU', now()), +(28055, 'Touch', 'US', now()), +(28056, 'Dangerous Planet', 'US', now()), +(28057, 'Штрафбат', 'RU', now()), +(28058, 'Hen Zemi', 'JP', now()), +(28059, 'Универ', 'RU', now()), +(28060, 'Yu-Gi-Oh! Zexal', 'JP', now()), +(28061, 'Sekai-ichi Hatsukoi', 'JP', now()), +(28062, 'Pop Ràpid', 'ES', now()), +(28063, 'Have Cake Will Travel', 'US', now()), +(28064, 'Deadman Wonderland', 'JP', now()), +(28065, 'My Cat From Hell', 'US', now()), +(28066, 'Why Not? with Shania Twain', 'US', now()), +(28067, 'The Amazing World of Gumball', 'US', now()), +(28068, 'Animal Mega Moves', 'US', now()), +(28069, 'Pretty Hurts', 'US', now()), +(28070, 'Vanished with Beth Holloway', 'US', now()), +(28071, 'The Suspicions of Mr Whicher', 'UK', now()), +(28072, 'The Gene Code', 'UK', now()), +(28073, 'Suspense (1964)', 'US', now()), +(28074, 'Astarotte no Omocha!', 'JP', now()), +(28075, 'Veerboot naar Holland', 'NL', now()), +(28076, 'Mijn man kan alles', 'NL', now()), +(28077, 'Keet, De', 'NL', now()), +(28078, 'Baking Mad With Eric Lanlard', 'UK', now()), +(28079, 'Fireball', 'JP', now()), +(28080, 'Hoshizora e Kakaru Hashi', 'JP', now()), +(28081, 'Светофор', 'RU', now()), +(28082, 'Зайцев+1', 'RU', now()), +(28083, 'ДаЁшь молодЁжь!', 'RU', now()), +(28084, '112 - luftens hjältar', 'SE', now()), +(28085, 'Earth Story', 'UK', now()), +(28086, 'The Royal Wedding ITV', 'UK', now()), +(28087, 'Kekkaishi (US)', 'JP', now()), +(34035, 'I Survived Evil', 'US', now()), +(28089, 'Fullmetal Alchemist: Brotherhood', 'JP', now()), +(28090, 'Naruto: Shippuden (US)', 'AJ', now()), +(28091, 'Triple Rush', 'US', now()), +(28092, 'Mortal Kombat: Legacy', 'US', now()), +(28093, 'Папины дочки', 'RU', now()), +(28094, 'Счастливы вместе', 'RU', now()), +(28095, 'Dream High', 'KR', now()), +(28096, 'Softenni', 'JP', now()), +(28097, 'Hour of Mystery', 'UK', now()), +(28098, 'The Moon Stallion', 'UK', now()), +(28099, 'The Shadow Line', 'UK', now()), +(28100, 'Inside The Human Body', 'UK', now()), +(28101, 'Galaxy Angel Rune', 'JP', now()), +(28102, 'Denpa Onna to Seishun Otoko', 'JP', now()), +(28103, 'Ano Hi Mita Hana no Namae o Bokutachi wa Mada Shiranai', 'JP', now()), +(28104, 'Hidan no Aria', 'JP', now()), +(28105, 'C', 'JP', now()), +(28106, 'Unique Sweets', 'US', now()), +(28107, 'Reed Between the Lines', 'US', now()), +(28108, 'Don Francisco presenta', 'US', now()), +(28109, 'Penn & Teller’s Secrets of the Universe', 'US', now()), +(28110, 'Carol Duvall''s Holiday Workshop', 'US', now()), +(28111, 'Dive Detectives', 'US', now()), +(28112, 'College Baseball Live', 'US', now()), +(28113, 'Thursday Night SEC Baseball Game of the Week', 'US', now()), +(28114, 'Border Patrol (US)', 'US', now()), +(28115, 'Prince William & Catherine: A Royal Love Story', 'US', now()), +(28116, 'The Comedy Awards', 'US', now()), +(28117, 'Born Fighting', 'US', now()), +(28118, 'Gruden''s QB Camp', 'US', now()), +(28119, 'In Development', 'US', now()), +(28120, 'Property Brothers', 'US', now()), +(28121, 'Decked Out', 'CA', now()), +(28122, '48 Hours: Left for Dead', 'US', now()), +(28123, 'Confronting...', 'US', now()), +(28124, 'NFL Draft', 'US', now()), +(28125, 'The Originals with Emeril', 'US', now()), +(28126, 'Sarah''s Summer House', 'US', now()), +(28127, 'Best in Smoke', 'US', now()), +(28128, 'Swamp Brothers', 'US', now()), +(28129, 'Best in the Business', 'US', now()), +(28130, 'Life on a Wire', 'US', now()), +(28131, 'Soul Music', 'UK', now()), +(28132, 'Wyrd Sisters', 'UK', now()), +(28133, 'S*M*A*S*H', 'SE', now()), +(28134, 'I Owe You My Life', 'US', now()), +(28135, 'Louie Spence Dance Project', 'US', now()), +(28136, 'My Mom and Me', 'US', now()), +(28137, 'Sweetie Pies', 'US', now()), +(28138, 'Unfaithful: Stories of Betrayal', 'US', now()), +(28139, '4th and Forever', 'US', now()), +(28140, 'From Spain With Love', 'US', now()), +(28141, 'Single Ladies', 'US', now()), +(28142, 'Platinum Hit', 'US', now()), +(28143, 'Ранетки', 'RU', now()), +(28144, 'Vera', 'UK', now()), +(28146, 'Young, Rich and Househunting', 'UK', now()), +(28147, 'Canal Walks with Julia Bradbury', 'UK', now()), +(28148, 'King (2011)', 'CA', now()), +(28149, 'Veep', 'US', now()), +(28150, 'Top Chef Canada', 'CA', now()), +(28151, 'Pretty Rhythm: Aurora Dream', 'JP', now()), +(28152, 'Jewelpet Sunshine', 'JP', now()), +(28153, 'Two Greedy Italians', 'UK', now()), +(28154, 'Children''s Craniofacial Surgery', 'UK', now()), +(28155, 'Ihmebantu', 'FI', now()), +(28156, 'Bachelorette Sverige', 'SE', now()), +(28157, 'Summits', 'UK', now()), +(28158, 'Шахта', 'RU', now()), +(28159, 'Comedy Live', 'NL', now()), +(28160, 'Nederlandse Hollywood vrouwen', 'NL', now()), +(28161, 'André Rieu op Bloemeneiland Mainau', 'NL', now()), +(28162, 'One Shot Not', 'FR', now()), +(28163, 'Honto ni Atta! Reibai-Sensei', 'JP', now()), +(28164, 'Mutant Turtles: Choujin Densetsu-hen', 'JP', now()), +(28165, 'Blackstone', 'CA', now()), +(28166, 'VHS', 'ES', now()), +(28167, 'Raa Raa The Noisy Lion', 'UK', now()), +(28168, 'Britain''s Secret Seas', 'UK', now()), +(28169, 'Balls Of Steel Australia', 'AU', now()), +(28170, 'Family Feuds', 'NZ', now()), +(28171, 'Dragons'' Den (CA)', 'CA', now()), +(28172, 'Love In The Wild', 'US', now()), +(28173, 'The Finder', 'US', now()), +(28174, 'Masterchef (NZ)', 'NZ', now()), +(28175, 'Talking Funny', 'US', now()), +(28176, 'Funny Man', 'UK', now()), +(28177, 'The Haunting of Cassie Palmer', 'UK', now()), +(28178, 'Dom kallar oss artister', 'SE', now()), +(28179, 'Antikrundan', 'SE', now()), +(28180, 'Världens händelser', 'SE', now()), +(28181, 'Dimension of Fear', 'UK', now()), +(28182, 'The Escape of R.D.7', 'UK', now()), +(28183, 'Воронины', 'RU', now()), +(28185, 'Legend of Death', 'UK', now()), +(28186, 'The Master (UK)', 'UK', now()), +(28187, 'The Strange World of Planet X', 'UK', now()), +(28188, 'Закрытая школа', 'RU', now()), +(28189, 'Atlantis', 'UK', now()), +(28190, 'Famous Food', 'US', now()), +(28191, 'Глухарь', 'RU', now()), +(28192, 'Show Me the Monet', 'UK', now()), +(28193, 'Business Nightmares with Evan Davis', 'UK', now()), +(28194, 'Strangeways', 'UK', now()), +(28195, 'There''s Something About Josie', 'UK', now()), +(28196, 'Voltron Force', 'US', now()), +(28197, 'AFP: Australian Federal Police', 'AU', now()), +(28198, 'My Parents, My Sister & Me', 'US', now()), +(28199, 'Signature', 'FR', now()), +(28200, 'Poms in Paradise', 'UK', now()), +(28201, 'Made in Chelsea', 'UK', now()), +(28202, '24 Hours in A&E', 'UK', now()), +(28203, '71 Grader Nord: Norges Tøffeste Kjendis', 'NO', now()), +(28204, 'Oppdrag Sognefjorden', 'NO', now()), +(28205, 'The Country House Revealed', 'UK', now()), +(28206, 'Home Is Where the Heart Is', 'UK', now()), +(28207, 'Supersize Grime', 'UK', now()), +(28208, 'Kalgoorlie Cops', 'AU', now()), +(28209, 'The Politically Incorrect Guide To Teenagers', 'NZ', now()), +(28210, 'Koningin & Ik, De', 'NL', now()), +(28211, 'Brieven boven water', 'NL', now()), +(28212, 'Windfarm Wars', 'UK', now()), +(28213, 'Lekker weg aan tafel', 'NL', now()), +(28214, 'Julia Bradbury''s Icelandic Walk', 'UK', now()), +(28215, 'Oorlogsgeheimen', 'NL', now()), +(28216, 'Gepest', 'NL', now()), +(28217, 'Where’s My Mammoth?', 'US', now()), +(28218, 'Squeamish', 'US', now()), +(28219, 'Skånska mord', 'SE', now()), +(28220, 'Romanii au Talent', 'RO', now()), +(28221, 'The Street That Cut Everything', 'UK', now()), +(28222, 'Operation Crossbow', 'UK', now()), +(28224, 'Impossible', 'UK', now()), +(28225, 'The World According to Paris', 'US', now()), +(28226, 'The Genesis Awards', 'US', now()), +(28227, 'Virta', 'FI', now()), +(28228, 'Borgia', 'FR', now()), +(28229, 'Neighbor Labor', 'US', now()), +(28230, 'Зона. Тюремный роман', 'RU', now()), +(28231, 'Verano azul', 'ES', now()), +(28232, 'Прожекторперисхилтон', 'RU', now()), +(28233, 'Bubot', 'IL', now()), +(28234, 'Die Schule der kleinen Vampire', 'DE', now()), +(28235, 'Wild Germany', 'DE', now()), +(28236, 'Hollywood', 'UK', now()), +(28237, 'Наша Russia', 'RU', now()), +(28238, 'Пекельна кухня', 'UA', now()), +(28239, 'Tunnellers', 'UK', now()), +(28240, 'Xanadu', 'FR', now()), +(28241, 'Mofli, el último koala', 'ES', now()), +(28242, 'Топ-модель по-русски', 'RU', now()), +(28243, 'Битва экстрасенсов', 'RU', now()), +(28244, 'Как я встретил вашу маму (Россия)', 'RU', now()), +(28245, 'Comedy Club (RU)', 'RU', now()), +(28246, 'Man Made Marvels', 'US', now()), +(28247, 'Moordvrouwen', 'NL', now()), +(28248, 'Welcome Home', 'NL', now()), +(28249, 'Herrie XXL', 'NL', now()), +(28250, 'Face it!', 'NL', now()), +(28251, 'Nick & Simon The American Dream', 'NL', now()), +(28252, 'Confrontatie, De', 'NL', now()), +(28253, 'Bachelor, De', 'NL', now()), +(28254, 'Fortuinlijke vrouwen', 'NL', now()), +(28255, 'What''s with Andy?', 'CA', now()), +(28256, 'The Electric Barbarellas', 'US', now()), +(28257, 'Hottest Place on Earth', 'UK', now()), +(28259, 'Spouse vs. House', 'US', now()), +(28260, 'Los Trotamúsicos', 'ES', now()), +(28261, 'Komiker i Arbeid', 'NO', now()), +(28262, 'Солдаты', 'RU', now()), +(28263, 'Bullproof', 'US', now()), +(28264, 'The Story of Ireland', 'UK', now()), +(28265, 'Зона', 'RU', now()), +(28266, 'Барвиха', 'RU', now()), +(28267, 'Comedy Woman', 'RU', now()), +(28268, 'Кадетство', 'RU', now()), +(28269, 'Школа', 'RU', now()), +(28270, 'Школа №1', 'RU', now()), +(31069, 'Aida (PL)', 'PL', now()), +(28272, 'Transformers: Super-God Masterforce', 'JP', now()), +(28273, 'Mononoke', 'JP', now()), +(28274, 'Lihaksia ja luoteja', 'FI', now()), +(28275, 'Locke & Key', 'US', now()), +(28276, 'Кремлевские курсанты', 'RU', now()), +(28277, '+100500', 'RU', now()), +(28278, 'Клуб', 'RU', now()), +(28279, 'At the Hotel', 'CA', now()), +(28280, 'Диверсант', 'RU', now()), +(28281, 'Диверсант. Конец войны', 'RU', now()), +(28282, 'Femme Fatales', 'US', now()), +(28283, 'Haunted Collector', 'US', now()), +(28284, 'Off Limits', 'US', now()), +(28285, 'Soul Quest Overdrive', 'US', now()), +(28287, 'Man v Monster', 'US', now()), +(28288, 'Surprise Homecoming', 'US', now()), +(28289, 'Love Handles (US)', 'US', now()), +(28290, 'Улицы разбитых фонарей', 'RU', now()), +(28291, 'Убойная сила', 'RU', now()), +(28292, 'Constant Payne', 'US', now()), +(28293, 'Un Village Français', 'FR', now()), +(28294, 'Lääkärit tulessa', 'FI', now()), +(28295, 'Одноэтажная Америка', 'RU', now()), +(28296, 'Plastic Man', 'US', now()), +(28297, 'Miyuki-chan in Wonderland', 'AJ', now()), +(28298, 'Wonder Beat Scramble', 'JP', now()), +(28299, 'Miodowe lata', 'PL', now()), +(28300, 'Race: The Power of an Illusion', 'US', now()), +(28301, 'Embarrassing Bodies: Live from the Clinic', 'UK', now()), +(28302, 'Four Rooms', 'UK', now()), +(28303, 'I Hate My Teenage Daughter', 'US', now()), +(28304, 'New Girl', 'US', now()), +(28305, 'Supersize Ambulance', 'UK', now()), +(28306, 'Рыжая', 'RU', now()), +(28307, 'Бальзаковский возраст, или Все мужики сво…', 'RU', now()), +(28308, 'Башня', 'RU', now()), +(28309, 'Боец', 'RU', now()), +(28310, 'Дом 2', 'RU', now()), +(28311, 'Split/Сплит.Тайна крови', 'IL', now()), +(28312, 'X Factor Romania', 'RO', now()), +(28313, 'Тур де Франс', 'RU', now()), +(28314, 'Убойная лига', 'RU', now()), +(28315, 'Убойной ночи', 'RU', now()), +(28316, 'Убойный вечер', 'RU', now()), +(28317, 'Al Murray''s Compete for the Meat', 'UK', now()), +(28318, 'Giant Animal Moves', 'UK', now()), +(28319, 'All Watched Over By Machines Of Loving Grace', 'UK', now()), +(28320, 'The Truth About Wildlife', 'UK', now()), +(28321, 'Gory Games', 'UK', now()), +(28322, 'Egypt''s Lost Cities', 'UK', now()), +(28323, 'Paul Merton''s Birth of Hollywood', 'UK', now()), +(28324, 'The Book Review Show', 'UK', now()), +(28325, 'Семнадцать мгновений весны', 'SU', now()), +(28326, 'Здесь кто-то есть', 'RU', now()), +(28327, 'Éden Hotel', 'HU', now()), +(28328, 'Shall We Dance?', 'PH', now()), +(28329, 'Dancing with the Stars (AL)', 'AL', now()), +(28330, 'Dancing Stars (AT)', 'AT', now()), +(28331, 'Bailando por um Sonho', 'BR', now()), +(28332, 'Dança dos Famosos', 'BR', now()), +(28333, 'Dancing Stars (BU)', 'BG', now()), +(28334, 'El Baile en TVN', 'CL', now()), +(28335, 'Dancing with the Stars (GR)', 'GR', now()), +(28336, 'Dancing with the Stars (SF)', 'ZA', now()), +(28337, 'Smash', 'US', now()), +(28338, 'Pain Game, The', 'NL', now()), +(28339, 'Allerslechtste Chauffeur Van Nederland, De', 'NL', now()), +(28340, 'The Imp', 'UK', now()), +(28341, 'Hataraki Man (2007)', 'JP', now()), +(28342, 'Los Quién', 'ES', now()), +(28343, 'Rescued Nation TV', 'US', now()), +(28344, 'Место встречи изменить нельзя', 'SU', now()), +(28345, 'Смешарики', 'RU', now()), +(28346, 'Ancient X-Files', 'UK', now()), +(28347, 'The Bolt Report', 'AU', now()), +(28348, 'Pocoyo', 'ES', now()), +(28349, 'Fantaghiro: The Cave of The Golden Rose', 'IT', now()), +(28350, 'SOKO Donau', 'AT', now()), +(28351, 'Último a Sair', 'PT', now()), +(28352, 'Grimm', 'US', now()), +(28353, 'Alaska y Mario', 'ES', now()), +(28354, 'BuenAgente', 'ES', now()), +(28355, 'Piratas', 'ES', now()), +(28356, 'Free Agents (US)', 'US', now()), +(28357, 'Whitney', 'US', now()), +(28358, 'Up All Night (2011)', 'US', now()), +(28359, 'Wunschpunsch', 'DE', now()), +(28360, 'State of Georgia', 'US', now()), +(28361, 'Awake', 'US', now()), +(28362, 'The River', 'US', now()), +(28363, 'Сваты', 'UA', now()), +(28364, 'Химик', 'RU', now()), +(28365, 'Хиромант', 'RU', now()), +(28366, 'Побег', 'RU', now()), +(28367, 'Jane By Design', 'US', now()), +(28368, 'Are You There, Chelsea?', 'US', now()), +(28369, 'Bent', 'US', now()), +(28370, 'Best Friends Forever', 'US', now()), +(28371, 'Brian Williams Newsmagazine', 'US', now()), +(28372, 'Same Name', 'US', now()), +(28373, 'Fashion Star', 'US', now()), +(28374, 'The Firm', 'US', now()), +(28375, 'The Playboy Club', 'US', now()), +(28376, 'Person of Interest', 'US', now()), +(28377, 'Allen Gregory', 'US', now()), +(28378, 'Napoleon Dynamite', 'US', now()), +(28379, 'Terug naar Oosterdonk', 'BE', now()), +(28380, 'Boss', 'US', now()), +(28381, 'Scott and Bailey', 'UK', now()), +(28382, 'Alexander Armstrong''s Big Ask', 'UK', now()), +(28383, 'Jesse Stone', 'US', now()), +(28384, 'Coffee Prince', 'KR', now()), +(28385, 'Once Upon a Time', 'US', now()), +(28386, 'Last Man Standing', 'US', now()), +(28387, 'Revenge', 'US', now()), +(28388, 'Alternatywy 4', 'PL', now()), +(28389, 'Гаишники', 'RU', now()), +(28390, 'Телохранитель', 'RU', now()), +(28391, 'Zmiennicy', 'PL', now()), +(28418, 'Botany – A Blooming History', 'UK', now()), +(28393, 'GCB', 'US', now()), +(28394, 'Secrets of the Superbrands', 'UK', now()), +(28395, 'Man Up!', 'US', now()), +(28396, 'Missing (2012)', 'US', now()), +(28397, 'Pan Am', 'US', now()), +(28398, 'Scandal', 'US', now()), +(28399, 'Suburgatory', 'US', now()), +(31527, 'Snooki and JWoww', 'US', now()), +(28401, 'VIP Dance', 'BG', now()), +(28403, 'Norge i krig - oppdrag Afghanistan', 'NO', now()), +(28404, 'The A List: Dallas', 'US', now()), +(28406, 'Around the World in 80 Ways', 'US', now()), +(28407, 'Andrew Marr''s Megacities', 'UK', now()), +(28408, 'In The Flow With Affion Crockett', 'US', now()), +(28409, 'It''s Worth What?', 'US', now()), +(28410, 'Who''s Still Standing', 'US', now()), +(28411, 'Karaoke Battle USA', 'US', now()), +(28412, 'Work It', 'US', now()), +(28413, 'NYC 22', 'US', now()), +(28414, 'A Gifted Man', 'US', now()), +(28415, 'How To Be a Gentleman', 'US', now()), +(28416, '2 Broke Girls', 'US', now()), +(28417, 'Unforgettable', 'US', now()), +(28419, 'Our War', 'UK', now()), +(28420, 'In With The Flynns', 'UK', now()), +(28421, 'Angry Boys', 'AU', now()), +(28422, 'Hart Of Dixie', 'US', now()), +(28423, 'The Secret Circle', 'US', now()), +(28424, 'The Frame', 'US', now()), +(28425, 'H8R', 'US', now()), +(28426, 'ReModeled', 'US', now()), +(28427, 'Injustice', 'UK', now()), +(28428, 'Jongens tegen de Meisjes, De', 'NL', now()), +(28429, 'Hand van de Meester', 'NL', now()), +(28430, 'Beloofde Land, Het', 'NL', now()), +(28431, 'Zee Zout & Zeilen', 'NL', now()), +(28432, 'Van God Los', 'NL', now()), +(28433, 'XXL', 'NL', now()), +(28434, 'Mooi was die tijd', 'NL', now()), +(28435, 'Op zoek naar geluk', 'NL', now()), +(28436, 'Dat is toch niet normaal!?', 'NL', now()), +(28437, 'Torchwood: Web Of Lies', 'UK', now()), +(28438, 'The Day That Changed My Life (US)', 'US', now()), +(28439, 'NTSF:SD:SUV', 'US', now()), +(28440, 'The Heart, She Holler', 'US', now()), +(28441, 'China, IL', 'US', now()), +(28442, 'Russian Dolls', 'US', now()), +(28443, 'Deception with Keith Barry', 'US', now()), +(28444, 'Dance Moms', 'US', now()), +(28445, 'Clean House New York', 'US', now()), +(28446, 'Death Valley', 'US', now()), +(28447, 'The Conversation', 'US', now()), +(28448, 'Happy Families (2011)', 'UK', now()), +(28449, 'Blade', 'US', now()), +(28450, 'Iron Man (2011)', 'US', now()), +(28451, 'Wolverine (US)', 'US', now()), +(28452, 'X-Men (2011)', 'US', now()), +(28453, 'Spy (2011)', 'UK', now()), +(28454, 'Drugs Live', 'UK', now()), +(28455, 'Dina''s Party', 'US', now()), +(28456, 'The Fades', 'UK', now()), +(28457, 'Desperate Parents', 'FR', now()), +(28458, 'The High Low Project', 'US', now()), +(28459, 'How Do I Look?: The Search for the Worst Dressed in America', 'US', now()), +(28460, 'I Just Want My Pants Back', 'US', now()), +(28461, 'Interior Therapy with Jeff Lewis', 'US', now()), +(28462, 'It''s a Brad Brad World', 'US', now()), +(28463, 'Glam Fairy', 'US', now()), +(28464, 'Schalkse Ruiters', 'BE', now()), +(28465, 'Yolanthe op 3', 'NL', now()), +(28466, 'Jong Talent', 'NL', now()), +(28467, 'Autistisch wat nu?', 'NL', now()), +(28468, 'Hier slapen jullie', 'NL', now()), +(28469, 'Case Histories', 'UK', now()), +(28470, 'Embarrassing Fat Bodies', 'UK', now()), +(28471, 'Skal vi danse?', 'NO', now()), +(28472, 'Robot & Monster', 'US', now()), +(28473, 'My Future Boyfriend', 'US', now()), +(28474, 'The Booth at the End', 'US', now()), +(28475, 'Man v. Food Nation', 'US', now()), +(28476, 'Yok Böyle Dans', 'TR', now()), +(28478, 'Let''s Dance (SE)', 'SE', now()), +(28480, 'Danse avec les stars', 'FR', now()), +(28481, 'Tantsud tähtedega', 'EE', now()), +(28482, 'Vild med dans', 'DK', now()), +(28483, 'StarDance ... When the Stars are Dancing', 'CZ', now()), +(28484, 'Elde Var Hayat', 'TR', now()), +(28485, 'Ples sa zvijezdama', 'HR', now()), +(28486, 'Strictly Come Dancing (HK)', 'HK', now()), +(28487, 'The Restaurant Inspector', 'UK', now()), +(28488, 'World''s Craziest Fools', 'UK', now()), +(28489, 'Animal Kingdom', 'UK', now()), +(28490, 'Apples – British To The Core', 'UK', now()), +(28491, 'BBC Cardiff Singer Of The World 2011', 'UK', now()), +(28492, 'Love Your Garden', 'UK', now()), +(28493, 'Grandpa in My Pocket', 'UK', now()), +(28494, 'Secret Life of the Brain', 'US', now()), +(28495, 'Дальнобойщики', 'RU', now()), +(28496, 'Jhalak Dikhhla Jaa', 'IN', now()), +(28497, 'Major Crimes', 'US', now()), +(28498, 'Nach Baliye', 'IN', now()), +(28499, 'Ballando con le Stelle', 'IT', now()), +(28500, 'Dansez pentru tine', 'RO', now()), +(28501, 'Nachley', 'PK', now()), +(28502, 'Dancing With The Stars (ID)', 'ID', now()), +(28503, 'Shall We Dance? (JA)', 'JP', now()), +(28504, 'Isdans', 'NO', now()), +(28505, 'Taniec z gwiazdami', 'PL', now()), +(28506, 'Bước nhảy hoàn vũ', 'VN', now()), +(28507, 'Танці з зірками', 'UA', now()), +(28508, 'Let''s Dance (LO)', 'SK', now()), +(28509, '¡Más que baile!', 'ES', now()), +(28510, 'ITV News Border', 'UK', now()), +(28511, 'Stephen King''s It', 'US', now()), +(28512, 'Geordie Shore', 'UK', now()), +(28513, 'Most Shocking Talent Show Moments', 'UK', now()), +(28514, 'The Dr. Laura Berman Show', 'US', now()), +(28515, 'Behind Mansion Walls', 'US', now()), +(28516, 'Finding Bigfoot', 'US', now()), +(28517, 'Randall and Hopkirk (Deceased) (US)', 'US', now()), +(28518, 'HGTV''d', 'US', now()), +(28519, 'House Hunters on Vacation', 'US', now()), +(28520, 'My Yard Goes Disney', 'US', now()), +(28521, 'NY Ink', 'US', now()), +(28522, 'Rocco''s Dinner Party', 'US', now()), +(28523, 'Shadow Hunters', 'US', now()), +(28524, 'Mancations', 'US', now()), +(28525, 'World''s Worst Teens', 'US', now()), +(28526, 'My Favorite Place', 'US', now()), +(28527, 'Swamp Wars', 'US', now()), +(28528, 'Дочки-Матери', 'RU', now()), +(28529, 'Гордон Кихот', 'RU', now()), +(28530, 'Южное Бутово', 'RU', now()), +(28531, 'Бункер News', 'RU', now()), +(28532, 'Премьер-Лига КВН', 'RU', now()), +(28533, 'Высшая лига КВН', 'RU', now()), +(28534, 'Не родись красивой', 'RU', now()), +(28535, 'Farmacia de guardia', 'ES', now()), +(28536, 'Koh-Lanta', 'FR', now()), +(28537, 'Expedición Robinson (AR)', 'AR', now()), +(28538, 'Expedition Robinson (SZ)', 'CH', now()), +(28539, 'No Limite', 'BR', now()), +(28540, 'Expedición Robinson: La Isla Vip', 'CL', now()), +(28541, 'Expedición Robinson (CO)', 'CO', now()), +(28542, 'La Isla de los FamoS.O.S.', 'CO', now()), +(28543, 'Survivor (HR)', 'HR', now()), +(28544, 'Expedition Robinson (AU)', 'AT', now()), +(28545, 'Robinson Ekspeditionen', 'DK', now()), +(28546, 'Expedición Robinson Ecuador', 'EC', now()), +(28547, 'Robinsonid', 'EE', now()), +(28548, 'Suomen Robinson', 'FI', now()), +(28549, 'Ukanaskneli Gmiri', 'GE', now()), +(28550, 'Gestrandet', 'DE', now()), +(28551, 'Young Hollywood Awards', 'US', now()), +(28552, 'Sand Masters', 'US', now()), +(28553, 'The First 48: Missing Persons', 'US', now()), +(28554, 'Room Crashers', 'US', now()), +(28555, 'Kurtlar Vadisi Pusu', 'TR', now()), +(28556, 'Ultimate Predators', 'US', now()), +(28557, 'Life on the Line', 'US', now()), +(28558, 'Bobby Flay''s Barbecue Addiction', 'US', now()), +(28559, 'So Random!', 'US', now()), +(28560, 'E3 Live', 'US', now()), +(28561, 'Lingo (2011)', 'US', now()), +(28562, 'It''s Everybody''s Business with Jack & Suzy Welch', 'US', now()), +(28563, '100 Sexiest Videos of All Time', 'US', now()), +(28564, 'G4''s Proving Ground', 'US', now()), +(28565, 'My Bear Family', 'US', now()), +(28566, 'Спасите наши души', 'RU', now()), +(28567, 'Holiday Hijack', 'UK', now()), +(28568, 'Wall of Fame', 'UK', now()), +(28569, 'Kill It, Cut It, Use It', 'UK', now()), +(28570, 'Baby Hospital', 'UK', now()), +(28571, 'Jurismia!', 'FI', now()), +(28572, 'The Protector', 'US', now()), +(28573, 'Tribal Secrets', 'US', now()), +(28574, 'The Scheme', 'UK', now()), +(28575, 'The King of...', 'UK', now()), +(28576, 'Hollandse Zaken', 'NL', now()), +(28577, 'Reisadvies negatief', 'NL', now()), +(28578, 'Van de gekke', 'NL', now()), +(28579, 'Twist of Fate', 'US', now()), +(28580, 'Crime Inc.', 'US', now()), +(28581, 'Ice Loves Coco', 'US', now()), +(28582, 'Paranormal Challenge', 'US', now()), +(28583, 'Hook, Line & Dinner', 'US', now()), +(28584, 'SUPER8', 'BE', now()), +(28585, 'The X Factor (BG)', 'BG', now()), +(28586, 'Гласът на България (The Voice of Bulgaria)', 'BG', now()), +(28587, 'Villa Vanthilt', 'BE', now()), +(28588, 'World Without End', 'CA', now()), +(28589, 'Happy Hollidays', 'UK', now()), +(28590, 'Gofrette', 'CA', now()), +(28591, 'Levy', 'NL', now()), +(28592, 'Tour du Jour', 'NL', now()), +(28593, 'The Choir That Rocks', 'UK', now()), +(28594, 'Kids behind Bars', 'UK', now()), +(28595, 'Celeb to Binbo Taro', 'JP', now()), +(28596, 'Keitai Sousakan 7', 'JP', now()), +(28597, 'Gotaisetsu', 'JP', now()), +(28598, 'Meitantei no Okite', 'JP', now()), +(29673, 'Bill Bryson: Notes from a Small Island', 'UK', now()), +(28600, 'JIN', 'JP', now()), +(28601, 'BOSS (2009)', 'JP', now()), +(28602, 'Сквот', 'RU', now()), +(28603, 'My Babysitter''s a Vampire', 'US', now()), +(28604, 'Shane Untamed', 'US', now()), +(28605, 'Finding Sarah', 'US', now()), +(28606, 'The Glee Project', 'US', now()), +(28607, 'Amsale Girls', 'US', now()), +(28608, 'Barátok közt', 'HU', now()), +(28609, 'Kickin'' It', 'US', now()), +(28611, 'Geo Bee', 'US', now()), +(28612, 'Jon Benjamin Has a Van', 'US', now()), +(28613, 'An Animal Saved My Life', 'US', now()), +(28615, 'Flea Man', 'US', now()), +(28616, 'Devil You Know', 'US', now()), +(28617, 'Pirate Hunters of the Caribbean', 'US', now()), +(28618, 'Bloomberg Enterprise', 'US', now()), +(28619, 'Visionaries: Inside the Creative Mind', 'US', now()), +(28620, 'Seat Swap', 'US', now()), +(28621, 'A.N.T. Farm', 'US', now()), +(28622, 'Ryan & Tatum: The O''Neals', 'US', now()), +(28623, 'Staten Island Cakes', 'US', now()), +(28624, 'The Nail Files', 'US', now()), +(28625, 'Storage Hunters', 'US', now()), +(28626, 'Rated A for Awesome', 'US', now()), +(28627, 'Cop Squad', 'UK', now()), +(28628, 'Single White Spenny', 'CA', now()), +(28629, 'Lee Mack''s All Star Cast', 'UK', now()), +(28630, 'Marriage Ref', 'UK', now()), +(28631, 'Fake or Fortune?', 'UK', now()), +(28632, 'Submarine School', 'UK', now()), +(28633, 'After Rome: Holy War and Conquest', 'UK', now()), +(28634, 'Absolute Zero', 'UK', now()), +(28635, 'Ancient Voices', 'US', now()), +(28636, 'A History of Celtic Britain', 'UK', now()), +(28637, 'Made In Britain', 'UK', now()), +(28638, 'James May''s Things You Need to Know', 'UK', now()), +(28639, 'Three Men Go to Venice', 'UK', now()), +(28640, 'Perfume', 'UK', now()), +(28641, 'Planet of the Apemen', 'UK', now()), +(28642, 'Horrible Histories', 'UK', now()), +(28643, 'Triunfo del Amor', 'MX', now()), +(28644, 'Four In A Bed', 'UK', now()), +(28645, 'Ik miss Nederland', 'NL', now()), +(28646, 'Je Echte Leeftijd', 'NL', now()), +(28647, 'Lola zoekt Brood', 'NL', now()), +(28648, 'Rhett & Link: Commercial Kings', 'US', now()), +(28649, 'Supremium', 'US', now()), +(28650, 'Almost Naked Animals', 'CA', now()), +(28651, 'Sidekick', 'CA', now()), +(28652, 'SlugTerra', 'CA', now()), +(28653, 'Отряд', 'RU', now()), +(28654, 'USB-Шоу с Иваном Охлобыстиным', 'RU', now()), +(28655, 'The Voice (AU)', 'AU', now()), +(28656, 'The Voice van Vlaanderen', 'BE', now()), +(31503, 'Bakusho Mondai no Bakuten! (Daibakuten)', 'JP', now()), +(28658, 'The Voice of Finland', 'FI', now()), +(28659, 'The Voice: La Plus Belle Voix', 'FR', now()), +(28660, 'The Voice (Greece)', 'GR', now()), +(28661, 'The Voice of India', 'IN', now()), +(28662, 'The Voice Israel', 'IL', now()), +(28663, 'The Voice of Poland', 'PL', now()), +(28664, 'Vocea României', 'RO', now()), +(28665, 'The Voice Sverige', 'SE', now()), +(28666, 'O Ses Türkiye (The Voice Turkey)', 'TR', now()), +(28667, 'Голос країни', 'UA', now()), +(28668, 'The Voice (UK)', 'UK', now()), +(28669, 'Метод Лавровой', 'RU', now()), +(28670, 'Carson Nation', 'US', now()), +(28671, 'I Kid with Brad Garrett', 'US', now()), +(28672, 'Extreme Chef', 'US', now()), +(28673, 'The Witches of Oz', 'US', now()), +(28674, 'Inu o Kau to Iu Koto', 'JP', now()), +(28675, 'Bucket & Skinner''s Epic Adventures', 'US', now()), +(28676, 'Killer Shots', 'US', now()), +(28677, 'Japanland', 'US', now()), +(28678, 'Say Yes to the Dress: Bridesmaids', 'US', now()), +(28679, 'Fresh Precure', 'JP', now()), +(28680, 'Legend Quest', 'US', now()), +(28681, 'Truck Stop USA', 'US', now()), +(28682, 'Run My Makeover', 'US', now()), +(28683, 'Home by Novogratz', 'US', now()), +(28684, 'I Married a Mobster', 'US', now()), +(28685, 'Ludo Bites America', 'US', now()), +(28686, 'Roseanne''s Nuts', 'US', now()), +(28687, 'Web Therapy', 'US', now()), +(28688, 'Ton of Cash', 'US', now()), +(28689, 'Tough Cookies (2011)', 'US', now()), +(28690, 'True Grime: Crime Scene Clean Up', 'US', now()), +(28691, 'Awkward', 'US', now()), +(28692, 'One Man Army', 'US', now()), +(28694, 'Dance Pe Chance', 'AE', now()), +(28695, 'Vodafone Mic', 'FJ', now()), +(28696, 'Dancing with the Stars (KS)', 'KR', now()), +(28697, 'Strictly Come Dancing (CH)', 'CN', now()), +(28698, 'Танцы со звездами', 'RU', now()), +(28699, 'The Sex Researchers', 'UK', now()), +(28700, 'Sirens (UK)', 'UK', now()), +(28701, 'Babies Behind Bars', 'UK', now()), +(28702, 'Brief van mijn kind', 'NL', now()), +(28703, 'Baby Jake', 'UK', now()), +(28704, 'The Good Cook', 'UK', now()), +(28705, 'Restoration Home', 'UK', now()), +(28706, 'Motorz', 'US', now()), +(28707, 'LIVE with Gabby', 'UK', now()), +(28708, 'Vanguard', 'US', now()), +(28709, 'Billion Dollar Freshmen', 'US', now()), +(28710, 'Мужчина во мне', 'RU', now()), +(28711, 'Oh! My Lady', 'KR', now()), +(28712, 'Stille Waters', 'BE', now()), +(28713, 'Kulderzipken', 'BE', now()), +(28714, 'Speer und er', 'DE', now()), +(28715, 'Albanians Got Talent', 'AL', now()), +(28716, 'De Nieuwe Garde', 'BE', now()), +(28717, 'Mankells Wallander', 'SE', now()), +(28718, 'Arabs Got Talent', 'LB', now()), +(28719, 'Beautiful Minds', 'UK', now()), +(28721, 'BBS: The Documentary', 'US', now()), +(28722, 'Flipping Vegas', 'US', now()), +(28723, 'Turnaround King', 'US', now()), +(28724, 'Cee Lo Green Talking to Strangers', 'US', now()), +(28725, 'Qual é o Seu Talento?', 'BR', now()), +(28726, 'Talento Chileno', 'CL', now()), +(28727, 'China''s Got Talent', 'CN', now()), +(28728, 'Supertalent', 'HR', now()), +(28729, 'Česko Slovensko má talent', 'CZ', now()), +(28730, 'Eesti talent', 'EE', now()), +(28731, 'Georgia''s Got Talent!', 'GE', now()), +(28733, 'India''s Got Talent', 'IN', now()), +(28734, 'Indonesia''s Got Talent', 'ID', now()), +(28735, 'BIG - Extreme Makeover', 'AU', now()), +(28736, 'Italia''s Got Talent', 'IT', now()), +(28737, 'Lietuvos talentai', 'LT', now()), +(28738, 'Wanns de eppes kanns!', 'LU', now()), +(28739, 'Mexicos Got Talent', 'MX', now()), +(28740, 'Pilipinas Got Talent', 'PH', now()), +(28741, 'Portugal Tem Talento', 'PT', now()), +(28742, 'Ja imam talenat', 'YI', now()), +(28743, 'Slovensko má talent', 'SK', now()), +(28744, 'Unnatural Histories', 'UK', now()), +(28745, 'World Destruction', 'JP', now()), +(34390, 'Are You My Tribe?', 'NZ', now()), +(28747, 'Beauties & the Boss', 'US', now()), +(28748, 'When Louis Met...', 'UK', now()), +(28749, 'Keith Olbermann', 'US', now()), +(28750, 'Feherty', 'US', now()), +(28751, 'Doctors Without Borders (2011)', 'US', now()), +(28752, 'America Sings', 'US', now()), +(28753, 'The Love Bus', 'UK', now()), +(28754, 'Top Trumps', 'UK', now()), +(28755, 'Next Door Nightmares', 'UK', now()), +(28756, 'Britain''s Bravest Cops', 'UK', now()), +(28757, 'Embarrassing Teen Bodies', 'UK', now()), +(28758, 'Guilty Pleasures', 'UK', now()), +(28759, 'Improvisation My Dear Watson', 'UK', now()), +(28760, 'Mexican Food Made Simple', 'UK', now()), +(28761, 'Against the Wall', 'US', now()), +(28762, 'Sweet Home Alabama', 'US', now()), +(28763, 'Texas Women', 'US', now()), +(28764, 'Bar Rescue', 'US', now()), +(28765, 'Hollywood Hi-Tech', 'US', now()), +(28766, 'Heat Seekers', 'US', now()), +(28767, 'Project Runway All-Stars', 'US', now()), +(28768, 'Tony Robinson Explores Australia', 'AU', now()), +(28769, 'Project Accessory', 'US', now()), +(28770, 'Siringo', 'US', now()), +(28771, 'Adopted Family', 'US', now()), +(28772, 'Kevin''s Life With Women', 'US', now()), +(28773, 'Undercover Karaoke', 'US', now()), +(28774, 'Understanding Today''s Man', 'US', now()), +(28775, 'The Dark Tower', 'US', now()), +(28776, 'American Horror Story', 'US', now()), +(28777, 'William & Kate: A Royal Love Story', 'US', now()), +(28778, 'Identity Crisis', 'US', now()), +(28779, 'American Gods', 'US', now()), +(28780, 'Thunderballs', 'US', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(28781, 'A Visit From The Goon Squad', 'US', now()), +(28782, 'The Correctors', 'US', now()), +(28783, 'Runaway (UK)', 'UK', now()), +(28784, 'Game Change', 'US', now()), +(28785, 'Spring Fall', 'US', now()), +(28786, 'Pyrates', 'US', now()), +(28787, 'My Formerly Hot Life', 'US', now()), +(28788, 'Critics'' Choice Television Awards', 'US', now()), +(28789, 'Born to Dance: Laurieann Gibson', 'US', now()), +(28790, 'Fashion Hunters', 'US', now()), +(28791, 'Mad Fashion', 'US', now()), +(28792, 'Between the Lines (AU)', 'AU', now()), +(28793, 'Freshwater Blue', 'AU', now()), +(28794, 'Whisker Wars', 'US', now()), +(28795, 'Scream if You Know The Answer', 'US', now()), +(28796, 'Sugar High', 'US', now()), +(28797, 'Big Law: Deputy Butterbean', 'US', now()), +(28798, 'La isla de los famosos', 'ES', now()), +(28799, 'Supervivientes: Expedición Robinson', 'ES', now()), +(28800, 'Supervivientes: Perdidos en el Caribe', 'ES', now()), +(28801, 'Survivor (Arab World)', 'SA', now()), +(28802, 'Survivor Africa', 'ZA', now()), +(28803, 'Into The Shangri-La', 'CN', now()), +(28804, 'Survivor Srbija', 'YI', now()), +(28805, 'Wyprawa Robinson', 'PL', now()), +(28806, 'Mountain Dew Survivor Pakistan', 'PK', now()), +(28807, 'Robinson: La Gran Aventura', 'VE', now()), +(28808, 'Te land, ter zee en in de lucht', 'NL', now()), +(28809, 'Ambassadeur voor 1 dag', 'NL', now()), +(28810, 'Stuck on Sheep Mountain', 'UK', now()), +(28811, 'The Removal Men: Pickfords', 'UK', now()), +(28812, 'British Masters', 'UK', now()), +(28813, 'The Great British Weather', 'UK', now()), +(28814, 'The Night Watch', 'UK', now()), +(28815, 'Candy Bar Girls', 'UK', now()), +(28816, 'Danger: Diggers at Work', 'UK', now()), +(28817, 'Secrets of the Pop Song', 'UK', now()), +(28818, 'Kate in Canada', 'UK', now()), +(28819, 'Ликвидация', 'RU', now()), +(28820, 'Галыгин.Ру', 'RU', now()), +(28821, 'Keeping Score', 'US', now()), +(28822, 'Black Jack (US)', 'US', now()), +(28823, 'Tomica Hero Rescue Force', 'JP', now()), +(28824, 'Zie Ze Vliegen', 'NL', now()), +(28825, 'Chick Fix', 'UK', now()), +(28826, 'Itsuka Tenma no Kuro Usagi', 'JP', now()), +(28827, 'No.6', 'JP', now()), +(28828, 'Nekogami Yaoyorozu', 'JP', now()), +(28829, 'Dantalian no Shoka', 'JP', now()), +(28830, 'Blood-C', 'JP', now()), +(28831, 'Blade (JP)', 'JP', now()), +(28832, 'Ikoku Meiro no Croisee', 'JP', now()), +(28833, 'Kamisama no Memo-chou', 'JP', now()), +(28834, 'Kami-sama Dolls', 'JP', now()), +(28835, 'Sacred Seven', 'JP', now()), +(28836, 'R-15', 'JP', now()), +(28837, 'Manyuu Hiken-chou', 'JP', now()), +(28838, 'Uta no Prince-sama: Maji Love 1000%', 'JP', now()), +(28839, 'Rebound (2011)', 'JP', now()), +(28840, 'Madonna Verde', 'JP', now()), +(28841, 'Secret Garden', 'KR', now()), +(28842, 'Albania''s Next Top Model', 'AL', now()), +(28843, 'Austria''s Next Topmodel', 'AT', now()), +(28844, 'Detroit Metal City', 'JP', now()), +(28845, 'OBN Star Model', 'BA', now()), +(28846, 'Bunny Drop', 'JP', now()), +(28847, 'Mayo Chiki!', 'JP', now()), +(28848, 'Let''s Do Lunch...with Gino & Mel', 'UK', now()), +(28849, 'The Idolmaster', 'JP', now()), +(28850, 'Ro-Kyu-Bu!', 'JP', now()), +(28851, 'Kaitou Tenshi Twin Angel', 'JP', now()), +(28852, 'Klusjesmannen, De', 'NL', now()), +(28853, 'Storm op komst', 'NL', now()), +(28854, 'Shawn Michaels'' MacMillan River Adventures', 'US', now()), +(28855, 'Wild Amazon', 'US', now()), +(28856, 'Deep Space Marvels', 'US', now()), +(28857, 'Tac TV', 'US', now()), +(28858, 'Primitive Instinct', 'US', now()), +(28859, 'Mudslingers Presented by Sta-Bil', 'US', now()), +(28860, 'Hallowed Ground Outdoors', 'US', now()), +(28861, 'Hollywood Hunter', 'US', now()), +(28862, 'Moultrie''s The Hit List', 'US', now()), +(28863, 'Dream Season Workin'' Man', 'US', now()), +(28864, 'Midway USA''s Gun Stories', 'US', now()), +(28865, 'Trijicon''s World of Sports Afield', 'US', now()), +(28866, 'Primetime Nightline: Beyond Belief', 'US', now()), +(28867, 'Grace', 'US', now()), +(32404, 'Riddles Of The Dead Series', 'US', now()), +(28870, 'Fortean TV', 'UK', now()), +(28871, 'Yasuko to Kenji', 'JP', now()), +(28872, 'Wingin'' It', 'CA', now()), +(28873, 'Team Elk', 'US', now()), +(28874, 'ScentBlocker Most Wanted', 'US', now()), +(28875, 'Headhunters TV', 'US', now()), +(28876, 'Playmates!', 'US', now()), +(28877, 'Playboy Trip: Patagonia', 'US', now()), +(28878, 'Operation: Osmin', 'US', now()), +(28879, 'Style Exposed', 'US', now()), +(28880, 'Амазонки', 'RU', now()), +(28881, 'Summer Home', 'US', now()), +(28882, 'Workin'' for Whitetails TV', 'US', now()), +(28883, 'Kroll Show', 'US', now()), +(28884, 'Quiz Trippers', 'UK', now()), +(28885, 'Peter Andre: Here 2 Help', 'UK', now()), +(28886, 'Strictly Kosher', 'UK', now()), +(28887, 'Dirty, Sexy Things', 'UK', now()), +(28888, 'Garden ER', 'UK', now()), +(28889, 'Fałszerze. Powrót Sfory', 'PL', now()), +(28890, 'The World''s Most Expensive Paintings', 'UK', now()), +(28892, 'The Life of Muhammad', 'UK', now()), +(28893, 'Richard Hammond''s Journey To The....', 'UK', now()), +(28894, 'Snelle Jelle Drekraces', 'NL', now()), +(28895, 'The Pranker', 'UK', now()), +(28896, 'Rick Stein''s Spain', 'UK', now()), +(28897, 'Trollied', 'UK', now()), +(28898, 'Double-J', 'JP', now()), +(28899, 'Rou Kyuu Bu!', 'JP', now()), +(28900, 'A Hunter''s Life', 'US', now()), +(28901, 'Lawrence Leung''s Unbelievable', 'AU', now()), +(28902, 'Celebrity Ghost Hunt', 'US', now()), +(28903, 'Hunting Freaks', 'US', now()), +(28904, 'The Amateurs', 'US', now()), +(28905, 'Brotherhood Outdoors', 'US', now()), +(28906, 'Major League Bowhunter', 'US', now()), +(28907, 'Extreme Outer Limits TV', 'US', now()), +(28908, 'Wild Fish Wild Places', 'US', now()), +(28909, 'Doug Koenig''s Championship Season', 'US', now()), +(28910, 'Магазинчик БО', 'RU', now()), +(28911, 'Идиот', 'RU', now()), +(28912, 'War and Civilization', 'US', now()), +(28913, 'Bokusatsu Tenshi Dokuro-chan', 'JP', now()), +(28914, 'Bokusatsu Tenshi Dokuro-chan 2nd Series', 'JP', now()), +(28915, 'Eden of The East', 'JP', now()), +(28916, 'La Casa de al Lado', 'US', now()), +(34047, 'Must See 3', 'UK', now()), +(28918, 'Isekai no Seikishi Monogatari', 'JP', now()), +(28919, 'Kenko Zenrakei Suieibu Umisho', 'JP', now()), +(28920, 'Kite Liberator', 'JP', now()), +(28921, 'Kite', 'JP', now()), +(28922, 'Tetsuwan Birdy Decode Dainiki', 'JP', now()), +(28923, 'Tenamonya Voyagers', 'JP', now()), +(28924, 'Sumomomo Momomo - The Strongest Bride on Earth', 'JP', now()), +(28925, 'Family Challenge', 'US', now()), +(28926, 'Wheel 2000', 'US', now()), +(28927, 'Paranormal Witness', 'US', now()), +(28928, 'Евлампия Романова. Следствие ведет дилетант', 'RU', now()), +(28929, 'Deadly 60 (US)', 'US', now()), +(28930, 'La viuda joven', 'VE', now()), +(28931, 'La Reina del Sur', 'US', now()), +(28932, 'Can Of Worms', 'AU', now()), +(28933, 'Big Rich Texas', 'US', now()), +(28934, 'South Beach Tow', 'US', now()), +(28935, 'Overtreders', 'NL', now()), +(28936, 'The Corrie Years', 'UK', now()), +(28937, 'Born to Shine', 'UK', now()), +(28938, 'Show Me the Funny', 'UK', now()), +(28939, 'Travellers', 'UK', now()), +(28940, 'Silent Library (UK)', 'UK', now()), +(28941, 'Wildlife Patrol', 'UK', now()), +(28942, 'Crownies', 'AU', now()), +(28943, 'Yuru Yuri', 'JP', now()), +(28944, 'The Car Show (2011)', 'US', now()), +(28945, 'The Impressionists - Painting and Revolution', 'UK', now()), +(28946, 'Sleutels van Fort Boyard, De', 'NL', now()), +(28947, 'Leven als een Prof', 'NL', now()), +(28948, 'World Swimming Championships 2011', 'UK', now()), +(28949, 'The Code', 'UK', now()), +(28950, 'Sugartown', 'UK', now()), +(28951, 'Diva’s draaien door', 'NL', now()), +(28953, 'Dragons'' Den (IE)', 'IE', now()), +(28954, 'Hoe heurt het eigenlijk?', 'NL', now()), +(28955, 'Leila Bakar', 'SE', now()), +(28956, 'Plats bruts', 'ES', now()), +(28957, 'Mawaru Penguin Drum', 'JP', now()), +(28958, 'Sommar med Ernst', 'SE', now()), +(28959, 'Allsång på Skansen', 'SE', now()), +(28960, 'Dallas (2012)', 'US', now()), +(28962, 'Sarah 101', 'US', now()), +(28963, 'Prince$$', 'US', now()), +(28964, 'Door Knockers', 'US', now()), +(28965, 'The Five', 'US', now()), +(28966, 'Bruce Lee Lives!', 'US', now()), +(28967, 'PrankStars', 'US', now()), +(28968, 'The Invaders (2011)', 'US', now()), +(28969, 'Hillbilly Handfishin''', 'US', now()), +(28970, 'Come Dine With Me (Ireland)', 'IE', now()), +(28971, 'Selling LA', 'US', now()), +(28972, 'Scrubs: Interns', 'US', now()), +(28973, 'Billionaire''s Car Club', 'US', now()), +(28974, 'Vegas Strip', 'US', now()), +(28975, 'Bloomberg Risk Takers', 'US', now()), +(28976, 'Uplifting Country', 'US', now()), +(28977, 'Sextreme Makeover', 'US', now()), +(28978, 'Camp Playboy', 'US', now()), +(28979, 'Kenny Hotz''s Triumph of the Will', 'CA', now()), +(28980, 'Animals Say the Wildest Things', 'US', now()), +(28983, 'Danmarks Næste Topmodel', 'DK', now()), +(28984, 'American Hoggers', 'US', now()), +(28985, 'Next Top Model', 'GR', now()), +(28986, 'Top Modell', 'HU', now()), +(28987, 'Good Life ~Arigatô, Papa. Sayônara~', 'JP', now()), +(28988, 'Marumo no Okite', 'JP', now()), +(28989, 'Asuko March!', 'JP', now()), +(28990, 'Muscle Girl!', 'JP', now()), +(28991, 'Common Law (2012)', 'US', now()), +(28992, 'The Yard', 'CA', now()), +(28993, 'Most Eligible Dallas', 'US', now()), +(28994, 'Family Restaurant', 'US', now()), +(28995, 'Tanked', 'US', now()), +(28996, 'Daar is de camera!', 'NL', now()), +(28997, 'Charles and Diana: The Wedding of the Century', 'UK', now()), +(28998, 'Beaver Falls', 'UK', now()), +(28999, 'Дежурный ангел', 'RU', now()), +(29000, 'Гражданин поэт', 'RU', now()), +(29001, 'Malta''s Top Model', 'MT', now()), +(29002, 'Осторожно, модерн! 2', 'RU', now()), +(29003, 'Joe Maddison''s War', 'UK', now()), +(29004, 'Armenia''s Got Talent', 'AM', now()), +(29005, 'Shiawase ni Narou yo', 'JP', now()), +(29006, 'Namae o Nakushita Megami', 'JP', now()), +(29007, 'Umareru.', 'JP', now()), +(29008, 'Don Quixote', 'JP', now()), +(29009, 'Ikemen desu ne', 'JP', now()), +(29010, 'Tengo Talento, Mucho Talento', 'US', now()), +(29011, 'Україна має талант', 'UA', now()), +(29012, 'Yetenek Sizsiniz Türkiye!', 'TR', now()), +(29013, 'Thailand''s Got Talent', 'TH', now()), +(29014, 'Die grössten Schweizer Talente', 'CH', now()), +(29015, 'Korea''s Got Talent', 'KR', now()), +(29016, 'SA''s Got Talent', 'ZA', now()), +(29017, 'Slovenija ima talent', 'SI', now()), +(29018, 'Game One', 'DE', now()), +(29019, 'Town with Nicholas Crane', 'UK', now()), +(29020, 'Wonderstuff', 'UK', now()), +(29021, 'Dave''s One Night Stand', 'UK', now()), +(29022, 'GSI – Spezialeinheit Göteborg', 'SE', now()), +(29023, 'This is Хорошо', 'LV', now()), +(29024, 'Redakai: Conquer the Kairu', 'CA', now()), +(29025, 'Hard Day’s Night', 'RU', now()), +(29026, 'Mr. Freeman', 'RU', now()), +(29027, 'I Do Over', 'US', now()), +(29028, 'Fish Town', 'UK', now()), +(29029, 'Koihime Musou', 'JP', now()), +(29030, 'Здесь и сейчас', 'RU', now()), +(29031, 'Дзядко3', 'RU', now()), +(29032, 'Новый год', 'RU', now()), +(29033, 'Конституция', 'RU', now()), +(29034, 'Поповнин, который живет на крыше', 'RU', now()), +(29035, 'Соседи', 'RU', now()), +(29036, 'Terminator Salvation: The Machinima Series', 'US', now()), +(29037, 'Someone''s Daughter, Someone''s Son', 'UK', now()), +(29038, 'Canada''s Got Talent', 'CA', now()), +(29039, 'Extraordinary Acts of Courage', 'US', now()), +(29040, 'Picker Sisters', 'US', now()), +(29041, 'Hangul', 'KR', now()), +(29042, 'Great Thinkers: In Their Own Words', 'UK', now()), +(29043, 'Geordie Finishing School for Girls', 'UK', now()), +(29044, 'The Secret Life of Buildings', 'UK', now()), +(29045, 'Donna Decorates Dallas', 'US', now()), +(29046, 'Lebet el Hayat', 'EG', now()), +(29047, 'Dino Show, De', 'NL', now()), +(29048, 'Tante in Turkije', 'NL', now()), +(29049, 'Over de streep', 'NL', now()), +(29050, 'We zijn er bijna', 'NL', now()), +(29051, 'Nyanpire The Animation', 'JP', now()), +(29052, 'Iconicles', 'UK', now()), +(29053, 'Village SOS', 'UK', now()), +(29054, 'National Treasures Live', 'UK', now()), +(29055, 'Punta Escarlata', 'ES', now()), +(29056, 'Ganjina', 'AF', now()), +(29057, 'Kutia', 'AL', now()), +(29058, 'Affari tuoi', 'IT', now()), +(29059, 'Al Safqa', 'AE', now()), +(29060, 'Deal or No Deal (Arab World)', 'AE', now()), +(29061, 'Trato Hecho (AR)', 'AR', now()), +(29062, 'Dil kam No Dil', 'AM', now()), +(29063, 'Deal or No Deal (AT)', 'AT', now()), +(29064, 'Davam Ya Tamam', 'AZ', now()), +(29066, 'India''s Got More Talent', 'IN', now()), +(29067, 'Alaskan Monster Hunt', 'US', now()), +(29068, 'Banja', 'FR', now()), +(29069, 'Comeback', 'CZ', now()), +(29070, 'Полкино', 'RU', now()), +(29071, 'Morita-san wa Mukuchi', 'JP', now()), +(29072, 'AMERICA In Primetime', 'US', now()), +(29073, 'Prohibition', 'US', now()), +(29074, 'Dynamo: Magician Impossible', 'UK', now()), +(29075, 'Detroit in Overdrive', 'US', now()), +(29076, 'Momster of the Bride', 'US', now()), +(29077, 'Comic-Con', 'US', now()), +(29078, 'Plaza de España', 'ES', now()), +(29079, 'Ronnie Corbett''s Comedy Britain', 'UK', now()), +(29080, '50 Documentaries To See Before You Die', 'US', now()), +(29081, 'Secret Mountain Fort Awesome', 'US', now()), +(29082, 'Would You Rather...? with Graham Norton', 'US', now()), +(29083, 'Cloak and Dagger', 'US', now()), +(29084, 'Mockingbird', 'US', now()), +(29085, 'Ultimate Police Interceptors', 'UK', now()), +(29086, 'Timothy Spall: Back at Sea', 'UK', now()), +(29087, 'H+', 'US', now()), +(29088, 'The Renovators', 'AU', now()), +(29089, 'Monty Halls'' Great Irish Escape', 'UK', now()), +(29090, 'Moby Dick', 'US', now()), +(29091, 'Code-E', 'JP', now()), +(29092, 'Ayakashi - Samurai Horror Tales', 'JP', now()), +(29093, 'Croc Man', 'UK', now()), +(29094, 'Dirty Soap', 'US', now()), +(29095, 'The Swell Life', 'US', now()), +(29096, 'The Three Chocolatiers', 'US', now()), +(29097, 'The Pioneer Woman', 'US', now()), +(29098, 'The Perfect 3', 'US', now()), +(29099, 'Unlocking the Universe', 'US', now()), +(29100, 'From Beyond', 'US', now()), +(29101, 'Extreme Cribs', 'US', now()), +(29102, 'Koukousei Restaurant', 'JP', now()), +(29103, 'Wallace and Gromit''s Cracking Contraptions', 'UK', now()), +(29104, 'Dumbest Stuff on Wheels', 'US', now()), +(29105, 'My Ride Rules', 'US', now()), +(29106, '100 Hollywood Crimes, Misdemeanors & Dirty Deeds', 'US', now()), +(29107, 'High Stakes Sweepers', 'US', now()), +(29108, 'French Food Safari', 'AU', now()), +(29109, 'Hellsing Ultimate', 'JP', now()), +(29110, 'Ella', 'BE', now()), +(29111, 'Watchmen. Motion Comics', 'US', now()), +(29112, 'CMT Made', 'US', now()), +(29113, 'Jurassic CSI', 'US', now()), +(29114, 'Safebreakers', 'UK', now()), +(29115, 'Mount Pleasant', 'UK', now()), +(29116, 'Bear Swamp Recovery', 'US', now()), +(29117, 'Hulk Hogan’s MCW', 'US', now()), +(29118, 'Impractical Jokers', 'US', now()), +(29119, 'Buried Treasure', 'US', now()), +(29120, 'Rat Busters NYC', 'US', now()), +(29121, 'Basketball Wives LA', 'US', now()), +(29122, 'Big Sexy', 'US', now()), +(29123, 'Quirky', 'US', now()), +(29124, 'Dinosaur Revolution', 'US', now()), +(29125, 'Dirty Money', 'US', now()), +(29126, 'Perisher: Do or Die', 'US', now()), +(29127, 'Excused', 'US', now()), +(29128, '120 Minutes (2011)', 'US', now()), +(29129, 'Lip ''Em and Rip ''Em', 'US', now()), +(29130, 'Saved (2011)', 'US', now()), +(29131, 'Rise Up', 'US', now()), +(29132, 'Miracle Babies', 'US', now()), +(29133, 'Love/Hate', 'IE', now()), +(29134, 'Seven Dwarves', 'UK', now()), +(29136, 'House Ibiza', 'NL', now()), +(29137, 'Het drama van...', 'NL', now()), +(29138, '60 jaar Oranje op tv', 'NL', now()), +(29139, 'Britain''s Hidden Heritage', 'UK', now()), +(29140, 'Ocean Giants', 'UK', now()), +(29141, 'The Bachelor (UK)', 'UK', now()), +(29142, 'Big Brother''s Bit on the Side', 'UK', now()), +(29143, 'Alesha''s Street Dance Stars', 'UK', now()), +(29144, 'Harry''s Arctic Heroes', 'UK', now()), +(29145, 'Epic Win', 'UK', now()), +(29146, 'Inside Gatwick', 'UK', now()), +(29147, 'The Sins', 'UK', now()), +(29148, 'Hamish & Andys Gap Year', 'AU', now()), +(29149, 'In Defence', 'UK', now()), +(29150, 'Eurovision Dance Contest', 'AZ', now()), +(29151, 'Eurovision Young Dancers Contest', 'NO', now()), +(29152, 'Anderson Live', 'US', now()), +(29153, 'Yes We Can Dance', 'DE', now()), +(29154, 'Девять жизней Нестора Махно', 'RU', now()), +(29155, 'JUNKies', 'US', now()), +(29156, 'Thicker Than Water: The Marinos', 'US', now()), +(29157, 'Rising : Rebuilding Ground Zero', 'US', now()), +(29158, 'Dr. Steve', 'US', now()), +(29159, 'След', 'RU', now()), +(29160, 'Dramarama: Spooky', 'UK', now()), +(29161, 'Big Hair Alaska', 'US', now()), +(29162, 'The X Factor, XSeer Al Najah', 'AE', now()), +(29163, 'Factor X (AR)', 'AR', now()), +(29164, 'Hallelujah', 'US', now()), +(29165, 'X-Factor Armenia', 'AM', now()), +(29166, 'X Factor Belgium', 'BE', now()), +(29167, 'X Factor Bulgaria', 'BG', now()), +(29168, 'Factor X Chile', 'CL', now()), +(29169, 'El Factor X', 'CO', now()), +(29170, 'El Factor X: Batalla de Estrella', 'CO', now()), +(29171, 'El Factor Xs', 'CO', now()), +(29172, 'Scaredy Squirrel', 'CA', now()), +(29173, 'X Faktor (CZ)', 'CZ', now()), +(29174, 'X Factor (Denmark)', 'DK', now()), +(29175, 'X Factor (Finland)', 'FI', now()), +(29176, 'La Commanderie', 'FR', now()), +(29177, 'Hand Aufs Herz', 'DE', now()), +(29178, 'Fraud Squad (UK)', 'UK', now()), +(29179, 'America''s Game', 'US', now()), +(29180, 'Kuchenne Rewolucje', 'PL', now()), +(29181, 'Great Migrations (2011)', 'UK', now()), +(29182, 'Armchair Thriller', 'UK', now()), +(29183, 'Forgotten', 'UK', now()), +(29184, 'Hidamari Sketch', 'JP', now()), +(29185, 'The Beat Goes On', 'UK', now()), +(29186, 'Zand Erover', 'NL', now()), +(29187, 'Dropping, De', 'NL', now()), +(29188, 'Vijfde Dag, De', 'NL', now()), +(29189, 'Renkema TV', 'NL', now()), +(29190, 'The X Factor (GR)', 'GR', now()), +(29191, 'The X Factor (IS)', 'IS', now()), +(29192, 'The X Factor (IN)', 'IN', now()), +(29193, 'The X Factor (ID)', 'ID', now()), +(29194, 'The X Factor (IT)', 'IT', now()), +(29195, 'The X Factor (KZ)', 'KZ', now()), +(29196, 'The X Factor (NZ)', 'NZ', now()), +(29197, 'The X Factor (NO)', 'NO', now()), +(29198, 'The X Factor (PL)', 'PL', now()), +(29199, 'The X Factor (RO)', 'RO', now()), +(29200, 'Секрет Успеха', 'RU', now()), +(29201, 'Фактор А', 'RU', now()), +(29202, 'Factor X (ES)', 'ES', now()), +(29203, 'Ікс-Фактор', 'UA', now()), +(29204, 'The X Factor (PH)', 'PH', now()), +(29205, 'First Mission', 'NL', now()), +(29206, 'The Field Of Blood', 'UK', now()), +(29207, 'Spice Britain', 'UK', now()), +(29208, 'Bride Flight', 'NL', now()), +(29209, 'Small Teen Bigger World', 'UK', now()), +(29210, 'Dinner Date (AU)', 'AU', now()), +(29211, 'India on Four Wheels', 'UK', now()), +(29212, 'Topmanager Gezocht', 'NL', now()), +(29213, 'IAAF World Athletics Championships 2011', 'UK', now()), +(29214, 'Pushy and Proud', 'UK', now()), +(29215, 'Claire Richards: Slave to Food', 'UK', now()), +(29216, 'Red or Black', 'UK', now()), +(29217, 'HGTV Green Home', 'US', now()), +(29218, 'Alien Nine', 'JP', now()), +(32333, 'Is Football Racist?', 'UK', now()), +(29220, 'The Art of Fielding', 'US', now()), +(29221, '40', 'US', now()), +(29222, 'Dark Matters: Twisted But True', 'US', now()), +(29223, 'Drake''s Passage', 'US', now()), +(29833, 'Don''t Tell the Bride (US)', 'US', now()), +(29225, 'My Design Life', 'US', now()), +(29226, 'Alternative History', 'US', now()), +(29227, 'HGTV Urban Oasis', 'US', now()), +(29228, 'Nothing Trivial', 'NZ', now()), +(29229, 'Top 50 Videos of the ''90s', 'US', now()), +(29230, 'Top 100 Number Ones', 'US', now()), +(29231, 'Elegance and Decadence: Age of the Regency', 'UK', now()), +(29232, 'David Jason''s Great Escapes', 'UK', now()), +(29233, 'A Night With Will Young', 'UK', now()), +(29234, 'Stephen Fry''s 100 Greatest Gadgets', 'UK', now()), +(29235, 'Wszyscy kochają Romana', 'PL', now()), +(29236, 'rodzinka.pl', 'PL', now()), +(29237, 'Sexskolen (DK)', 'DK', now()), +(29238, 'Clase Turista: El Mundo Según Los Argentinos', 'AR', now()), +(29239, 'In Their Footsteps', 'AU', now()), +(29240, 'La La''s Full Court Life', 'US', now()), +(29241, 'Hobgoblin', 'US', now()), +(29242, 'Viagra Diaries', 'US', now()), +(29243, 'Big Easy Brides', 'US', now()), +(29244, 'Angels Among Us', 'US', now()), +(29245, 'Mixed Up', 'NL', now()), +(29246, 'Lang Zullen We Leven', 'NL', now()), +(29247, 'Dieren op spreekuur', 'NL', now()), +(29248, 'Minute To Win It (UK)', 'UK', now()), +(29249, 'Kamer 9', 'NL', now()), +(29250, 'Lang Leve De TV', 'NL', now()), +(29251, 'Hotter Than My Daughter (NL)', 'NL', now()), +(29252, 'Concrete Circus', 'UK', now()), +(29253, 'Underbelly: Land of the Long Green Cloud', 'NZ', now()), +(29254, 'Dallaglio''s World Cup', 'UK', now()), +(29255, 'The A-Z Of Crime', 'UK', now()), +(29256, '9/11: The Day That Changed The World', 'UK', now()), +(29257, 'Law & Order: Cape Town', 'ZA', now()), +(29258, 'Justin Lee Collins - Living Las Vegas', 'UK', now()), +(29259, 'Take 10', 'NL', now()), +(29260, 'Reel History Of Britain', 'UK', now()), +(29261, 'Young Soldiers', 'UK', now()), +(29262, 'House Hunt in France', 'UK', now()), +(29286, 'Appropriate Adult', 'UK', now()), +(29264, 'Warrior Women With Lucy Lawless', 'US', now()), +(29265, 'Unzipped', 'NZ', now()), +(29266, 'Cuff''d', 'US', now()), +(29267, 'The Villa (NL)', 'NL', now()), +(29268, 'Herman’s Restaurant School', 'NL', now()), +(29269, 'Wie Trouwt Mijn Zoon', 'NL', now()), +(29270, 'Casualty 1906', 'UK', now()), +(29271, 'Linemakers', 'US', now()), +(29272, 'In-Sideout Beach Volleyball', 'US', now()), +(29273, 'Chemistry', 'US', now()), +(29274, 'Skin to the Max', 'US', now()), +(29275, 'Crave', 'US', now()), +(29277, 'The Exorcist Files', 'US', now()), +(29278, 'Killer Food', 'US', now()), +(29279, 'Neverland', 'US', now()), +(29280, 'Killer Instinct (2011)', 'US', now()), +(29281, 'I Faked My Own Death', 'US', now()), +(29282, 'The Jonathan Ross Show', 'UK', now()), +(29283, 'Studio Ajax', 'NL', now()), +(29284, 'Vermomming, De', 'NL', now()), +(29285, 'Carte Blanche (NL)', 'NL', now()), +(29287, 'Royal Navy: Submarine Mission', 'UK', now()), +(29288, 'Showhouse Showdown', 'US', now()), +(29289, 'Clash Time', 'FR', now()), +(29290, 'The Dead Files', 'US', now()), +(29291, 'Long Island Medium', 'US', now()), +(29292, 'Bez tajemnic', 'PL', now()), +(29294, 'Overspel', 'NL', now()), +(29295, 'Acusados', 'ES', now()), +(29296, 'Breaking News med Filip & Fredrik', 'SE', now()), +(29297, 'Ultimate Travel', 'US', now()), +(29298, 'Frontier Force', 'US', now()), +(29299, 'Behzat Ç.', 'TR', now()), +(29300, 'I Hate My Bath', 'US', now()), +(29301, 'Sylvia’s Secrets', 'NL', now()), +(29302, 'Operation Hospital Food with James Martin', 'UK', now()), +(29303, 'Hoe Houd Ik Het Spannend?', 'NL', now()), +(29304, 'Kinderfluisteraar, De', 'NL', now()), +(29305, 'Rambam', 'NL', now()), +(29306, 'Caribbean Combo', 'NL', now()), +(29307, 'Gajes', 'NL', now()), +(29308, 'Sketchup', 'NL', now()), +(29309, 'U hoort nog van ons', 'NL', now()), +(29310, 'Elements', 'NL', now()), +(29311, 'RESTART', 'NL', now()), +(29312, 'Fuck the parents', 'NL', now()), +(29313, 'Film je zomer', 'NL', now()), +(29314, 'Moordweek', 'NL', now()), +(29315, 'Showboaters', 'UK', now()), +(29316, 'Krabbé Staat Op Straat', 'NL', now()), +(29317, 'Truman', 'NL', now()), +(29318, 'Red Sonja', 'NL', now()), +(29319, 'Weg van Nederland', 'NL', now()), +(29320, 'Not So Lonely Planet', 'NL', now()), +(29321, 'Collapsus', 'NL', now()), +(29322, 'Teddy''s Show', 'DE', now()), +(29323, 'Ausgekuschelt', 'DE', now()), +(29324, 'German Angst', 'DE', now()), +(29325, 'The Glass Virgin', 'UK', now()), +(29326, 'Harry (UK)', 'UK', now()), +(29327, 'World''s Most Dangerous Roads', 'UK', now()), +(29328, 'Back from the Dead', 'UK', now()), +(29329, 'Stockinger', 'AT', now()), +(29330, 'Адмиралъ', 'RU', now()), +(29331, 'Extra Time', 'BE', now()), +(29332, 'PBS Newshour', 'US', now()), +(29333, 'Political Capital', 'US', now()), +(29334, 'Rocket City Rednecks', 'US', now()), +(29335, 'Mad Scientists', 'US', now()), +(29336, 'Cosmos: A Space-Time Odyssey', 'US', now()), +(29337, 'Man Hunt', 'US', now()), +(29338, 'The Link', 'US', now()), +(29339, 'Seinpost Den Haag', 'NL', now()), +(29340, 'Rocket Men', 'US', now()), +(29341, 'Gilded Lillys', 'US', now()), +(29342, 'Het Spijt Me', 'NL', now()), +(29343, 'Ooggetuige: In De Porno', 'NL', now()), +(29344, 'Planet Dinosaur', 'UK', now()), +(29345, 'The Body Farm', 'UK', now()), +(29346, 'The Bomb Squad', 'UK', now()), +(29347, 'Hairy Bikers Meals On Wheels', 'UK', now()), +(29348, 'Deadly 360', 'UK', now()), +(29349, 'Sam & Mark''s Big Friday Wind-Up', 'UK', now()), +(29350, 'Каменская', 'RU', now()), +(29351, 'MR. BRAIN', 'JP', now()), +(29352, 'Rocked', 'US', now()), +(29353, 'How Hard Can It Be?', 'US', now()), +(29354, 'The Witch Doctor Will See You Now', 'US', now()), +(29355, 'Jessie (2011)', 'US', now()), +(29356, 'Made In America (2011)', 'US', now()), +(29357, 'Longmire', 'US', now()), +(29358, 'Pink Pastry', 'US', now()), +(29359, 'Bed & Breakfast', 'NL', now()), +(29360, 'Nihonjin no Shiranai Nihongo', 'JP', now()), +(29361, 'Glina', 'PL', now()), +(29362, 'Canadian Pickers', 'CA', now()), +(29363, 'Canada Sings', 'CA', now()), +(29364, 'Storage Wars: Texas', 'US', now()), +(29365, 'Prison Diaries', 'US', now()), +(29366, 'All-American Muslim', 'US', now()), +(29367, 'Bridal Mile', 'US', now()), +(29368, 'Sweet Genius', 'US', now()), +(29369, 'Underbelly: Razor', 'AU', now()), +(29370, '4 stjärnors middag', 'SE', now()), +(29371, 'Holland In Da Hood', 'NL', now()), +(29372, '5op2', 'NL', now()), +(29373, 'Missing Millions', 'UK', now()), +(29374, 'Billy Connolly''s Route 66', 'UK', now()), +(29375, 'RTL Woonmagazine', 'NL', now()), +(29376, 'LIVEнь', 'RU', now()), +(29377, 'Het Goddelijke Monster', 'BE', now()), +(29378, 'Chickens', 'UK', now()), +(29379, 'Best of British', 'UK', now()), +(29380, 'Holding Out for a Hero', 'UK', now()), +(29381, 'Little England', 'UK', now()), +(29382, 'The Queen''s Palaces', 'UK', now()), +(29383, 'Pau!l', 'NL', now()), +(29384, 'Waan van de dag, De', 'NL', now()), +(29385, 'Mayday Mayday', 'UK', now()), +(29386, 'Licht Uit, Spot Aan!', 'NL', now()), +(29387, 'Stadsdokter, De', 'NL', now()), +(29388, '9/11 De dag die de wereld veranderde', 'NL', now()), +(29389, 'Geloof en een Hoop Liefde', 'NL', now()), +(29390, 'Week van Filemon, De', 'NL', now()), +(29391, 'X-Cherso', 'NL', now()), +(29392, 'Dierenbeschermers,De', 'NL', now()), +(29393, 'Achter het scherm (NTR)', 'NL', now()), +(29394, 'Inside Oud', 'NL', now()), +(29395, 'Highland Emergency', 'UK', now()), +(29396, 'Onder Wibi''s Vleugels', 'NL', now()), +(29397, 'Geen Probleem', 'NL', now()), +(29398, 'Goudmijn', 'NL', now()), +(29399, 'Wandeling, De', 'NL', now()), +(29400, 'Let’s Get Married', 'NL', now()), +(29401, 'The Marvellous Mrs Beeton, With Sophie Dahl', 'UK', now()), +(29402, 'Sandhurst', 'UK', now()), +(30923, 'Miss Fisher''s Murder Mysteries', 'AU', now()), +(29404, 'JJK SECURITY', 'US', now()), +(29406, 'Disaster House', 'US', now()), +(29407, 'This is Jinsy', 'UK', now()), +(29408, 'Carfellas', 'US', now()), +(29409, 'Interiors Inc.', 'US', now()), +(29410, 'Unleashed By Garo', 'US', now()), +(29411, 'Majors & Minors', 'US', now()), +(29412, 'The Nerdist', 'US', now()), +(29413, 'Немного не в себе', 'RU', now()), +(29414, 'Орел и решка', 'UA', now()), +(29415, 'Неделя с Марианной Максимовской', 'RU', now()), +(29416, 'Физика или химия', 'RU', now()), +(31810, 'Derren Brown: Mind Control', 'UK', now()), +(29418, 'CIA Confidential', 'US', now()), +(29419, 'Viking Wilderness', 'US', now()), +(29420, 'Dolphin Warriors', 'US', now()), +(29421, 'The Skunk Whisperer', 'US', now()), +(29422, 'Outback Wrangler', 'US', now()), +(29423, 'George Harrison: Living in the Material World', 'US', now()), +(29424, 'Gabriel Iglesias Presents Stand Up Revolution', 'US', now()), +(29425, 'Brain Games', 'US', now()), +(29426, 'Chelsea Settles', 'US', now()), +(29427, 'Welcome to Sweetie Pie''s', 'US', now()), +(29428, 'The Rosie Show', 'US', now()), +(29429, 'Oprah''s Lifeclass', 'US', now()), +(29430, 'Texas Multi Mamas', 'US', now()), +(29431, 'Africa''s Deadliest', 'US', now()), +(29432, 'Homicide Hunter', 'US', now()), +(29433, 'Good Vibes', 'US', now()), +(29434, 'My Extreme Animal Phobia', 'US', now()), +(29435, 'Metal Evolution', 'US', now()), +(29436, 'Playoff Gems on NBATV', 'US', now()), +(29437, 'Терминал', 'RU', now()), +(29438, 'The Game of Life (2011)', 'US', now()), +(29439, 'Scrabble Showdown', 'US', now()), +(29440, 'The Wannabes', 'US', now()), +(29441, 'SEC Storied', 'US', now()), +(29442, 'Master Debaters', 'US', now()), +(29443, 'Contenders: They Lost The Election But Changed Political History', 'US', now()), +(29444, 'Disaster Guy', 'US', now()), +(29445, 'Battle of the Blades', 'CA', now()), +(29446, 'Numbers Never Lie', 'US', now()), +(29447, 'Dan Le Batard Is Highly Questionable', 'US', now()), +(29448, 'The Substitute', 'US', now()), +(29449, 'The Contenders (2011)', 'US', now()), +(29450, 'Day Jobs', 'US', now()), +(29451, 'The Layover', 'US', now()), +(29452, 'I Want That (2011)', 'US', now()), +(29453, 'Most Lethal', 'US', now()), +(29454, 'Exotische Liefde', 'BE', now()), +(29455, 'For Better or Worse (2011)', 'US', now()), +(29456, 'Meet Ricky Gervais', 'UK', now()), +(29457, 'twentysomething', 'AU', now()), +(29458, 'At Home with Julia', 'AU', now()), +(29459, 'Wild Boys', 'AU', now()), +(29460, 'Slide', 'AU', now()), +(29461, 'Назад в СССР', 'RU', now()), +(29462, 'Show and Tell', 'UK', now()), +(29463, 'Wie Niet Wedt, Wie Niet Wint', 'NL', now()), +(29464, 'Een Huis Vol', 'NL', now()), +(29465, 'American Digger', 'US', now()), +(29466, 'Big Easy Justice', 'US', now()), +(29467, 'World''s Worst Tenants', 'US', now()), +(29468, 'Undercover Stings', 'US', now()), +(29469, 'Big Dead Place', 'US', now()), +(29470, 'Perception', 'US', now()), +(29471, 'The Client List', 'US', now()), +(29472, 'Ring of Honor Wrestling', 'US', now()), +(29473, 'Kitchen Crashers', 'US', now()), +(29474, 'Brothers On Call', 'US', now()), +(29475, 'Million Dollar Contractor', 'US', now()), +(29476, 'The Story of British Pathé', 'UK', now()), +(29477, 'The Story of Film: An Odyssey', 'UK', now()), +(29478, 'Puppies vs. Babies', 'US', now()), +(29479, 'Los protegidos', 'ES', now()), +(29480, 'How To Build...', 'UK', now()), +(29481, 'Real Food Family Cook Off', 'UK', now()), +(29482, 'Regimental Stories', 'UK', now()), +(29483, 'Junior MasterChef (NL)', 'NL', now()), +(29484, 'Fresh Meat', 'UK', now()), +(29485, 'Educating Essex', 'UK', now()), +(29486, 'A South American Journey with Jonathan Dimbleby', 'UK', now()), +(29487, 'How to Win in the Den', 'UK', now()), +(29488, 'The Adventures Of Abney And Teal', 'UK', now()), +(29489, 'Mixed Britannia', 'UK', now()), +(29490, 'Home Cooking Made Easy', 'UK', now()), +(29491, 'Nigel Slater''s Simple Cooking', 'UK', now()), +(29492, 'Jo Brand''s Big Splash', 'UK', now()), +(29493, 'Агентство НЛС', 'RU', now()), +(29494, 'Dateline on Cloo', 'US', now()), +(29495, 'Chihayafuru', 'JP', now()), +(29496, 'Guilty Crown', 'JP', now()), +(29497, 'Kyoukai Senjou no Horizon', 'JP', now()), +(29498, 'Fate/Zero', 'JP', now()), +(29499, 'Tamayura Hitotose', 'JP', now()), +(29500, 'Mashiro-iro Symphony: The Color of Lovers', 'JP', now()), +(29501, 'Un-Go', 'JP', now()), +(29502, 'Shonan Junai Gumi (Young GTO)', 'JP', now()), +(29503, 'Kimi to Boku', 'JP', now()), +(29504, 'Maji de Watashi ni Koi Shinasai!!', 'JP', now()), +(29505, 'Маргоша', 'RU', now()), +(29506, 'La Riera', 'ES', now()), +(29507, 'Halloween Wars', 'US', now()), +(29508, 'Penn & Teller: Tell a Lie', 'US', now()), +(29509, 'Future Diary', 'JP', now()), +(29510, 'Boku wa Tomodachi ga Sukunai', 'JP', now()), +(29511, 'Persona 4 The Animation', 'JP', now()), +(29512, 'Phi Brain: Kami no Puzzle', 'JP', now()), +(29513, 'C3', 'JP', now()), +(29514, 'Ben-Tou', 'JP', now()), +(29515, 'Kidou Senshi Gundam Age', 'JP', now()), +(29516, 'Adventures in Parenting', 'US', now()), +(29517, 'Debat op 2', 'NL', now()), +(29518, 'Paul Rosenmöller en het land van Obama', 'NL', now()), +(29519, 'Lief''s Uit', 'NL', now()), +(29520, 'Sarah’s Barbaren', 'NL', now()), +(29521, 'Steps Reunion', 'UK', now()), +(29522, 'La Fuerza Del Destino', 'MX', now()), +(29523, 'Superstar K', 'KR', now()), +(29524, 'We Got Married (우리 결혼했어요)', 'KR', now()), +(29525, 'Кто в доме хозяин?', 'RU', now()), +(29526, 'Английският съсед', 'BG', now()), +(29527, 'Alma Gêmea', 'BR', now()), +(29528, 'Amor gitano', 'MX', now()), +(29529, 'Running Man (런닝맨)', 'KR', now()), +(29530, 'Muñeca Brava', 'AR', now()), +(29531, 'Wedding Band', 'US', now()), +(29532, 'Układ Warszawski', 'PL', now()), +(29533, 'Sunday NFL Countdown', 'US', now()), +(29534, 'NFL 32', 'US', now()), +(29535, 'NFL Kickoff', 'US', now()), +(29536, 'Audibles', 'US', now()), +(29537, 'Куми-куми', 'RU', now()), +(29538, 'Раскол', 'RU', now()), +(29539, 'NFL Live', 'US', now()), +(29540, 'Дядюшка Ау', 'SU', now()), +(29541, 'Toute la vérité', 'CA', now()), +(29542, 'Масяня', 'RU', now()), +(29543, 'Сексуальная психология', 'RU', now()), +(29544, 'When the Levees Broke: A Requiem in Four Acts', 'US', now()), +(29545, 'Star King (스타킹)', 'KR', now()), +(29546, 'Hotell syden', 'NO', now()), +(29547, 'Fighting on the Frontline', 'UK', now()), +(29548, 'Strong Heart (강심장)', 'KR', now()), +(29549, 'De Gasperi, l''uomo della speranza', 'IT', now()), +(29550, 'Fans', 'BE', now()), +(29551, 'Moeder, waarom leven wij?', 'BE', now()), +(29552, '24 Hour Catwalk', 'US', now()), +(29553, 'There''s No Taste Like Home', 'UK', now()), +(29554, 'Serious Explorers: Sir Walter Raleigh', 'UK', now()), +(29555, 'Superior Interiors with Kelly Hoppen', 'UK', now()), +(29556, 'Hidden', 'UK', now()), +(29557, 'Let''s Go Dream Team (출발 드림팀)', 'KR', now()), +(29558, 'Зважені та щасливі', 'UA', now()), +(29559, 'Министерство культуры', 'RU', now()), +(29560, 'On n''demande qu''à en rire', 'FR', now()), +(29561, 'NFL Turning Point', 'US', now()), +(29562, 'Weathering Disaster', 'US', now()), +(29563, 'Celebrity Nightmares Decoded', 'US', now()), +(29564, 'Teen spirit', 'US', now()), +(29565, 'De vloek van Osama', 'BE', now()), +(29566, 'Husbands', 'US', now()), +(29567, 'Slavernij, De', 'NL', now()), +(29568, 'Questions pour un champion', 'FR', now()), +(29569, 'On n''est pas couché', 'FR', now()), +(29570, 'N''oubliez pas les paroles !', 'FR', now()), +(29571, 'Le Chevalier de Maison-Rouge', 'FR', now()), +(29572, 'Als ''t maar beweegt', 'BE', now()), +(29573, 'Will to Live', 'US', now()), +(29574, 'Ku-De-Ta', 'US', now()), +(29575, 'Tom''s Wild Life', 'US', now()), +(29576, 'TechStars', 'US', now()), +(29577, 'Sex Diaries', 'US', now()), +(29578, 'HGTV''s Great Rooms', 'US', now()), +(29579, 'Cooking School Confidential', 'US', now()), +(29580, 'Great North Run', 'UK', now()), +(29581, 'Gustafsson 3 tr', 'SE', now()), +(29582, 'Yamikin Ushijima-kun', 'JP', now()), +(29583, 'H2 (2005)', 'JP', now()), +(29584, 'Partaj', 'SE', now()), +(29585, 'Mot de passe', 'FR', now()), +(29586, 'Le Comte de Monte-Cristo', 'FR', now()), +(29587, 'Der Checker', 'DE', now()), +(29588, 'Secrets d''histoire', 'FR', now()), +(29589, 'Hetalia: World Series', 'JP', now()), +(29590, 'Easy Chinese', 'US', now()), +(29591, 'The Donatella Project', 'US', now()), +(29592, 'Simply Baking', 'US', now()), +(29593, 'Chuck''s Week Off', 'US', now()), +(29594, 'Exposure (UK)', 'UK', now()), +(29595, 'Mary Queen of Frocks', 'UK', now()), +(29596, 'Dirty Tricks of the Tradesmen', 'UK', now()), +(29597, 'Celebrity Wish List', 'UK', now()), +(29598, 'Dream Machines', 'US', now()), +(29599, 'Большая опера', 'RU', now()), +(29600, 'Школа злословия', 'RU', now()), +(29601, 'Le Juste Prix', 'FR', now()), +(29602, 'Real Housewives of Athens', 'GR', now()), +(29603, '14 sai no haha', 'JP', now()), +(29604, 'Чета Пиночетов', 'RU', now()), +(29605, 'American Underworld', 'US', now()), +(29606, 'Hockey: A People''s History', 'CA', now()), +(29607, 'Abarenbou mama', 'JP', now()), +(29608, 'Fred''s Head', 'CA', now()), +(29609, 'It started with a kiss', 'TW', now()), +(29610, 'All Roads Lead Home', 'UK', now()), +(29611, 'Duarte e Companhia', 'PT', now()), +(29612, 'Real clothes', 'JP', now()), +(29613, 'Edison no haha', 'JP', now()), +(29614, 'First Kiss', 'JP', now()), +(29615, 'Samurai High School', 'JP', now()), +(29616, 'Clone Baby', 'JP', now()), +(29617, 'Strawberry on the Shortcake', 'JP', now()), +(29618, 'L''histoire des services secrets français', 'FR', now()), +(29619, 'Mag ik u kussen? (NL)', 'NL', now()), +(29620, 'Justin''s House', 'UK', now()), +(29621, 'Koizora', 'JP', now()), +(29622, 'Juui doritoru', 'JP', now()), +(29623, 'Plus belle la vie', 'FR', now()), +(32694, 'GMTV Today', 'UK', now()), +(29625, 'Final Verdict', 'US', now()), +(29626, 'College Football Featured', 'US', now()), +(29627, 'PJTV', 'US', now()), +(29628, 'Magic City', 'US', now()), +(29629, 'College Football Talk', 'US', now()), +(29630, 'CrossFit Games', 'US', now()), +(29631, 'Cover Me Canada', 'CA', now()), +(29633, 'Top Secret Recipe', 'US', now()), +(29634, 'Большая разница', 'RU', now()), +(29635, 'Astrid in Wonderland', 'BE', now()), +(29636, 'Mirai Nikki', 'JP', now()), +(29637, 'Mai gaaru', 'JP', now()), +(29638, 'Hellstrøm Rydder Opp - Hjemme', 'NO', now()), +(29639, 'Les Dames de la côte', 'FR', now()), +(29640, 'La Traque', 'FR', now()), +(29641, 'Noires sont les Galaxies', 'FR', now()), +(29642, 'Arsène Lupin joue et perd', 'FR', now()), +(29643, 'Châteauvallon', 'FR', now()), +(29644, 'ESPNU Road Trip', 'US', now()), +(29645, 'The Experts', 'US', now()), +(29646, 'Crunch Time', 'US', now()), +(29647, 'BCS Countdown Show', 'US', now()), +(29648, 'SportsCenterU', 'US', now()), +(29649, 'High Stakes (2011)', 'UK', now()), +(29650, 'Zombie Roadkill', 'US', now()), +(29651, 'Michael: Tuesdays and Thursdays', 'CA', now()), +(29652, 'Геймеры', 'RU', now()), +(29653, 'Beautiful Lives: Stories from a Children''s Hospice', 'UK', now()), +(29654, 'I Kveld Med Ylvis', 'NO', now()), +(29655, 'Жестокие игры', 'RU', now()), +(29656, 'Heja Björn', 'SE', now()), +(29657, 'Skärgårdsdoktorn', 'SE', now()), +(29658, 'Команда', 'RU', now()), +(29659, 'Простые истины', 'RU', now()), +(29660, 'The Power Within', 'US', now()), +(29661, 'Northstar', 'US', now()), +(29662, 'Hand Made in Britain', 'UK', now()), +(29663, 'The Pickup', 'US', now()), +(29664, 'The Chew', 'US', now()), +(29665, 'Jean Michel Jarre: Concert pour la tolérance', 'FR', now()), +(29666, 'Models, Misfits & Mayhem', 'UK', now()), +(29667, 'Joanna Lumley''s Greek Odyssey', 'UK', now()), +(29668, 'Brave New World with Stephen Hawking', 'UK', now()), +(29669, 'India with Sanjeev Bhaskar', 'UK', now()), +(29670, 'A Vida da Gente', 'BR', now()), +(29671, 'Phil Spencer: Secret Agent', 'UK', now()), +(29672, 'Up For Hire Live', 'UK', now()), +(29674, 'Lost Kingdoms of Africa', 'UK', now()), +(29675, 'Wild New World', 'UK', now()), +(29676, 'Insectia', 'CA', now()), +(29677, 'Sullivan & Son', 'US', now()), +(29678, 'Kwestie van kiezen', 'NL', now()), +(29679, 'Hart tegen Hard', 'NL', now()), +(29680, 'Moet je me niet wat vragen?', 'NL', now()), +(29681, 'Правило лабиринта (Плацента)', 'RU', now()), +(29682, 'От винта!', 'RU', now()), +(29683, 'Cakes and Ale', 'UK', now()), +(29684, 'Hillsborough', 'UK', now()), +(29685, 'Good Dog', 'CA', now()), +(29686, 'Good News World', 'AU', now()), +(29687, 'Без Винта!', 'RU', now()), +(29688, 'Gruen Planet', 'AU', now()), +(29689, 'Последний герой', 'RU', now()), +(29690, 'Gintberg På Kanten', 'DK', now()), +(29691, 'The Cut', 'UK', now()), +(29692, 'Trawler Wars', 'UK', now()), +(29693, 'Hunter X Hunter (2011)', 'JP', now()), +(29694, 'Wicked Fit', 'US', now()), +(29695, 'Talking Dead', 'US', now()), +(29696, 'Bomb Patrol Afghanistan', 'US', now()), +(29697, 'Monster In-Laws', 'US', now()), +(29698, 'Flip Men', 'US', now()), +(29699, 'Jean Michel Jarre: Live in Monaco', 'MC', now()), +(29700, 'По имени Барон', 'RU', now()), +(29701, 'Черный Ворон', 'RU', now()), +(29702, 'Бандитский Петербург', 'RU', now()), +(29703, 'Yume wo Kanaeru Zo', 'JP', now()), +(29704, 'Disconnected', 'US', now()), +(29705, 'Nazi Collaborators', 'US', now()), +(29706, '100 Greatest Songs of the 00s', 'US', now()), +(29707, 'After the Runway', 'US', now()), +(29708, 'Killer Karaoke', 'US', now()), +(29709, 'Kirstie''s Handmade Britain', 'UK', now()), +(29710, 'River Cottage Veg', 'UK', now()), +(29711, 'Origins of Us', 'UK', now()), +(29712, 'Just Rosie', 'UK', now()), +(29713, 'Последний герой: Сердце Африки', 'RU', now()), +(29714, 'Моя прекрасная няня', 'RU', now()), +(29715, 'Simi Select Indias Most Desirable', 'IN', now()), +(29716, 'Up Close And Personal With PZ', 'IN', now()), +(29717, 'The Amazing Race: China Rush', 'CN', now()), +(29718, 'American Icon: Muscle Car', 'US', now()), +(29719, 'Good Food, Good Deeds', 'US', now()), +(29720, 'Epic Poker', 'US', now()), +(29721, 'Bref', 'FR', now()), +(29722, 'Making Monsters', 'US', now()), +(29723, '100 Moments That Changed TV', 'US', now()), +(29724, 'OutFront', 'US', now()), +(29725, '10 Best Kitchen Projects', 'US', now()), +(29726, 'Action Sports Plus', 'US', now()), +(29727, 'Depth Chart', 'US', now()), +(29728, 'Tech Toys 360', 'US', now()), +(29729, 'My Naked Secret', 'US', now()), +(29730, 'Trick My What?', 'US', now()), +(29732, 'Planet Egypt', 'US', now()), +(29733, 'Helt Perfekt', 'NO', now()), +(29734, 'Dangerous Drivers'' School', 'UK', now()), +(29735, 'Paul Merton''s Adventures', 'UK', now()), +(29736, 'Driving Wars', 'UK', now()), +(29737, 'Film 2011 with Claudia Winkleman', 'UK', now()), +(29738, 'Peter Andre: My Life', 'UK', now()), +(29739, 'Doctor Cheezy', 'NL', now()), +(29740, 'Yotta', 'NL', now()), +(29741, 'Death In Paradise', 'UK', now()), +(29742, 'Secret Pakistan', 'UK', now()), +(29743, 'Shock and Awe: The Story of Electricity', 'UK', now()), +(29744, 'Fra sjel til sjel', 'NO', now()), +(29746, 'American Guns', 'US', now()), +(29747, 'Lord Stanley''s Summer 2011', 'US', now()), +(29748, 'Women, War & Peace', 'US', now()), +(29749, 'Op Vakantie', 'NL', now()), +(29750, 'Ranking the cars', 'NL', now()), +(29751, 'Hispania', 'ES', now()), +(29752, 'Bludgeoning Angel Dokuro-chan', 'JP', now()), +(29753, 'Kachorra', 'AR', now()), +(29754, 'Primeval: New World', 'CA', now()), +(29755, 'Охотник', 'RU', now()), +(29756, 'Rove LA', 'AU', now()), +(29757, 'Call of the Wildman', 'US', now()), +(29758, 'Mr. Young', 'CA', now()), +(29759, 'Bayou Billionaires', 'US', now()), +(29760, 'Summer Rental', 'US', now()), +(29761, 'Beau Knows Outdoors', 'US', now()), +(29762, 'The Best Thing I Ever Made', 'US', now()), +(29763, 'Emeril''s Table', 'US', now()), +(29764, 'Facing Trauma', 'US', now()), +(29765, 'Hairy Bikers', 'US', now()), +(29766, 'Ottawa Senators hockey game', 'CA', now()), +(29767, 'The Incredible Dr. Pol', 'US', now()), +(29768, 'Knights of Mayhem', 'US', now()), +(29769, 'Rock Stars', 'US', now()), +(29770, 'Scouted', 'US', now()), +(29771, 'Secretly Pregnant', 'US', now()), +(29772, 'NFL on CBS', 'US', now()), +(29773, 'Weed Wars', 'US', now()), +(29774, 'Family BrainSurge', 'US', now()), +(29775, 'Kitchen Cousins', 'US', now()), +(29776, 'Bordertown: Laredo', 'US', now()), +(29777, 'PBS Arts Fall Festival', 'US', now()), +(29778, 'Mafstory', 'SK', now()), +(29779, 'Profesionáli', 'SK', now()), +(29780, 'Putous', 'FI', now()), +(29781, 'Минаев Live', 'RU', now()), +(29782, 'A Place in the Sun', 'US', now()), +(29783, 'Swarovski Optik Quests', 'US', now()), +(29784, 'My First Renovation', 'US', now()), +(29785, 'Ancient Life', 'US', now()), +(29786, 'Five (US)', 'US', now()), +(29787, 'FM (2011)', 'US', now()), +(29788, 'Harvest', 'US', now()), +(29789, 'Maken-ki', 'JP', now()), +(29790, 'Проект Подиум', 'RU', now()), +(29791, 'Hacktion', 'HU', now()), +(29792, 'World Cities 3D', 'US', now()), +(29793, 'Scary Tales', 'US', now()), +(29794, 'Perla negra', 'AR', now()), +(29795, 'Ketonen & Myllyrinne', 'FI', now()), +(29796, 'Café con aroma de mujer', 'CO', now()), +(29797, 'Lenore, the Cute Little Dead Girl', 'US', now()), +(29798, 'Suspectes', 'FR', now()), +(29799, 'Two of a Kind', 'UK', now()), +(29800, 'Derren Brown: The Experiments', 'UK', now()), +(29801, 'Signed By Katie', 'UK', now()), +(29802, 'Jamie''s Great Britain', 'UK', now()), +(29803, 'A Very British Party', 'UK', now()), +(29804, '10 желаний', 'UA', now()), +(29805, 'Лялечка', 'UA', now()), +(29806, 'Перемена', 'UA', now()), +(29807, 'Housos', 'AU', now()), +(29808, 'Zwei Engel für Amor', 'DE', now()), +(29809, 'Тайный знак', 'RU', now()), +(29810, 'Celebrity Antiques Road Trip', 'UK', now()), +(29811, 'Over leven met kanker', 'NL', now()), +(29812, 'Jonge dokters - van het OLVG', 'NL', now()), +(29813, 'The Case', 'UK', now()), +(29814, 'Symphony', 'UK', now()), +(29815, 'Source Code', 'US', now()), +(29816, 'Bag of Bones', 'US', now()), +(29817, 'Romancing The Stone', 'US', now()), +(29818, 'CelebriDate', 'US', now()), +(29819, 'Why Am I Still Single?', 'US', now()), +(29820, 'Rock Center with Brian Williams', 'US', now()), +(32875, 'Redningskoyta', 'NO', now()), +(29822, 'The Nanny Diaries', 'US', now()), +(29823, 'Fort Boyard - Ultimate Challenge', 'US', now()), +(29824, 'The Lincoln Lawyer', 'US', now()), +(29825, 'TNT Mystery Movie Night', 'US', now()), +(29826, 'Pitchin'' In', 'US', now()), +(29827, 'Million Dollar Mind Game', 'US', now()), +(29828, 'The World''s Greatest Musical Prodigies', 'UK', now()), +(29829, 'Dave''s Old Porn', 'US', now()), +(29830, 'iGenius: How Steve Jobs Changed The World', 'US', now()), +(29831, 'Brides of Beverly Hills', 'US', now()), +(29832, 'Octonauts Creature Reports', 'UK', now()), +(29834, 'Рассмеши комика', 'UA', now()), +(29835, 'Társas játék', 'HU', now()), +(29836, 'Kimi ga Nozomu Eien', 'JP', now()), +(29837, 'Большое путешествие. Семеро смелых', 'RU', now()), +(29838, 'Olje!', 'NO', now()), +(29840, 'Asia Downunder', 'NZ', now()), +(29841, 'Sigrid søker selskap', 'NO', now()), +(29843, 'Gran Hoteñ', 'ES', now()), +(29844, 'Ørnen: En krimi-odyssé', 'DK', now()), +(29845, 'Bad Sex', 'US', now()), +(29846, 'Trashopolis', 'CA', now()), +(29847, 'Vietnam in HD', 'US', now()), +(29848, 'The Super (2011)', 'US', now()), +(29849, 'Chef Hunter', 'US', now()), +(29850, 'MTV2''s Guy Code', 'US', now()), +(29851, 'Design Wars', 'US', now()), +(29852, 'Wedden dat ik het kan', 'NL', now()), +(29853, 'Life After Football', 'NL', now()), +(29854, 'Dit Is Mijn Lijf', 'NL', now()), +(29855, 'Een huis vol honden', 'NL', now()), +(29856, 'Sunny''s side of sex', 'NL', now()), +(29857, 'Motel De Jong', 'NL', now()), +(29858, 'Royal Canin Dog Challenge', 'NL', now()), +(29859, 'Susan Boyle: An Unlikely Superstar', 'UK', now()), +(29860, 'The Food Hospital', 'UK', now()), +(29861, 'Top Boy', 'UK', now()), +(29862, 'Best Dish - The Chefs', 'UK', now()), +(29863, 'Top 100 Hip Hop Hits', 'US', now()), +(29864, 'Hidden City', 'US', now()), +(29865, 'Wild Freaks of Nature', 'US', now()), +(29866, 'Monster Man', 'US', now()), +(29867, 'Secret Millionaires Club', 'US', now()), +(29869, 'American Haunters', 'US', now()), +(29870, 'Threesome', 'UK', now()), +(29871, 'Jump Shipp', 'US', now()), +(29872, 'School Spirits', 'US', now()), +(29873, 'Nacht van de popmuziek', 'NL', now()), +(29874, 'Junk Gypsies', 'US', now()), +(29875, 'CMT Artists of the Year', 'US', now()), +(29876, 'America''s Supernanny', 'US', now()), +(29877, 'Суд времени', 'RU', now()), +(29878, 'Yesterday Live', 'RU', now()), +(29879, 'The Tommy Wi-Show', 'US', now()), +(29880, 'Исторический процесс', 'RU', now()), +(29881, 'Универ. Новая общага', 'RU', now()), +(29882, 'Great British Ghosts', 'UK', now()), +(29883, 'Hot Like Us', 'UK', now()), +(29884, 'Tamara Ecclestone: Billion $$ Girl', 'UK', now()), +(29885, 'The Modest Adventures of David O''Doherty', 'IE', now()), +(29886, 'Naughty But Nice with Rob Shuter', 'US', now()), +(29887, 'Mr. Personalities Takes on the World', 'US', now()), +(29888, 'Guys Night In!', 'US', now()), +(29889, 'Deadline (2011)', 'US', now()), +(29890, 'The Ferris Wheel', 'US', now()), +(29891, 'NHL Plays of the Week', 'US', now()), +(29892, 'The Jury (2011)', 'UK', now()), +(29893, 'Jokebox', 'ES', now()), +(29894, 'Суть времени', 'RU', now()), +(29895, 'Alone in the Wild (UK)', 'UK', now()), +(29896, 'Kiekens', 'BE', now()), +(29897, 'Unnatural Acts', 'UK', now()), +(29898, 'Level Up', 'US', now()), +(29899, 'Chills', 'UK', now()), +(29900, 'The Ricki Lake Show', 'US', now()), +(29901, 'Valley of the Dolls (2012)', 'US', now()), +(29902, 'Goodnight Burbank', 'US', now()), +(29903, 'New York: A Documentary Film', 'US', now()), +(29904, 'Het Programma van Wim Helsen', 'BE', now()), +(29905, 'Dekalog', 'PL', now()), +(29906, 'Paid Programming: Icelandic Ultra Blue', 'US', now()), +(29907, 'Rang 1', 'BE', now()), +(29908, 'Back in the USSR', 'BE', now()), +(29909, 'City Hunter (SK)', 'KR', now()), +(29910, 'Опера: Хроники убойного отдела', 'RU', now()), +(29911, 'Drie generaties', 'BE', now()), +(29913, 'Теоретики', 'BY', now()), +(29914, 'Тайны следствия', 'RU', now()), +(29915, 'Sex Rx', 'US', now()), +(29916, 'Ceramics: A Fragile History', 'UK', now()), +(29917, 'Inside the DHS', 'US', now()), +(29918, 'Forever Young', 'US', now()), +(29919, 'Love Scouts', 'US', now()), +(29920, 'Dance Complex', 'US', now()), +(29921, 'Smoke Jumpers', 'US', now()), +(29922, 'Shoebox Sessions', 'US', now()), +(29923, 'Ade in Britain', 'UK', now()), +(29924, 'Vedetään hatusta', 'FI', now()), +(29925, 'Assassin''s Creed - Lineage', 'CA', now()), +(29926, 'Достоевский', 'RU', now()), +(29927, 'The Hairy Bikers: Mums Know Best', 'UK', now()), +(29928, 'Diva of Distressed', 'US', now()), +(29929, 'CSI Me', 'US', now()), +(29930, 'Bush Cowboy with Matt Wright', 'US', now()), +(29931, 'America the Wild with Casey Anderson', 'US', now()), +(29932, 'Man-Eater Manhunt', 'US', now()), +(29933, 'Philly Undercover', 'US', now()), +(29934, 'Something Else', 'UK', now()), +(29935, 'Animal Superpowers', 'US', now()), +(29936, 'Me and Lee', 'US', now()), +(29937, 'Fantasy Football League', 'UK', now()), +(29938, 'In the Dark', 'US', now()), +(29939, 'HBCU Football', 'US', now()), +(29940, 'Randy to the Rescue', 'US', now()), +(29941, 'Romance is Dead', 'US', now()), +(29942, 'Sweet Avenger', 'US', now()), +(29943, 'Real Crime/Reel Story', 'US', now()), +(29944, 'Real Streets Miami', 'US', now()), +(29945, 'Hostage: Do or Die', 'US', now()), +(29946, 'Hunting Justice with William Phelps', 'US', now()), +(29947, 'Crimes of Passion (2012)', 'US', now()), +(29948, 'Deadly Sins', 'US', now()), +(29949, 'Unraveled: Countdown to a Kill', 'US', now()), +(29950, 'Mitt stora feta syrianska bröllop', 'SE', now()), +(29951, 'Dirty Digest', 'UK', now()), +(29952, 'Sorority Girls', 'UK', now()), +(29953, 'Drop Down Menu', 'UK', now()), +(29954, 'Lost Heroes of World War One', 'UK', now()), +(32899, 'Nattskiftet', 'NO', now()), +(29956, 'Mountain Men Of Alaska', 'US', now()), +(29957, 'Fearless Kitchen', 'US', now()), +(29958, 'Prophets Of Science Fiction', 'US', now()), +(29959, 'Hammer Session!', 'JP', now()), +(29960, 'Вольф Мессинг: Видевший сквозь время', 'RU', now()), +(29961, 'Мульт личности', 'RU', now()), +(29962, '+100500 (ТВ)', 'RU', now()), +(29963, 'L''Épervier', 'FR', now()), +(29964, 'Rikospoliisi Maria Kallio', 'FI', now()), +(29965, 'Austin & Ally', 'US', now()), +(29966, 'The Big Cheese', 'US', now()), +(29967, 'Born Dealers', 'US', now()), +(29968, 'Rollin'' with Zach', 'US', now()), +(29969, 'Invention USA', 'US', now()), +(29970, 'Million Dollar Listing: NY', 'US', now()), +(29971, 'Miss Advised', 'US', now()), +(29972, 'America''s Money Class with Suze Orman', 'US', now()), +(29973, 'Moonshiners', 'US', now()), +(29974, 'Newlyweds: The First Year', 'US', now()), +(29975, 'Night Stalkers', 'US', now()), +(29976, 'Paint The Town', 'US', now()), +(29977, 'Pricing The Priceless', 'US', now()), +(29978, 'Project Soulmate', 'US', now()), +(29979, 'The Celebrity Apprentice (AU)', 'AU', now()), +(29980, 'Beeldverhaal', 'NL', now()), +(29981, 'My Transsexual Summer', 'UK', now()), +(29982, 'Ross Kemp Back on the Frontline', 'UK', now()), +(29983, 'Next Hair Guru', 'NL', now()), +(29984, 'New Chicks: Brabantse nachten op Curaçao', 'NL', now()), +(29985, 'Wild Wives of Africa', 'US', now()), +(29986, 'The Truth Behind', 'US', now()), +(29987, 'The Therapists', 'US', now()), +(29989, 'Baseball Wives', 'US', now()), +(29990, 'Chef Roblé & Co', 'US', now()), +(29991, 'The Art Of America', 'UK', now()), +(29992, 'Приключения Электроника', 'SU', now()), +(29993, 'Beau Geste', 'UK', now()), +(29994, 'Second Chance with Jo Marie Payton', 'US', now()), +(29995, 'Kumman kaa', 'FI', now()), +(29996, 'Te Gek', 'BE', now()), +(29997, 'Galileo', 'JP', now()), +(29998, 'How We Invented The World', 'US', now()), +(29999, 'Anger Management', 'US', now()), +(30000, 'London: The Inside Story', 'UK', now()), +(30001, 'You''ve Been Scammed', 'UK', now()), +(30002, 'Gran Hotel', 'ES', now()), +(30003, 'The Session', 'IE', now()), +(30004, 'Oprah''s Lifeclass: Live', 'US', now()), +(30005, 'Family Pickle', 'US', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(30006, 'Metal Hurlant Chronicles', 'FR', now()), +(30007, 'Scent of the Missing', 'US', now()), +(30008, '12 стульев', 'SU', now()), +(30009, 'The Joy of Sets', 'AU', now()), +(30010, 'Sell This House: Extreme', 'US', now()), +(30011, 'American Humane Association Hero Dog Awards', 'US', now()), +(30012, 'Penguin Island (US)', 'US', now()), +(30013, 'UFC on FOX', 'US', now()), +(30014, 'Clue', 'US', now()), +(30015, '«Russian Stand-up» с Юрием Хованским', 'RU', now()), +(30016, 'Hovimäki', 'FI', now()), +(30017, 'What''s Up Warthogs!', 'CA', now()), +(30018, 'Silent Partner', 'US', now()), +(30019, 'M. Deity', 'US', now()), +(30020, 'The Special', 'US', now()), +(30021, 'The Exceptions', 'US', now()), +(30022, 'Hard Cover', 'US', now()), +(30023, 'Winslow', 'US', now()), +(30024, 'Regular Einstein', 'US', now()), +(30025, 'The Enclave', 'US', now()), +(30026, 'On We Go', 'US', now()), +(30027, 'Big in Japan', 'US', now()), +(30028, 'We the Jury (2012)', 'US', now()), +(30029, 'TGIM', 'US', now()), +(30030, 'The Willis Clan', 'US', now()), +(30031, 'The Sheriff', 'US', now()), +(30032, 'The Royal British Legion Festival of Remembrance', 'UK', now()), +(30033, 'House Of Cards (USA)', 'US', now()), +(30034, 'Pawn Games', 'US', now()), +(30035, 'Hungry Men at Work', 'US', now()), +(30036, 'Auction in My House', 'US', now()), +(30037, 'The Hustler', 'US', now()), +(30038, 'Schmokk', 'NO', now()), +(30039, 'Skin Deep: The Business of Beauty', 'UK', now()), +(30040, 'Britain''s Killer Roads', 'UK', now()), +(30041, 'Fairground Attractions', 'UK', now()), +(30042, 'The Café', 'UK', now()), +(30043, 'Пилот международных авиалиний', 'RU', now()), +(30044, 'Специстория', 'RU', now()), +(30045, 'Undercover Boss Australia', 'AU', now()), +(30046, 'Pioneers Turned Millionaires', 'US', now()), +(30047, 'The Rivals', 'US', now()), +(30048, 'America Wild and Wacky', 'US', now()), +(30049, 'When Pigs Fly', 'US', now()), +(30050, 'The Vampire Princess', 'US', now()), +(30051, 'Legend of the Crystal Skulls', 'US', now()), +(30052, 'Flying with Condors', 'US', now()), +(30053, 'World War II: Final Days', 'US', now()), +(30054, 'A Woman Among Wolves', 'US', now()), +(30055, 'Air Disasters', 'US', now()), +(30056, 'Amazing Plants', 'US', now()), +(30057, 'Amazon River Crocs', 'US', now()), +(30058, 'America''s Treasures', 'US', now()), +(30059, 'Baby Planet', 'US', now()), +(30060, 'Big Cats of the Savannah', 'US', now()), +(30061, 'Carrier at War: The USS Enterprise', 'US', now()), +(30062, 'Cheetah: Price of Speed', 'US', now()), +(30063, 'Road to Punkin Chunkin', 'US', now()), +(30064, 'Big Shrimpin''', 'US', now()), +(30065, 'You Deserve It', 'US', now()), +(30066, 'Real Deal', 'US', now()), +(30067, 'Hollywood Moms Night', 'US', now()), +(30068, 'Triggers: Weapons That Changed The World', 'US', now()), +(30069, 'Rectify', 'US', now()), +(30070, 'Пелагия и белый бульдог', 'RU', now()), +(30071, 'The Hamster Wheel', 'AU', now()), +(30072, 'Eve no Jikan', 'JP', now()), +(30073, 'Такси', 'UA', now()), +(30074, 'The Jo Whiley Music Show', 'UK', now()), +(30075, 'Friendzone', 'US', now()), +(30076, 'Punk Payback with Bas Rutten', 'US', now()), +(30077, 'Born to Drive', 'US', now()), +(30078, 'Cheerleader Camp', 'US', now()), +(30079, 'Got Home Alive!', 'US', now()), +(30080, 'Clubhouse Confidential', 'US', now()), +(30081, 'My House, Your Money', 'CA', now()), +(30082, 'Verses and Flow', 'US', now()), +(30083, 'The Devil''s Dinner Party', 'UK', now()), +(30084, 'Driving Academy', 'UK', now()), +(30085, 'The Adventurer''s Guide to Britain', 'UK', now()), +(30086, 'Maisie Raine', 'UK', now()), +(30087, 'Miles Across the Sea', 'US', now()), +(30088, 'Primary Issues', 'US', now()), +(30089, 'FMA Weekly', 'CA', now()), +(30090, 'Danger Jane', 'US', now()), +(30091, 'Wilson Phillips: Still Holding On', 'US', now()), +(30092, 'Beware The Batman', 'US', now()), +(30093, 'Starving Secrets with Tracey Gold', 'US', now()), +(30094, 'To Appomattox', 'US', now()), +(30095, 'Kochira Katsushika-ku Kameari Koen-mae Hashutsujo', 'JP', now()), +(30096, 'Синий Фил', 'RU', now()), +(30097, 'Samurai Sentai Shinkenger', 'JP', now()), +(30098, 'Saru Lock', 'JP', now()), +(30099, 'Smile (2009)', 'JP', now()), +(30100, 'Pac-12 Football Championship', 'US', now()), +(30101, 'Lawless', 'US', now()), +(30102, 'Big Ten Football Championship', 'US', now()), +(30103, 'Pengo! Steinzeit!', 'DE', now()), +(30104, 'Tatatataal!', 'NL', now()), +(30105, 'Het eilandgevoel van Schiermonnikoog', 'NL', now()), +(30106, 'The Kingdom of The Winds', 'KR', now()), +(30107, 'The Return of Iljimae', 'KR', now()), +(30108, 'Frontline Medicine', 'UK', now()), +(30109, 'Tight Bros', 'US', now()), +(30110, 'The Eric Andre Show', 'US', now()), +(30111, 'The Best of… Derrick Beckles', 'US', now()), +(30112, 'Black Dynamite', 'US', now()), +(30113, 'Ship Happens', 'US', now()), +(30114, 'Full Metal Jousting', 'US', now()), +(30115, 'United Stats of America', 'US', now()), +(30116, 'Best Ink', 'US', now()), +(30326, 'Youkai Ningen Bem', 'JP', now()), +(30118, 'Bullet in the Face', 'CA', now()), +(30119, 'Car Boss', 'US', now()), +(30120, 'Copper', 'US', now()), +(30121, 'Dark Minds', 'US', now()), +(30122, 'Diamond Divers', 'US', now()), +(30123, 'Fix My Family (US)', 'US', now()), +(30124, 'Girls', 'US', now()), +(30125, 'Hit & Miss', 'UK', now()), +(30126, 'Money (2011)', 'UK', now()), +(30127, 'Living with the Amish', 'UK', now()), +(30128, 'Азазель', 'RU', now()), +(30129, 'Megane na Kanojo', 'JP', now()), +(30130, 'Статский советник', 'RU', now()), +(30131, 'Les Misérables (2000)', 'FR', now()), +(30132, 'De man met de hamer', 'NL', now()), +(30133, 'John Beerens'' Salon Takeover', 'NL', now()), +(30134, 'Wat zou jij doen met die poen?', 'NL', now()), +(30135, 'That''s Britain!', 'UK', now()), +(30136, 'The Manor Reborn', 'UK', now()), +(30137, 'Your Money and How They Spend it', 'UK', now()), +(30138, 'D.U.I.', 'US', now()), +(30139, 'Charley Boorman''s Extreme Frontiers', 'UK', now()), +(30140, 'It''s All About Amy', 'UK', now()), +(30141, 'Jerusalem - The Making of A Holy City', 'UK', now()), +(30142, 'Postcode', 'UK', now()), +(30143, 'Super Tiny Animals', 'UK', now()), +(30144, 'Спліт', 'UA', now()), +(30145, 'Het Liegebeest', 'BE', now()), +(30146, 'Caraibi', 'IT', now()), +(30147, 'Случайные связи', 'RU', now()), +(30148, 'justyna', 'SN', now()), +(30149, 'Tenby 24/7', 'UK', now()), +(30150, 'Noise Squad', 'UK', now()), +(30151, 'The Renovation Game', 'UK', now()), +(30152, 'Snooker - UK Championships 2011', 'UK', now()), +(30153, 'Tout Le Monde En Parle (2004)', 'CA', now()), +(30154, 'Coast Guard Alaska', 'US', now()), +(30155, 'Kitchen Inventors', 'US', now()), +(30156, 'The Ambush Cook', 'US', now()), +(30157, 'Агент Национальной Безопасности', 'RU', now()), +(30158, 'Tony Robinson''s Gods and Monsters', 'UK', now()), +(30159, 'Sucker Free Awards', 'US', now()), +(30160, 'MTV O Music Awards', 'US', now()), +(30161, 'The Mortified Sessions', 'US', now()), +(30162, 'TI & Tiny: The Family Hustle', 'US', now()), +(30163, 'Hairy Bikers'' Best of British', 'UK', now()), +(30164, 'Mid Morning Matters with Alan Partridge', 'UK', now()), +(30165, 'L''état de Grace', 'FR', now()), +(30166, 'Графиня де Монсоро', 'RU', now()), +(30167, 'Battle of the Nutcrackers', 'US', now()), +(30168, 'Sky World News Tonight', 'UK', now()), +(30169, 'BBC News After Noon', 'UK', now()), +(30170, 'The Great Treehouse Challenge', 'UK', now()), +(30171, 'My Child''s Not Perfect', 'UK', now()), +(30172, 'Perez Hilton Superfan', 'UK', now()), +(30173, 'Without You', 'UK', now()), +(30174, 'The Nations Favourite Bee Gees Song', 'UK', now()), +(30176, 'Пятницкий', 'RU', now()), +(30177, 'The Great British Property Scandal', 'UK', now()), +(30178, 'Stuntbusters', 'US', now()), +(30179, 'Poppy Cat', 'US', now()), +(30180, 'Rewind with Matt Miller', 'US', now()), +(30181, 'The Next List with Dr. Sanjay Gupta', 'US', now()), +(30182, 'AFI Master Class', 'US', now()), +(30183, 'Pumped!', 'US', now()), +(30184, 'Show Me What You''re Made Of', 'UK', now()), +(30185, 'Kirstie''s Handmade Christmas', 'UK', now()), +(30186, 'A Night With Beyoncé', 'UK', now()), +(30187, 'Shiroi Haru', 'JP', now()), +(30188, 'Capital Scandal', 'KR', now()), +(30189, 'Taxi (2011)', 'NO', now()), +(30190, 'La nouvelle Maud', 'FR', now()), +(30191, 'Proefkonijnen', 'NL', now()), +(30193, 'Desperate Scousewives', 'UK', now()), +(30194, 'Get Fresh with Al Brown', 'NZ', now()), +(30195, 'Lady Hoggers', 'US', now()), +(30196, 'The Vue Film Show', 'UK', now()), +(30197, 'Beverly''s Full House', 'US', now()), +(30198, 'Don''t Be Tardy for the Wedding', 'US', now()), +(30199, 'Southwest Airlines Project', 'US', now()), +(33359, 'Ainsi soient-ils', 'FR', now()), +(30201, 'The Big Bread Experiment', 'UK', now()), +(30202, 'Любовь - не то, что кажется', 'RU', now()), +(30203, 'Freak Encounters', 'CA', now()), +(30204, 'Weekends with Luis', 'US', now()), +(30205, 'Geek Love', 'US', now()), +(30206, 'Bu Liang Xiao Hua', 'TW', now()), +(30207, 'Прокурорская проверка', 'RU', now()), +(30208, 'Guilty Akuma to Keiyakushita Onna', 'JP', now()), +(30209, 'Scent of a Woman', 'KR', now()), +(30210, 'Superfans', 'BE', now()), +(30211, 'Shakespeares skjulte koder - Sweet Swan of Avon', 'NO', now()), +(30212, 'Pride Fighting Championships', 'JP', now()), +(30213, 'The Big Quiz', 'UK', now()), +(30214, 'Text Santa', 'UK', now()), +(30215, 'This is Justin Bieber', 'UK', now()), +(30216, 'Magna Aura', 'DE', now()), +(30217, 'El Clon', 'BR', now()), +(30218, 'Rock and Roll Hall of Fame Concert', 'US', now()), +(30219, 'Sam and Friends', 'US', now()), +(30220, 'Puppetman', 'US', now()), +(30221, 'Chris and Wes', 'UK', now()), +(30222, 'Jamie''s Christmas with Bells On', 'UK', now()), +(30223, 'The Real Thumbelina', 'UK', now()), +(30224, 'Moordverhalen', 'NL', now()), +(30225, 'Громовы', 'RU', now()), +(30226, 'Смех Без Правил', 'RU', now()), +(30227, 'Гуманоиды в Королёве', 'RU', now()), +(30228, 'Спец', 'RU', now()), +(30229, 'De Bachlor', 'BE', now()), +(30230, 'UFO Robot Grendaizer', 'JP', now()), +(30231, 'Dartacan y los tres mosqueperros', 'ES', now()), +(30232, 'Mary Mary', 'US', now()), +(30233, 'Mama Drama', 'US', now()), +(30234, 'Great Expectations (2011)', 'UK', now()), +(30235, 'Young Herriot', 'UK', now()), +(30236, 'The Royal Bodyguard', 'UK', now()), +(30237, 'Lapland', 'UK', now()), +(30238, 'CMA Country Christmas', 'US', now()), +(30239, 'Invasion of the Christmas Lights', 'US', now()), +(30240, 'Candy Queen', 'US', now()), +(30241, 'The Black Arrow', 'UK', now()), +(30242, 'Студенты', 'RU', now()), +(30243, 'Comedy Баттл (Турнир)', 'RU', now()), +(30244, 'Мясорубка', 'RU', now()), +(30245, 'Danger 5', 'AU', now()), +(30246, 'В цепких лапах', 'RU', now()), +(30247, 'The Food Truck', 'NZ', now()), +(30248, 'Прынц из Шрэка', 'RU', now()), +(30249, 'Агенство НЛС', 'RU', now()), +(30250, 'Fast Freddie, the Widow and Me', 'UK', now()), +(30251, 'That was 2011: The ITV News Review of the Year', 'UK', now()), +(30252, 'Битва За Респект', 'RU', now()), +(30253, 'Гаффи Гаф Шоу', 'RU', now()), +(30254, 'Алиби на двоих', 'UA', now()), +(30255, 'Kronprinsesse Mette-Marit', 'NO', now()), +(30256, 'Домашен арест', 'BG', now()), +(30257, 'Home for the Holidays', 'UK', now()), +(30258, 'Het snoer om', 'NL', now()), +(30259, 'Michael Bublé: Home for Christmas', 'UK', now()), +(30260, 'O''Hanlon Helden', 'NL', now()), +(30261, 'Just Henry', 'UK', now()), +(30262, 'Westlife: For The Last Time', 'UK', now()), +(30263, 'Краткий курс счастливой жизни', 'RU', now()), +(30264, 'Етажна собственост', 'BG', now()), +(30265, 'Я лечу', 'RU', now()), +(30266, 'Global Indian Music Awards (GiMA)', 'IN', now()), +(30267, 'Ita Awards', 'IN', now()), +(30268, 'Проект КОЗА', 'LV', now()), +(30269, 'Catherine Tate: Laughing at the Noughties', 'UK', now()), +(30270, 'Paul Rosenmöller en het populisme in Europa', 'NL', now()), +(30271, 'Vrijdag op maandag', 'NL', now()), +(30272, 'Duivelse Dilemma''s', 'NL', now()), +(30273, '¡Rob!', 'US', now()), +(30274, 'Гостья из будущего', 'SU', now()), +(30275, 'Kabaretowa Noc Listopadowa', 'PL', now()), +(30276, 'Гибель империи', 'RU', now()), +(30277, 'Celebrity Homes', 'US', now()), +(30278, 'Деревня дураков', 'RU', now()), +(30279, 'The Butlins Story', 'UK', now()), +(30280, 'Travel with Wayne & Get Better Pictures', 'UK', now()), +(30281, 'Fristet', 'NO', now()), +(30282, 'Red vs. Blue', 'US', now()), +(30283, 'Design with the Other 90%', 'US', now()), +(30284, 'NB80s', 'US', now()), +(30285, '30 Matches in 30 Days', 'US', now()), +(30286, 'Fields of Valor: The Civil War', 'US', now()), +(30287, 'Inside the NFR', 'US', now()), +(30288, 'The Young Turks with Cenk Uygur', 'US', now()), +(30289, 'Mussolini in Color', 'US', now()), +(30290, 'Braf', 'GR', now()), +(30291, 'Top 40 of 2011', 'US', now()), +(30292, 'Jul i Skomakergata', 'NO', now()), +(30293, 'The Great Big American Auction', 'US', now()), +(30294, 'Unsupervised', 'US', now()), +(30295, 'SEC Championship Game', 'US', now()), +(30296, 'The Amazing Race Norge', 'NO', now()), +(30297, 'Paddy’s Show and Telly', 'UK', now()), +(30298, 'A Royal Year To Remember', 'UK', now()), +(30299, 'Jon Snow''s 2011', 'UK', now()), +(30300, 'Insides Out', 'UK', now()), +(30301, 'Clever Creatures', 'UK', now()), +(30302, 'Unubore Deka', 'JP', now()), +(30303, 'Rags to Riches Holiday', 'UK', now()), +(30304, 'Kadonneet', 'FI', now()), +(30305, 'Aim High', 'US', now()), +(30306, 'Cats'' Eyes', 'UK', now()), +(30307, 'The Tierneys', 'US', now()), +(30308, 'ACC Championship Game', 'US', now()), +(30309, 'Ray Donovan', 'US', now()), +(30310, 'Молодожены', 'RU', now()), +(30311, 'Come Date with Me', 'UK', now()), +(30312, '#tweets of the year', 'UK', now()), +(30313, 'Sara og Selma', 'NO', now()), +(30314, 'Michiko e Hatchin', 'JP', now()), +(30315, 'Blindpassasjer', 'NO', now()), +(30316, 'Ouran High School Host Club TV', 'JP', now()), +(30317, 'Nissene over skog og hei', 'NO', now()), +(30318, 'Earthflight', 'UK', now()), +(30319, 'Three Men Go to New England', 'UK', now()), +(30320, 'Sunday Night Fever', 'NL', now()), +(30321, 'P.s. tot volgend jaar', 'NL', now()), +(30322, 'MAC Championship Game', 'US', now()), +(30323, 'Ben-To', 'JP', now()), +(30324, 'Valley of the Dolls (1994)', 'US', now()), +(30325, 'The Family (2011)', 'AU', now()), +(31861, 'Evil I', 'US', now()), +(30328, 'Click (UK)', 'UK', now()), +(30329, 'Secrets of Archaeology', 'US', now()), +(30330, 'Obese: A Year to Save My Life', 'UK', now()), +(30331, 'Conference USA Football Championship Game', 'US', now()), +(30332, 'BCS National Championship Game', 'US', now()), +(30333, 'Big 12 Championship Game', 'US', now()), +(30334, 'The Heisman Trophy Presentation Ceremony', 'US', now()), +(30335, 'The Walking Dead In French', 'US', now()), +(30336, 'Nederland van boven', 'NL', now()), +(30337, 'De weg naar Santiago', 'NL', now()), +(30338, 'Herman zoekt kerststerren', 'NL', now()), +(30339, 'Premier Gezocht!', 'NL', now()), +(30340, 'Man over woord', 'BE', now()), +(30341, 'Есенин', 'RU', now()), +(30342, 'Dragon Age - Redemption', 'US', now()), +(30343, 'Hunder i Arbeid', 'NO', now()), +(30344, 'Star Machine', 'BG', now()), +(30345, 'Deals From The Dark Side', 'CA', now()), +(30346, 'Товарищи полицейские (Криминальная поиция)', 'RU', now()), +(30347, 'Relocation Relocation Australia', 'AU', now()), +(30348, 'Black Mirror', 'UK', now()), +(30349, 'Young Turks', 'US', now()), +(30350, 'Red Sonja (BE)', 'BE', now()), +(30351, 'Party at Tiffany''s', 'US', now()), +(30352, 'Extreme (2010)', 'US', now()), +(30353, 'The Bleak Old Shop of Stuff', 'UK', now()), +(30354, 'Noel Fielding''s Luxury Comedy', 'UK', now()), +(30355, 'Transformers: Rescue Bots', 'US', now()), +(30356, 'Big Fat Quiz of the Year', 'UK', now()), +(30357, 'Arctic Air', 'CA', now()), +(32844, 'Killing Lincoln', 'US', now()), +(30359, 'Legends'' House', 'US', now()), +(30360, 'Goudvis', 'BE', now()), +(30361, 'Elements (BE)', 'BE', now()), +(30362, 'America Caught on Camera', 'US', now()), +(30363, 'Baggage Battles', 'US', now()), +(30364, 'Hotel Impossible', 'US', now()), +(30365, 'Airport 24/7: Miami', 'US', now()), +(30366, 'Park Secrets', 'US', now()), +(30367, 'Trip Flip', 'US', now()), +(30368, 'Vegas Stripped', 'US', now()), +(30369, 'Unpacked', 'US', now()), +(30370, 'Slice of Brooklyn', 'US', now()), +(30371, 'Vacation Hunters', 'US', now()), +(30372, 'Dama til', 'NO', now()), +(30373, 'The Bank Job', 'UK', now()), +(30374, 'The Fat Fighters', 'UK', now()), +(30375, 'The Nearlyweds', 'UK', now()), +(30376, 'Safari Vet School', 'UK', now()), +(30377, 'Eternal Law', 'UK', now()), +(30378, 'Endeavour', 'UK', now()), +(30379, 'Stella (UK)', 'UK', now()), +(30380, 'Hacks', 'UK', now()), +(30381, 'Gordon Ramsay''s Ultimate Christmas', 'US', now()), +(30382, 'In Gayle We Trust', 'US', now()), +(30383, 'Hollywood at Home', 'US', now()), +(30384, 'Cornwall with Caroline Quentin', 'UK', now()), +(30385, 'The Channel 4 Mash Up', 'UK', now()), +(30386, 'Celebrity Wedding Planner', 'UK', now()), +(30387, 'How to Cook Like Heston', 'UK', now()), +(30388, 'The Fabulous Baker Brothers', 'UK', now()), +(30389, 'The One Lenny Henry', 'UK', now()), +(30390, 'A Question of Taste', 'UK', now()), +(30391, 'King George and Queen Mary: The Royals Who Rescued The Monarchy', 'UK', now()), +(30392, 'Sicily Unpacked', 'UK', now()), +(30393, 'World''s Toughest Trucker', 'UK', now()), +(30394, 'The Story of Musicals', 'UK', now()), +(30395, 'See it, Saw it', 'UK', now()), +(30396, 'Recruits: Paramedics', 'AU', now()), +(30397, 'Смысл игры', 'RU', now()), +(30398, 'Partička', 'CZ', now()), +(30399, 'Partička (SK)', 'SK', now()), +(30400, 'E! Investigates', 'US', now()), +(30401, 'She''s still Not our Sister', 'US', now()), +(30402, 'Recorder to Randoseru', 'JP', now()), +(30403, 'Poyopoyo Kansatsu Nikki', 'JP', now()), +(30404, 'Danshi Koukousei no Nichijou', 'JP', now()), +(30405, 'Black Rock Shooter', 'JP', now()), +(30406, 'Moretsu Uchuu Kaizoku', 'JP', now()), +(30407, 'Inu x Boku SS', 'JP', now()), +(30408, 'Papa no Iukoto o Kikinasai!', 'JP', now()), +(30409, 'Brave 10', 'JP', now()), +(30410, 'Rinne no Lagrange', 'JP', now()), +(30411, 'The L.A. Complex', 'CA', now()), +(30412, 'Gadget Geeks', 'UK', now()), +(30413, 'The Mystery of Edwin Drood', 'UK', now()), +(30414, 'Putin, Russia and the West', 'UK', now()), +(30415, 'Ministry of Curious Stuff', 'UK', now()), +(30416, 'Senhime Zesshou Symphogear', 'JP', now()), +(30417, 'Another', 'JP', now()), +(30418, 'Kill Me Baby', 'JP', now()), +(30419, 'High School DxD', 'JP', now()), +(30420, 'Ano Natsu de Matteru', 'JP', now()), +(30421, 'Gokujo', 'JP', now()), +(30422, 'Little Charley Bear', 'UK', now()), +(30423, 'Bigger Than.....', 'UK', now()), +(30424, 'Oprah''s Next Chapter', 'US', now()), +(30425, 'Rachael vs. Guy Celebrity Cook Off', 'US', now()), +(30426, 'American Weed', 'US', now()), +(30427, 'First Week In', 'US', now()), +(30428, 'Great Barrier Reef', 'UK', now()), +(30430, 'The Exit List', 'UK', now()), +(30431, 'When Paddy Met Sally', 'UK', now()), +(30432, 'Benidorm ER', 'UK', now()), +(30433, 'Kym Marsh: Teen Mums and Me', 'UK', now()), +(30434, 'Professor Brian Cox: A Night with the Stars', 'UK', now()), +(30435, 'Den som dræber', 'DK', now()), +(30436, 'How Sex Works', 'UK', now()), +(30437, 'The Talent Show Story', 'UK', now()), +(30438, 'Take Me Out: The Gossip', 'UK', now()), +(30439, 'The One Jasper Carrott', 'UK', now()), +(30440, 'Film 2012 with Claudia Winkleman', 'UK', now()), +(30441, 'Cold Comfort Farm', 'UK', now()), +(30442, 'America''s Wildest Roads', 'US', now()), +(30443, 'Dawn of the Nazis', 'US', now()), +(30444, 'Dare Dorm', 'US', now()), +(30445, 'Hollywood Icons and Innovators', 'US', now()), +(30446, 'Mystery Diners', 'US', now()), +(30447, 'Bama Glama', 'US', now()), +(30448, 'Funny or Die''s Billy on the Street', 'US', now()), +(30449, 'The Americans (2013)', 'US', now()), +(30450, 'Журов', 'RU', now()), +(30451, 'Super Systems', 'US', now()), +(30452, 'Что сказал покойник', 'RU', now()), +(30453, 'Lidia Celebrates America', 'US', now()), +(30454, 'Food Attack', 'US', now()), +(30455, 'Tough Love Garage', 'US', now()), +(31169, 'Loiter Squad', 'US', now()), +(30457, 'Опыт рока: год за годом', 'RU', now()), +(30458, 'The Great Sport Relief Bake Off', 'UK', now()), +(30459, 'The Career Crashers', 'UK', now()), +(30460, 'Bizarre Crime', 'UK', now()), +(30461, 'The One Griff Rhys Jones', 'UK', now()), +(30462, 'Masters Snooker 2012', 'UK', now()), +(30463, 'The Hungry Sailors', 'UK', now()), +(30464, 'De Patat', 'BE', now()), +(30465, 'Take That: Progress Live', 'UK', now()), +(30466, 'Илья Maddyson', 'RU', now()), +(30467, 'Мундольф', 'RU', now()), +(30468, 'Ultimate Journeys', 'UK', now()), +(30469, 'Tamar & Vince', 'US', now()), +(30470, 'Travel Channel Uncut', 'US', now()), +(30471, 'Спецназ', 'RU', now()), +(30472, 'The Possessed', 'UK', now()), +(30473, 'Pere Goriot', 'UK', now()), +(30474, 'Class Dismissed', 'UK', now()), +(30475, 'Cinderella (UK)', 'UK', now()), +(30476, 'Love Hate & Propaganda', 'CA', now()), +(30477, 'Bron/Broen', 'SE', now()), +(30478, 'The Gambler', 'UK', now()), +(30479, 'Resurrection', 'UK', now()), +(30480, 'Live Aid', 'UK', now()), +(30481, 'Жизнь и приключения Миши Япончика', 'RU', now()), +(30482, 'Old Jews Telling Jokes', 'UK', now()), +(30483, 'Bright Falls', 'US', now()), +(30484, 'Wreck Chasers', 'US', now()), +(30485, 'Polseres Vermelles', 'ES', now()), +(30486, 'Malviviendo', 'ES', now()), +(30487, 'The Crusades', 'UK', now()), +(30488, 'Venice The Series', 'US', now()), +(30489, 'The Bay', 'US', now()), +(30490, 'The Revolution (2012)', 'US', now()), +(30491, 'Dogs: Stray Dogs Howling in the Dark', 'JP', now()), +(30492, 'Shipping Wars', 'US', now()), +(30493, 'Beethoven virus', 'KR', now()), +(30494, 'Cousin Bette', 'UK', now()), +(30495, 'Адвокатессы', 'RU', now()), +(30496, 'Kautokeino-opprøret - TV-serien', 'NO', now()), +(30497, 'Ulvenatten', 'NO', now()), +(30498, 'Tim and Eric The Podcast', 'US', now()), +(30499, 'Micawber', 'UK', now()), +(30500, 'The Quest', 'UK', now()), +(30501, 'Ghostboat', 'UK', now()), +(30502, 'Star Hill Ponies', 'UK', now()), +(30503, 'The Greatest Carry on Films', 'UK', now()), +(30504, 'Coronation Street After Hours', 'UK', now()), +(30505, 'Alaska: The Last Frontier', 'US', now()), +(30506, 'La Regenta', 'ES', now()), +(30507, 'La Galère', 'CA', now()), +(30508, 'Not My Mama''s Meals', 'US', now()), +(30509, 'Fatal Encounters', 'US', now()), +(30510, 'Tempest', 'JP', now()), +(30511, 'Унесённые призраками', 'JP', now()), +(30512, 'Rani', 'FR', now()), +(30513, 'Hardcore TV', 'US', now()), +(30514, 'Reinoryokusha Odagiri Kyoko no Uso', 'JP', now()), +(30515, 'Strictly Sexual: The Series', 'US', now()), +(30516, 'American Stuffers', 'US', now()), +(30517, 'Gator Boys', 'US', now()), +(30518, 'Cajun Pawn Stars', 'US', now()), +(30519, 'Caged', 'US', now()), +(30520, 'Come Dine With Me South Africa', 'ZA', now()), +(30521, 'Черные волки', 'RU', now()), +(30522, 'Amazing Eats', 'US', now()), +(30523, 'Snake Man of Appalachia', 'US', now()), +(30524, 'Blade Anime', 'US', now()), +(30525, 'Live Like an Animal', 'US', now()), +(30526, 'Black Rock Shooter OVA', 'JP', now()), +(30527, 'Ugunsgrēks', 'LV', now()), +(30528, 'Ink Master', 'US', now()), +(30529, 'Ragin'' Cajuns', 'US', now()), +(30530, 'Symon''s Suppers', 'US', now()), +(30531, 'On Freddie Roach', 'US', now()), +(30532, 'Swanderosa', 'US', now()), +(30533, 'World Wide Web', 'US', now()), +(30534, 'My Big Redneck Vacation', 'US', now()), +(30535, 'Scorned: Love Kills', 'US', now()), +(30536, 'Bear''s Wild Weekends', 'UK', now()), +(30537, 'Fat Chef', 'US', now()), +(30538, 'Inside Comedy', 'US', now()), +(30539, 'Bering Sea Gold', 'US', now()), +(30540, 'UFC on Fuel TV', 'US', now()), +(30541, 'UFC on FX', 'US', now()), +(30542, 'Pro Bowl', 'US', now()), +(30543, 'Key & Peele', 'US', now()), +(30544, 'Doomsday Preppers', 'US', now()), +(30545, 'Офицеры', 'RU', now()), +(30546, 'In Tahrir Square: 18 Days of Egypt’s Unfinished Revolution', 'US', now()), +(30547, 'Canada’s Greatest Know-It-All', 'CA', now()), +(30548, 'The Amandas', 'US', now()), +(30549, 'Animal House Outdoors', 'US', now()), +(30550, 'NRA''s Guns and Gold', 'US', now()), +(30551, 'Shell Shocked! with Patrick Flanigan', 'US', now()), +(30552, 'Boxing''s Best of 2011', 'US', now()), +(30553, 'NHL Tonight', 'US', now()), +(30554, 'Dropped: Project Alaska', 'US', now()), +(30555, 'Autoweek''s Vinsetta Garage', 'US', now()), +(30556, 'One of a Kind', 'US', now()), +(30557, 'UFC Tonight', 'US', now()), +(30558, 'Price This Place', 'US', now()), +(30559, 'Shooting Stars (US)', 'US', now()), +(30560, 'Saw Dogs', 'US', now()), +(30561, 'Juunen Saki mo Kimi ni Koishite', 'JP', now()), +(30562, 'Wild Life', 'JP', now()), +(30563, 'Around 40', 'JP', now()), +(30564, 'Anno 1790', 'SE', now()), +(30565, 'Honjitsu mo Hare. Ijo Nashi', 'JP', now()), +(30566, 'Arakawa Under the Bridge (2011)', 'JP', now()), +(30567, 'Prayer Beads', 'JP', now()), +(30568, 'Chouchou-san', 'JP', now()), +(30569, 'Не плачь по мне, Аргентина!', 'RU', now()), +(30570, 'Hot Shots (2011)', 'US', now()), +(30571, 'Movie Kingdom', 'US', now()), +(30572, 'Against the Tide', 'US', now()), +(30573, 'Combat Cash', 'US', now()), +(30574, 'Sports Dads', 'US', now()), +(30575, 'Have You Heard From Johannesburg?', 'US', now()), +(30576, 'Mobster Confessions', 'US', now()), +(30577, 'Treasure Island', 'UK', now()), +(30578, '15 Kids and Counting', 'UK', now()), +(30579, 'Call The Midwife', 'UK', now()), +(30580, 'Stargazing Live ''Back to Earth''', 'UK', now()), +(30581, 'Hugh''s Three Hungry Boys', 'UK', now()), +(30582, 'Grimmsberg', 'DE', now()), +(30584, 'True Stories (UK)', 'UK', now()), +(30585, 'Coming Out Diaries', 'UK', now()), +(30586, 'Dragon Ball Z (JP)', 'JP', now()), +(30587, 'Rated A For Adult', 'US', now()), +(30588, 'Hunt For Big Fish', 'US', now()), +(30589, 'Nature''s Weirdest Events', 'UK', now()), +(30590, 'Funny As Hell', 'CA', now()), +(30591, 'The Big Time', 'US', now()), +(30592, 'Rehab Addict', 'US', now()), +(30593, 'Mein Leben & Ich', 'DE', now()), +(30594, 'Abschnitt 40', 'DE', now()), +(30595, 'Crime Scene Forensics', 'UK', now()), +(30596, 'Pole Dancing Diaries', 'UK', now()), +(30597, 'Ali', 'UK', now()), +(30598, 'Birdsong', 'UK', now()), +(30599, 'Дело гастронома №1', 'RU', now()), +(30600, 'Bomb Girls', 'CA', now()), +(30601, 'Mit Herz und Handschellen', 'DE', now()), +(30602, 'Der Tatortreiniger', 'DE', now()), +(30603, 'Once Upon A Time In Cabramatta', 'AU', now()), +(30604, 'Comic Book Men', 'US', now()), +(30605, 'Redd menig Osen', 'NO', now()), +(30606, 'New Prince of Tennis', 'JP', now()), +(30607, 'Puzzle (2007)', 'JP', now()), +(30608, 'Охотники за бриллиантами', 'RU', now()), +(30609, 'Daleko od szosy', 'PL', now()), +(30610, 'Look', 'US', now()), +(30611, 'Deep Love', 'JP', now()), +(30612, 'The Great Escape', 'US', now()), +(30613, 'Men at Work', 'US', now()), +(30614, 'Last Resort', 'US', now()), +(30615, 'Eine wie keine', 'DE', now()), +(30616, 'Büro, Büro', 'DE', now()), +(30617, 'Saving Hope', 'CA', now()), +(30618, 'The Adventures of Rupert Bear', 'UK', now()), +(30619, 'Australia’s Got Amazing Talent!', 'AU', now()), +(30620, 'Bargain Hunt (AU)', 'AU', now()), +(30621, 'Biblical Mysteries Explained', 'US', now()), +(30622, 'The NFL Honors', 'US', now()), +(30623, 'Area no Kishi', 'JP', now()), +(30624, 'RH Plus', 'JP', now()), +(30625, 'Tokyo Ghost Trip', 'JP', now()), +(30626, 'Lilyhammer', 'NO', now()), +(30627, 'Escépticos', 'ES', now()), +(30628, 'De Flandriens', 'BE', now()), +(30629, 'De Flandriens van het veld', 'BE', now()), +(30630, 'Russisch Roulette', 'DE', now()), +(30631, 'Comedy Convoy', 'NZ', now()), +(30632, 'Herzflimmern - Liebe zum Leben', 'DE', now()), +(30633, 'Fuma no Kojiro', 'JP', now()), +(30634, 'Pasta', 'KR', now()), +(30635, 'Морской патруль', 'RU', now()), +(30636, 'The 2012 Summer Olympics', 'UK', now()), +(30637, 'How to Rock', 'US', now()), +(30638, 'Wild Mississippi', 'US', now()), +(30639, 'Biggest loser Sverige', 'SE', now()), +(30640, 'Against the Wind', 'AU', now()), +(30641, 'L.A. Noir', 'US', now()), +(30642, 'Ikke gjør dette hjemme', 'NO', now()), +(30643, 'Son', 'TR', now()), +(30644, 'Illuminations: The Private Lives of Medieval Kings', 'UK', now()), +(30645, 'Shahs of Sunset', 'US', now()), +(30646, 'Love Broker', 'US', now()), +(30647, 'Julie Lescaut', 'FR', now()), +(30648, 'Mr. D', 'CA', now()), +(30649, 'Young Talent Time (2012)', 'AU', now()), +(30650, 'Redemption Inc.', 'CA', now()), +(30651, 'Cult', 'US', now()), +(30652, 'Hårdrockens Historia', 'SE', now()), +(30653, 'Les Liaisons dangereuses (The Dangerous Liaisons)', 'FR', now()), +(30654, 'Les Cordier, juge et flic', 'FR', now()), +(30655, 'Le Bleu de l''océan', 'FR', now()), +(30656, 'Gaytown', 'US', now()), +(30657, 'Les Années d''illusion', 'FR', now()), +(30658, 'In Between Men', 'US', now()), +(30659, 'Quiz Magic Academy - The Original Animation', 'JP', now()), +(30660, 'Quiz Magic Academy - The Original Animation 2', 'JP', now()), +(30661, 'Total Blackout (US)', 'US', now()), +(30662, 'Sunday Politics', 'UK', now()), +(30663, 'Inside Men', 'UK', now()), +(30664, 'Prisoners'' Wives', 'UK', now()), +(30665, 'Alex Polizzi - The Fixer', 'UK', now()), +(30666, 'Protecting Our Children', 'UK', now()), +(30667, 'Strictly Soulmates', 'UK', now()), +(30668, 'Conspiracy 365', 'AU', now()), +(30669, 'Tricky Business (AU)', 'AU', now()), +(30670, 'Musée Eden', 'CA', now()), +(30671, 'Deadly Affairs', 'US', now()), +(30672, 'The Loop (AU)', 'AU', now()), +(30673, 'Party Paramedics', 'UK', now()), +(30674, 'Miss Adventure', 'UK', now()), +(30675, 'The Body In Question', 'CA', now()), +(30676, 'The Grammar School: A Secret History', 'UK', now()), +(30677, 'The Straits', 'AU', now()), +(30678, 'Hardcore Profits', 'UK', now()), +(30679, 'Ondes de choc', 'FR', now()), +(30680, 'Reksio', 'PL', now()), +(30681, 'Leave It To Bryan', 'CA', now()), +(30682, 'The Mysteries of Alfred Hedgehog', 'CA', now()), +(30683, 'Paranormal Trauma', 'CA', now()), +(30684, 'On Death Row', 'US', now()), +(30685, 'All Star Dealers', 'US', now()), +(30686, 'Fred: The Show', 'US', now()), +(30687, 'Marvin, Marvin', 'US', now()), +(30688, 'Anatomy for Beginners', 'UK', now()), +(30689, 'Home Strange Home', 'US', now()), +(30690, 'Londons Burning', 'UK', now()), +(30691, 'lijn 32', 'NL', now()), +(30692, 'Deadman', 'US', now()), +(30693, 'Thermae Romae', 'JP', now()), +(30694, '100 Greatest Women in Music', 'US', now()), +(30695, 'Brille', 'NO', now()), +(30696, 'Inside West Coast Customs', 'US', now()), +(30697, 'Romania''s next top model', 'RO', now()), +(30698, 'Burlacul', 'RO', now()), +(30699, 'Burlacita', 'RO', now()), +(30700, 'Young Baker Of The Year', 'UK', now()), +(30701, 'Raymond Blanc: The Hungry Frenchman', 'UK', now()), +(30702, 'Dance Moms: Miami', 'US', now()), +(30703, 'Royal Marines: Mission Afghanistan', 'UK', now()), +(30704, 'Bouncers', 'UK', now()), +(30705, 'An Island Parish', 'UK', now()), +(30706, 'Jonathan Meades on France', 'UK', now()), +(30707, 'The Bronson Pinchot Project', 'US', now()), +(30708, 'Rewind', 'US', now()), +(30709, 'Find Our Missing', 'US', now()), +(30710, 'Inside Nature''s Giants (US)', 'US', now()), +(30711, 'Iron Chef America Countdown', 'US', now()), +(30712, 'Får vi följa med?', 'SE', now()), +(30713, 'Дневник доктора Зайцевой', 'RU', now()), +(30714, 'Insider (NO)', 'NO', now()), +(30715, 'Arrow', 'US', now()), +(30716, 'The Carrie Diaries', 'US', now()), +(30717, 'Beauty and the Beast (2012)', 'US', now()), +(30718, 'The Diamond Queen', 'UK', now()), +(30719, 'Death Unexplained', 'UK', now()), +(30720, 'Kevin Bridges: What''s The Story?', 'UK', now()), +(30721, 'Winter Road Rescue', 'UK', now()), +(30723, 'Ashley Banjo''s Secret Street Crew', 'UK', now()), +(30724, 'Defiance', 'US', now()), +(30725, 'Герой нашего времени', 'RU', now()), +(30726, 'Trooper', 'US', now()), +(30727, 'Holiday Heaven on Earth', 'UK', now()), +(30728, 'Tunnelbanan', 'SE', now()), +(30729, 'Een laatste groet', 'BE', now()), +(30730, 'Наркоман Павлик', 'RU', now()), +(30731, 'Äkta Människor', 'SE', now()), +(32223, 'I Killed My BFF', 'US', now()), +(30733, 'The Vault', 'UK', now()), +(30734, 'NBC Sports Network Fight Night', 'US', now()), +(30735, 'America''s Book of Secrets', 'US', now()), +(30736, 'Baseball IQ', 'US', now()), +(30737, 'Beyond Belief (US)', 'US', now()), +(30738, 'On the Range', 'US', now()), +(30739, 'Inside the Design', 'US', now()), +(30740, 'Mob Wives: The Sit Down', 'US', now()), +(30741, 'Extreme RVs', 'US', now()), +(30742, 'Beast Tracker', 'US', now()), +(30743, 'Killer Trials: Judgment Day', 'US', now()), +(30744, '666 Park Avenue', 'US', now()), +(30745, 'Cat Street', 'JP', now()), +(30746, 'Канобувости', 'RU', now()), +(30747, 'Тату в Поднебесной', 'RU', now()), +(30748, 'Chicago Fire', 'US', now()), +(30749, 'Toledo: Cruce de Destinos', 'ES', now()), +(30750, 'Elementary', 'US', now()), +(30751, 'Туристы', 'RU', now()), +(30752, 'My Duck''s Vision', 'RU', now()), +(30753, 'Golden Boy', 'US', now()), +(30754, 'Downwardly Mobile (2012)', 'US', now()), +(30755, 'Friday Night Dinner (2012)', 'US', now()), +(30756, 'Go On', 'US', now()), +(30757, 'Daddy''s Girl', 'US', now()), +(30758, 'Animal Practice', 'US', now()), +(30759, 'Next Caller', 'US', now()), +(30760, 'County', 'US', now()), +(30761, 'Gok''s Teens: The Naked Truth', 'UK', now()), +(30762, 'Survivors: Nature''s Indestructible Creatures', 'UK', now()), +(30763, 'Kir Royal', 'DE', now()), +(30764, 'Видеомания Weekly', 'RU', now()), +(30765, 'First Cut', 'US', now()), +(30766, 'Britain''s Heritage Heroes', 'UK', now()), +(30767, 'Emergency Abroad', 'UK', now()), +(30768, 'Super Smart Animals', 'UK', now()), +(30769, 'Bees, Butterflies and Blooms', 'UK', now()), +(30770, 'Quean', 'US', now()), +(30771, 'Applebaum', 'US', now()), +(30772, 'Prodigy Bully', 'US', now()), +(30773, 'Super Fun Night', 'US', now()), +(30774, 'Widow Detective', 'US', now()), +(30775, 'White Man Van', 'US', now()), +(30776, 'The Moment', 'US', now()), +(30777, 'Drop 5 lbs with Good Housekeeping', 'US', now()), +(30778, 'Fault Lines', 'QA', now()), +(30779, 'Moone Boy', 'UK', now()), +(30780, 'Парфёнов - Интервью', 'RU', now()), +(30781, 'Shikaotoko Aoniyoshi', 'JP', now()), +(30782, 'Tumbling', 'JP', now()), +(30783, 'Rurouni Kenshin: Tsuiokuhen', 'JP', now()), +(30784, 'Gaki no tsukai ya arahende!!', 'JP', now()), +(30785, 'Ninkyo Helper', 'JP', now()), +(30786, 'Mi gorda bella', 'VE', now()), +(30787, 'Świat według Kiepskich', 'PL', now()), +(30788, 'Quo Vadis?', 'IT', now()), +(30789, 'Continuum', 'CA', now()), +(30790, 'The Voice Kids', 'NL', now()), +(30791, 'Yukan Club', 'JP', now()), +(30792, 'Yamato Nadeshiko Shichi Henge (2010)', 'JP', now()), +(30793, 'ROOKIES (JP)', 'JP', now()), +(30794, 'RESCUE (JP)', 'JP', now()), +(30795, 'Rondo', 'JP', now()), +(30796, 'Prisoner', 'JP', now()), +(30797, 'Osen', 'JP', now()), +(30798, 'True Justice', 'US', now()), +(30799, 'Kontoret', 'SE', now()), +(30800, 'Teppan Shoujo Akane!!', 'JP', now()), +(30801, 'Mop Girl', 'JP', now()), +(30802, 'Orthros no Inu', 'JP', now()), +(30803, 'Koshonin', 'JP', now()), +(30804, 'Hachi-One Diver', 'JP', now()), +(30805, 'Kiina', 'JP', now()), +(30806, 'Joker Yurusarezaru Sosakan', 'JP', now()), +(30807, 'Americana (2012)', 'US', now()), +(30808, 'Nashville (2012)', 'US', now()), +(30809, 'Friend Me', 'US', now()), +(30810, 'Partners (2012)', 'US', now()), +(30811, 'How to Live With Your Parents', 'US', now()), +(30812, 'Only Fools & Horses', 'US', now()), +(30813, 'My 600-lb Life', 'US', now()), +(30814, 'Однажды в Одессе', 'RU', now()), +(30815, 'Full Bounty', 'US', now()), +(30816, 'Tattoo Nightmares', 'US', now()), +(30817, 'Rat Bastards', 'US', now()), +(30818, 'Political Animals', 'US', now()), +(30819, 'Das perfekte Model', 'DE', now()), +(30820, 'Horrible Histories with Stephen Fry', 'UK', now()), +(30821, 'Schnell ermittelt', 'AT', now()), +(30822, 'Preacher Wives', 'US', now()), +(30823, 'Banshee', 'US', now()), +(30824, 'plane sexy', 'US', now()), +(30825, 'Daddy Daycare', 'UK', now()), +(30826, 'Devious Maids', 'US', now()), +(30827, 'Gotham', 'US', now()), +(30828, 'Zero Hour (2013)', 'US', now()), +(31781, 'Dangerous Flights', 'CA', now()), +(30830, 'American Judy', 'US', now()), +(30831, 'Scruples (2012)', 'US', now()), +(30832, 'Shelter', 'US', now()), +(30833, 'Danny Hollywood', 'US', now()), +(30834, 'The Selection', 'US', now()), +(30835, 'Bad Girls (2012)', 'US', now()), +(30836, 'The Mad Bad Ad Show', 'UK', now()), +(30837, 'Vice Versa', 'UK', now()), +(30838, 'Szpital na perypetiach', 'PL', now()), +(30839, 'Muhtesem Yüzyil', 'TR', now()), +(30840, 'Malibu Country', 'US', now()), +(30841, 'Prairie Dogs', 'US', now()), +(30842, 'Afghanistan: The Great Game With Rory Stewart', 'UK', now()), +(30843, 'The Great British Countryside', 'UK', now()), +(30844, 'Pramface', 'UK', now()), +(30845, 'Michael Feinstein''s American Songbook', 'US', now()), +(30846, 'Celebrity Beach Bowl', 'US', now()), +(30847, 'How to Grow a Planet', 'UK', now()), +(30848, 'Bomber Boys', 'UK', now()), +(30849, 'My Crazy Obsession', 'US', now()), +(30850, 'Восьмидесятые', 'RU', now()), +(30851, 'Холостяки', 'RU', now()), +(30852, 'Have Faith (2012)', 'US', now()), +(30853, 'Home of the Future', 'UK', now()), +(30854, 'Hellstrøm Inviterer', 'NO', now()), +(30855, 'Дикий', 'RU', now()), +(30856, 'Inazuma Eleven', 'JP', now()), +(30857, 'Supernatural Detective Nogami Neuro', 'JP', now()), +(30858, 'Hizzoner', 'US', now()), +(30859, 'Bokprogrammet', 'NO', now()), +(30860, 'Under The Radar Michigan', 'US', now()), +(30861, 'Undercover Boss (CA)', 'CA', now()), +(30862, 'Rebounding', 'US', now()), +(30863, 'Must Hire', 'US', now()), +(30864, 'Let it Go', 'US', now()), +(30865, 'Ascent of Money: Boom and Bust', 'UK', now()), +(30866, 'The Royal Mint', 'UK', now()), +(30867, 'Time Team - History Hunters', 'UK', now()), +(30868, 'Southie Pride', 'US', now()), +(30869, 'Casting', 'BG', now()), +(30870, 'Duck Dynasty', 'US', now()), +(30871, 'Bunheads', 'US', now()), +(30872, 'Watson & Oliver', 'UK', now()), +(30873, 'The Tube (2012)', 'UK', now()), +(30874, 'Melvyn Bragg On Class And Culture', 'UK', now()), +(30875, 'Cleverdicks', 'UK', now()), +(30876, 'Baby Daddy', 'US', now()), +(30877, 'Beverly Hills Nannies', 'US', now()), +(30878, 'The Pauly D Project', 'US', now()), +(30879, 'Swimming with Crocodiles', 'UK', now()), +(30880, 'Doorstep Crime 999', 'UK', now()), +(30881, 'Empire', 'UK', now()), +(30882, 'Mistresses (US)', 'US', now()), +(30883, 'Alphablocks', 'UK', now()), +(30884, 'This World', 'UK', now()), +(30885, 'Timothy Spall: All at Sea', 'UK', now()), +(30886, 'Numtums', 'UK', now()), +(30887, 'Descending', 'CA', now()), +(30888, 'Big Body Squad', 'UK', now()), +(30889, 'Smile Precure', 'JP', now()), +(30890, 'Hotel Hell', 'US', now()), +(34505, 'Mr & Mrs Murder', 'AU', now()), +(30892, 'Остров ненужных людей', 'RU', now()), +(30893, 'Черный Пират', 'IT', now()), +(30894, 'EX – eine romantische Komödie', 'AT', now()), +(30895, 'Undercover Boss: Abroad', 'US', now()), +(30896, 'The Ring Leader', 'US', now()), +(30897, 'Revolution (2012)', 'US', now()), +(30898, 'Make Bradford British', 'UK', now()), +(30899, 'Stacey Dooley Investigates', 'UK', now()), +(30900, 'Toy Hunter', 'US', now()), +(30901, 'Байки Митяя', 'UA', now()), +(30902, 'Oh Oh Cherso (BE)', 'BE', now()), +(30903, 'Pointless Celebrities', 'UK', now()), +(30904, 'Mudcats', 'US', now()), +(30905, 'Curious and Unusual Deaths (2012)', 'US', now()), +(30906, 'The Kandi Factory', 'US', now()), +(30907, 'Stevie TV', 'US', now()), +(33891, 'Moominland Tales: The Life of Tove Jansson', 'UK', now()), +(30909, 'Hannibal', 'US', now()), +(33394, 'Tutti Pazzi per Amore', 'IT', now()), +(30911, 'Machines of Glory', 'US', now()), +(30912, 'Our Man in...', 'UK', now()), +(30913, 'A Picture of Health', 'UK', now()), +(30914, 'The Sparticle Mystery', 'UK', now()), +(30915, 'Wild Kratts', 'US', now()), +(30916, 'I''m In A Boyband', 'UK', now()), +(30917, 'The Agenda', 'UK', now()), +(30918, '3', 'US', now()), +(30919, 'Riots And Revolutions - Nel''s Arab Journey', 'UK', now()), +(30920, 'David Walliams'' Big Swim: A Sport Relief Special', 'UK', now()), +(30921, 'Tree Fu Tom', 'UK', now()), +(30922, 'The Fisherman''s Apprentice with Monty Halls', 'UK', now()), +(30924, 'Twisted Fate', 'US', now()), +(30925, 'Rattlesnake Republic', 'US', now()), +(30926, 'Q''Viva! The Chosen', 'US', now()), +(30927, 'The Cartoon Network Hall of Game Awards', 'US', now()), +(30928, 'Million Dollar Collections', 'US', now()), +(30929, 'Person to Person (2012)', 'US', now()), +(30930, 'Party Like', 'US', now()), +(30931, 'LAFFMOBB Presents', 'US', now()), +(31008, 'Hæ Gosi', 'IS', now()), +(30933, 'Top Guns', 'US', now()), +(30934, 'Raising House', 'US', now()), +(30935, 'Bikini Barbershop', 'US', now()), +(30936, 'Shaun Micallef is Mad as Hell', 'AU', now()), +(30937, 'Outland', 'AU', now()), +(30938, 'Animentari Ketsudan', 'JP', now()), +(30939, 'Woodley', 'AU', now()), +(30940, 'Ōgon Senshi Gōrudo Raitan', 'JP', now()), +(34050, 'Pop''s 10 Most...', 'UK', now()), +(30942, 'Total Drama: Revenge of the Island', 'CA', now()), +(30943, 'On The Spot: Törzsek', 'HU', now()), +(30944, 'Doi Hanh Dong Liem Chinh', 'VN', now()), +(30945, 'Summer in Transylvania', 'UK', now()), +(30946, 'Inazuma Eleven GO', 'JP', now()), +(30947, 'Navarro', 'FR', now()), +(30948, 'Kaboul Kitchen', 'FR', now()), +(30949, 'Reguły gry', 'PL', now()), +(30950, 'Caught Red Handed', 'US', now()), +(30951, 'Mesternes Mester', 'NO', now()), +(30952, 'Postcode Lottery', 'UK', now()), +(30953, 'I''m A Solo Star', 'UK', now()), +(30954, 'Versailles', 'UK', now()), +(30955, 'Caméra Café', 'FR', now()), +(30956, 'I''m in a Girl Group!', 'UK', now()), +(30957, 'Orbit: Earth''s Extraordinary Journey', 'UK', now()), +(30958, 'Out on a Limo', 'UK', now()), +(30959, 'My Idiotic Twenties', 'US', now()), +(30960, 'Dead Boss', 'UK', now()), +(30961, 'Bad Sugar', 'UK', now()), +(30962, 'Rights Gone Wrong', 'UK', now()), +(30963, 'The Lingo Show', 'UK', now()), +(30964, 'Petrol Age', 'UK', now()), +(30965, 'The Sarah Millican Television Programme', 'UK', now()), +(30966, 'Food Inspectors', 'UK', now()), +(30967, 'Free Speech', 'UK', now()), +(30968, 'Venice 24/7', 'UK', now()), +(30969, 'She Wolves: England''s Early Queens', 'UK', now()), +(30970, 'Dexter: Early Cuts', 'US', now()), +(30971, 'Carnival Phantasm', 'JP', now()), +(30972, 'Living Loaded', 'US', now()), +(30973, 'Extreme Cheapskates', 'US', now()), +(30974, 'Playhouse Presents', 'UK', now()), +(30975, 'Xiao Ao Jiang Hu 2001', 'CN', now()), +(30976, 'Men and Legends', 'CN', now()), +(30977, 'Yong Chun', 'CN', now()), +(30978, 'The Spirit of the Sword', 'CN', now()), +(30979, 'Dirty Pair Flash', 'JP', now()), +(30980, 'Dirty Pair (OAV)', 'JP', now()), +(30981, 'Zatoichi monogatari', 'JP', now()), +(30982, 'Fight! Dragon', 'JP', now()), +(30983, '1600 Penn', 'US', now()), +(30984, 'Richard Hammond''s Crash Course', 'US', now()), +(30985, 'Planet Cake', 'AU', now()), +(30986, 'Unchained Reaction', 'US', now()), +(30987, 'Участок', 'RU', now()), +(30988, 'A Touch of Cloth', 'UK', now()), +(30989, 'Монтекристо', 'RU', now()), +(30990, 'И всё-таки я люблю…', 'RU', now()), +(30991, 'Battleground', 'US', now()), +(30992, '30 grader i februari', 'SE', now()), +(30993, 'Livet på Laerkevej', 'DK', now()), +(30994, 'Landinn', 'IS', now()), +(30995, 'Djöflaeyjan', 'IS', now()), +(30996, 'Matarklúbburinn', 'IS', now()), +(30997, 'Hvert stefnir Ísland?', 'IS', now()), +(30998, 'Tónspor', 'IS', now()), +(30999, 'Andraland', 'IS', now()), +(31000, 'Bjartar vonir vakna', 'IS', now()), +(31001, 'Framandi og freistandi með Yesmine Olsson', 'IS', now()), +(31002, 'hljómskálinn', 'IS', now()), +(31003, 'True Love', 'UK', now()), +(31004, 'Sanctuary Webisodes', 'US', now()), +(31005, 'Детка', 'RU', now()), +(31006, 'China: Triumph and Turmoil', 'UK', now()), +(31007, 'Britain''s First Photo Album', 'UK', now()), +(31009, 'Reutov TV', 'RU', now()), +(31010, 'Strangely Uplifting', 'US', now()), +(31011, 'Totally Bonkers Guinness World Records', 'UK', now()), +(31012, 'Love Life', 'UK', now()), +(31013, 'Crime and Punishment (2012)', 'UK', now()), +(31014, 'Party, Bruder!', 'DE', now()), +(31015, 'Spesialenheten', 'NO', now()), +(31016, 'Lab Rats (2012)', 'US', now()), +(31017, 'Open Court', 'US', now()), +(31018, 'Jami Floyd: Best Defense', 'US', now()), +(31019, 'Don''t Stop Me Now', 'UK', now()), +(31020, 'Mary''s Bottom Line', 'UK', now()), +(31021, 'The Hairy Bikers'' Bakeation', 'UK', now()), +(31022, 'Breakaway (2012)', 'UK', now()), +(31023, 'Karatefylla', 'SE', now()), +(31024, 'Bristol Palin: Life’s a Tripp', 'US', now()), +(31025, 'Price It Out', 'US', now()), +(31026, 'Good, Better…Best', 'US', now()), +(31027, 'Stand Up For Sport Relief', 'UK', now()), +(31028, 'Cloudbabies', 'UK', now()), +(31029, 'The Rhyme Rocket', 'UK', now()), +(31030, 'Reverse Missionaries', 'UK', now()), +(31031, 'The Love Machine', 'UK', now()), +(31032, 'Ozuma', 'JP', now()), +(31033, 'Ginga e Kickoff!!', 'JP', now()), +(31034, 'Zetman', 'JP', now()), +(31035, 'Acchi Kocchi', 'JP', now()), +(31036, 'Hyouka', 'JP', now()), +(31037, 'Sankarea', 'JP', now()), +(31038, 'Arashi no Yoru ni', 'JP', now()), +(31039, 'Kuroko no Basuke', 'JP', now()), +(31040, 'Tasogare Otome x Amnesia', 'JP', now()), +(31041, 'Hiiro no Kakera', 'JP', now()), +(31042, 'Upotte!!', 'JP', now()), +(31043, 'Medaka Box', 'JP', now()), +(31044, 'Uchuu Kyoudai', 'JP', now()), +(31045, 'Accel World', 'JP', now()), +(31046, 'Tsuritama', 'JP', now()), +(31047, 'Sengoku Collection', 'JP', now()), +(31048, 'Shining Hearts: Shiawase no Pan', 'JP', now()), +(31049, 'AKB0048', 'JP', now()), +(31050, 'Koi-ken! Watashi-tachi Anime ni Nacchatta!', 'JP', now()), +(31051, 'Sakamichi no Apollon', 'JP', now()), +(31052, 'Trial Heat', 'US', now()), +(31053, 'Haiyore! Nyaruko-san', 'JP', now()), +(31054, 'Lady Friends', 'US', now()), +(31055, 'Monsuno', 'US', now()), +(31056, 'Special Ops Mission', 'US', now()), +(31057, 'Too Cute', 'US', now()), +(31058, 'Leave It to Niecy', 'US', now()), +(31059, 'How God Made The English', 'UK', now()), +(31060, 'Звёздный ринг', 'UA', now()), +(31061, 'Mother', 'JP', now()), +(31062, 'The Grifball Saga', 'US', now()), +(31063, 'Hollywood Girls Night', 'US', now()), +(31064, 'Built for the Kill (US)', 'US', now()), +(31065, 'Pearlie', 'AU', now()), +(31066, 'Den sista dokusåpan', 'SE', now()), +(31067, '10 Things You Don''t Know About', 'US', now()), +(31068, 'Wikileaks: The Secret Life Of A Superpower', 'UK', now()), +(31070, 'Titanic (2012)', 'UK', now()), +(31071, 'The Star Next Door', 'US', now()), +(31072, 'Breaking Pointe', 'US', now()), +(31073, 'The Catalina', 'US', now()), +(31074, 'Hit the Road Jack', 'UK', now()), +(31075, 'Get Your House in Order', 'UK', now()), +(31076, 'Onkel Amerika', 'NO', now()), +(31077, 'DOCTORS Saikyou no Meii', 'JP', now()), +(31078, 'Danni Lowinski VTM', 'BE', now()), +(31079, 'Return to the Falklands', 'UK', now()), +(31080, 'Death Row', 'UK', now()), +(31081, 'The Sheriffs are Coming', 'UK', now()), +(31082, 'John Bishop’s Sport Relief Hell', 'UK', now()), +(31083, 'The Little Paris Kitchen: Cooking with Rachel Khoo', 'UK', now()), +(31084, 'The Anti-Social Network', 'UK', now()), +(31085, 'Pass Time', 'US', now()), +(31086, 'Revenge for Real', 'US', now()), +(31087, 'Doomsday Bunkers', 'US', now()), +(31088, 'Frankenstein: A Modern Myth', 'UK', now()), +(31089, 'NAV', 'NO', now()), +(31090, 'The Syndicate (UK)', 'UK', now()), +(31091, 'One Night', 'UK', now()), +(31092, 'Secrets And Words', 'UK', now()), +(31093, 'Sex and Sensibility: The Allure of Art Nouveau', 'UK', now()), +(31094, 'Rookie Builders', 'UK', now()), +(31095, 'Ook getest op mensen', 'BE', now()), +(31096, 'Flipped Off', 'US', now()), +(31097, 'Gems', 'UK', now()), +(31098, 'Revelations', 'UK', now()), +(31099, 'Kathy', 'US', now()), +(31100, 'КВН - Высшая лига', 'RU', now()), +(31101, 'Hellstrøms Mesterkokk', 'NO', now()), +(31102, 'Tree With Deep Roots', 'KR', now()), +(31103, 'High Kick : The Revenge of the Short Legged', 'KR', now()), +(31104, 'Blizzard Island', 'CA', now()), +(31105, 'Excess Baggage', 'AU', now()), +(31106, 'Bite me', 'US', now()), +(31107, 'En stark resa med Morgan & Ola-Conny', 'SE', now()), +(31108, 'Conspiracy in the Court', 'KR', now()), +(31109, 'Tsukahara Bokuden', 'JP', now()), +(31110, 'Atsu-hime', 'JP', now()), +(31111, 'Buzz Aldrin, hvor ble det av deg i alt mylderet?', 'NO', now()), +(31112, 'Family Confidential', 'AU', now()), +(31113, 'Titanic With Len Goodman', 'UK', now()), +(31114, 'Restaurant Stakeout', 'US', now()), +(31115, 'Finding Genghis', 'AU', now()), +(31116, 'Alaska: Ice Cold Killers', 'US', now()), +(31117, 'Całkiem nowe lata miodowe', 'PL', now()), +(31118, 'Anyone But Me', 'US', now()), +(31119, 'Beautiful Homes', 'US', now()), +(31120, 'Big Fish', 'AU', now()), +(31121, 'Born To Kill', 'US', now()), +(31122, 'Empires: Queen Victorias Empire', 'UK', now()), +(31123, 'Escape To The Legion', 'UK', now()), +(31124, 'Fallout: Nuka Break', 'US', now()), +(31125, 'FARMkids', 'AU', now()), +(31126, 'North Woods Law', 'US', now()), +(31127, 'Navajo Cops', 'US', now()), +(31128, 'Superstar', 'UK', now()), +(31129, 'Rupaul''s All Stars Drag Race', 'US', now()), +(31130, 'Coast Guard Florida', 'US', now()), +(31131, 'The Secret Policeman''s Ball', 'UK', now()), +(31132, 'Crash Canyon', 'CA', now()), +(31133, 'Nårje', 'NO', now()), +(31134, 'The Big Decision', 'CA', now()), +(31135, 'Flipping Boston', 'US', now()), +(31136, 'Vikings', 'US', now()), +(31137, 'The Jeremy Kyle Show (US)', 'US', now()), +(31138, 'Timelapse', 'AU', now()), +(31139, 'Lifeguard!', 'US', now()), +(31140, 'The 1952 Show', 'UK', now()), +(31141, 'Just A Minute (2012)', 'UK', now()), +(31142, 'Jennie Garth: Little Bit Country', 'US', now()), +(31143, 'Warrior Massacre', 'US', now()), +(31144, 'Mrs. Eastwood & Company', 'US', now()), +(31145, 'Project Runway All-Stars: After The Runway', 'US', now()), +(31146, 'MMA Uncensored Live', 'US', now()), +(31147, 'Words of Captain Scott', 'UK', now()), +(31148, 'Fraud Squad (2012)', 'UK', now()), +(31149, 'Morgan Spurlock''s New Britannia', 'UK', now()), +(31150, 'Chaplains: Angels of Mersey', 'UK', now()), +(31151, 'World Series of Dating', 'UK', now()), +(31152, 'Naruto SD: Rock Lee no Seishun Full-Power Ninden', 'JP', now()), +(31153, 'Krew z krwi', 'PL', now()), +(31154, 'Operatie renovatie', 'BE', now()), +(31155, 'Orbit: How Satellites Rule Our World', 'UK', now()), +(31156, 'Perspectives', 'UK', now()), +(31157, 'Cash Britain', 'UK', now()), +(31158, 'The Estate', 'UK', now()), +(31159, 'Furusato Saisei Nippon no Mukashi-Banashi', 'JP', now()), +(31160, 'Kuromajo-san ga Touru!!', 'JP', now()), +(31161, 'Lupin the Third: Mine Fujiko to Iu Onna', 'JP', now()), +(31162, 'Gon', 'JP', now()), +(31163, 'Natsu-iro Kiseki', 'JP', now()), +(31164, 'Jormungand', 'JP', now()), +(31165, 'Yurumates 3D', 'JP', now()), +(31166, 'Morten Ramm fyller spektrum', 'NO', now()), +(31167, 'Crimes That Shook The World', 'US', now()), +(31168, 'King of the Nerds', 'US', now()), +(31170, 'Escape Routes', 'US', now()), +(31171, 'Voyage Trekkers', 'US', now()), +(31172, 'Nazo no Kanojo X', 'JP', now()), +(31173, 'Styled By June', 'US', now()), +(31174, 'T4', 'UK', now()), +(31175, 'House of Five Leaves', 'JP', now()), +(31176, 'Sunday Brunch', 'UK', now()), +(31177, 'Watch and Listen', 'UK', now()), +(31178, 'Campbell Live', 'NZ', now()), +(31179, 'Modern Spies', 'UK', now()), +(31180, 'Couples Therapy', 'US', now()), +(31181, 'My Worst Deal', 'UK', now()), +(31182, 'The Damien Hirst Show', 'UK', now()), +(31183, 'The Undateables', 'UK', now()), +(31184, 'Crimes That Shook Britain', 'UK', now()), +(31185, 'Одна за всех', 'RU', now()), +(31187, 'Singapore 1942: End of Empire', 'UK', now()), +(31188, 'The Falkland''s Legacy With Max Hastings', 'UK', now()), +(31189, 'Rory McGrath''s Pub Dig', 'UK', now()), +(31190, 'Super Robot Red Baron', 'JP', now()), +(31191, 'Iron King', 'JP', now()), +(31192, 'Buffy the Vampire Slayer - Season Eight: Motion comics', 'US', now()), +(31193, 'Land of the Lost Wolves', 'UK', now()), +(31194, 'Kendra on Top', 'US', now()), +(31195, 'Washington Heights', 'US', now()), +(31196, 'Epic Fail', 'US', now()), +(31197, 'This Is How I Made It', 'US', now()), +(31198, 'Our Food', 'UK', now()), +(31199, 'Brick by Brick: Rebuilding Our Past', 'UK', now()), +(31200, 'Secrets From The Ice', 'UK', now()), +(31201, 'Metals: How They Work', 'UK', now()), +(31202, 'La Fuga', 'ES', now()), +(31203, 'Bob the builder: Project Build It', 'US', now()), +(31204, 'White Christmas', 'KR', now()), +(31205, 'Den store skoledugnaden', 'NO', now()), +(31206, 'Valens Rikskringkasting', 'NO', now()), +(31207, 'Critter Quest!', 'US', now()), +(31208, 'Love Rain', 'KR', now()), +(31209, 'What''s up?', 'KR', now()), +(31210, 'Good Game: Spawn Point', 'AU', now()), +(31211, 'House of Bryan - On The Rocks', 'CA', now()), +(31212, 'КВН - Премьер-лига', 'RU', now()), +(31213, 'Cowboy Traders', 'UK', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(31214, 'The Great British Taste Tour', 'UK', now()), +(31215, 'Dinky Dog', 'US', now()), +(31216, 'MeatEater', 'US', now()), +(31217, 'The Story of Wales', 'UK', now()), +(31218, 'Школа сути', 'RU', now()), +(31471, 'The Store', 'UK', now()), +(31220, 'Taisetsu na Koto wa Subete Kimi ga Oshiete Kureta', 'JP', now()), +(31222, 'Finding Your Roots with Henry Louis Gates, Jr.', 'US', now()), +(31223, 'Brooklyn 11223', 'US', now()), +(31224, 'The One and Only Des O''Connor', 'UK', now()), +(31225, 'Match of the Day 2', 'UK', now()), +(31226, 'Extreme Archaeology', 'UK', now()), +(31227, 'Ball Boys', 'US', now()), +(31228, 'Outcast Kustoms', 'US', now()), +(31229, 'The Great War', 'UK', now()), +(31230, 'Bid & Destroy', 'US', now()), +(31231, 'Celebrity Deal or No Deal', 'UK', now()), +(31232, 'The Churchills', 'UK', now()), +(31233, 'Wicked Tuna', 'US', now()), +(31234, 'Keith Lemon''s Lemon Aid', 'UK', now()), +(31235, 'Robson''s Extreme Fishing Challenge', 'UK', now()), +(31236, 'Our Crime', 'UK', now()), +(31237, 'Simon Amstell: Do Nothing Live', 'UK', now()), +(31238, 'The Wiener''s Circle', 'US', now()), +(31239, 'The Great Detective (1979)', 'CA', now()), +(31240, 'The Mighty Mississippi with Trevor McDonald', 'UK', now()), +(31241, 'The Guest Wing', 'UK', now()), +(31242, 'Princess Ja Myung Go', 'KR', now()), +(31243, 'Hero: Unseen Warfare', 'KR', now()), +(31244, 'Superman (1941)', 'US', now()), +(31245, 'Kogepan', 'JP', now()), +(31246, 'House of Consignment', 'US', now()), +(31247, 'Outlaw Bikers', 'US', now()), +(31248, 'Real Vice: Miami', 'US', now()), +(31249, 'A Ghost Story For Christmas', 'UK', now()), +(31250, 'The Matt Lucas Awards', 'UK', now()), +(31251, 'The Decrypters', 'US', now()), +(31252, 'Celebrity House Hunting', 'US', now()), +(31253, 'My Mom is Obsessed', 'US', now()), +(31534, 'Vízipók-csodapók', 'HU', now()), +(31255, 'Divine Women', 'UK', now()), +(31256, 'Don''t Blame the Dog', 'UK', now()), +(31367, '10 Things I Hate About', 'UK', now()), +(31258, 'Yankee-kun to Megane-chan', 'JP', now()), +(31259, 'Haru : An Unforgettable Day in Korea', 'KR', now()), +(31260, 'I Am Sam', 'KR', now()), +(31261, 'Craft Wars', 'US', now()), +(31262, 'Kaizoku Sentai Gokaiger', 'JP', now()), +(31263, 'Tokumei Sentai Go-Busters', 'JP', now()), +(31264, 'Tensou Sentai Goseiger', 'JP', now()), +(31265, 'The Fugitive: Plan B', 'KR', now()), +(31266, 'Meet The Romans With Mary Beard', 'UK', now()), +(31267, 'Southern Nights', 'US', now()), +(31268, 'Mad Mad World', 'UK', now()), +(31269, 'Frauentausch', 'DE', now()), +(31270, 'Hip Hop Squares', 'US', now()), +(31271, 'The First Family', 'US', now()), +(31272, 'Wild Scene Investigation', 'US', now()), +(31273, 'De Zonen van Van As', 'BE', now()), +(31274, 'Dead World', 'RU', now()), +(31275, 'Kommissarie Winter', 'SE', now()), +(31276, 'Minecraft Lost World', 'RU', now()), +(31277, 'Family Trap', 'US', now()), +(31278, 'Hotel Stephanie', 'UK', now()), +(31279, 'Siffer', 'NO', now()), +(31280, 'House of Bryan', 'CA', now()), +(31281, 'Tüskevár', 'HU', now()), +(31282, 'Angyalbörben', 'HU', now()), +(31283, 'Olly: Life on Murs', 'UK', now()), +(31284, 'Букля LIVE', 'RU', now()), +(31285, 'Видеомания Daily', 'RU', now()), +(31286, 'The Newsroom (2012)', 'US', now()), +(31287, 'Scheire en de Schepping', 'BE', now()), +(31288, 'Mama''s Boys of the Bronx', 'US', now()), +(31289, 'Robinsonekspedisjonen vinter', 'NO', now()), +(31290, 'How It Works', 'UK', now()), +(31291, 'The Great American Manhunt', 'US', now()), +(31292, 'The 70s', 'UK', now()), +(31293, 'Sounds of the 70s', 'UK', now()), +(31294, 'Titanic: A Commemoration In Music And Film', 'UK', now()), +(31295, 'Indian Ocean With Simon Reeve', 'UK', now()), +(31296, 'The King And The Playwright: A Jacobean History', 'UK', now()), +(31297, 'Dara O''Briain: School of Hard Sums', 'UK', now()), +(31298, 'Koen Kampioen', 'NL', now()), +(31299, 'Bounty Hunters', 'US', now()), +(31300, 'Trinity 911', 'US', now()), +(31301, 'World Championship Snooker 2012', 'UK', now()), +(31302, 'Duets', 'US', now()), +(31303, 'High School Moms', 'US', now()), +(31304, 'If They Were My Kids', 'US', now()), +(31305, 'Live With...', 'UK', now()), +(31306, 'Odd Folks Home', 'US', now()), +(31307, 'Punkin Chunkin', 'US', now()), +(31308, 'Surviving Zombies', 'US', now()), +(31309, 'House of Torment', 'US', now()), +(31310, 'Horizon: Transit of Venus', 'US', now()), +(31311, 'Horizon: Nasa''s Mission to Mars', 'US', now()), +(31312, 'This Changes Everything', 'US', now()), +(31313, 'How the Earth Works', 'US', now()), +(31314, 'Insect Autopsy', 'US', now()), +(31315, 'Strip the City', 'US', now()), +(31316, 'The Experimenters', 'US', now()), +(31317, 'Story of the Continents', 'US', now()), +(31318, 'Australia On Trial', 'AU', now()), +(31319, 'What is that ?', 'US', now()), +(31320, 'Conquerers', 'US', now()), +(31321, 'Large Dangerous Rocket Ships', 'US', now()), +(31322, 'EVIL TWINS', 'US', now()), +(31323, 'Redrum', 'US', now()), +(34779, 'Boundless', 'CA', now()), +(31325, 'Fatal Vows', 'US', now()), +(31326, 'Wives With Knives', 'US', now()), +(31327, 'Pretty Bad Girls', 'US', now()), +(31328, 'Cold Case (wt)', 'US', now()), +(31329, 'Dangerous Persuasions', 'CA', now()), +(31330, 'Who the Bleep...', 'US', now()), +(31343, 'Justice (1971)', 'UK', now()), +(31332, 'Вербное воскресенье', 'RU', now()), +(31333, 'Top Engineer', 'US', now()), +(31334, 'One Car Too Far', 'US', now()), +(31335, 'Mark Burnett''s Alaska', 'US', now()), +(32022, 'Parents', 'UK', now()), +(31337, 'Derek', 'UK', now()), +(31338, 'Stars Earn Stripes', 'US', now()), +(31339, 'Detentionaire', 'CA', now()), +(31340, 'Panamericana Road Trip, De', 'NL', now()), +(31341, 'Minecraft Spellbound Caves', 'RU', now()), +(32983, 'Celebrity Holiday Homes', 'US', now()), +(31344, 'The Real Housewives of Vancouver', 'CA', now()), +(31345, 'Passion in Port Talbot', 'UK', now()), +(31346, 'Steps: On the Road Again', 'UK', now()), +(31347, 'Нинель Пофиг', 'RU', now()), +(31348, 'GameCenter CX', 'JP', now()), +(31349, 'The Pitch', 'US', now()), +(31350, 'Meat Men', 'US', now()), +(31351, 'Luna, el misterio de Calenda', 'ES', now()), +(31352, 'Breakfast (AU)', 'AU', now()), +(31353, 'Sold!', 'US', now()), +(31354, 'Edge of War', 'US', now()), +(31355, 'Extreme A&E', 'UK', now()), +(31356, 'Love For Sail', 'US', now()), +(31357, 'No Kitchen Required', 'US', now()), +(31358, 'Shannen Says', 'US', now()), +(31359, 'Savage U', 'US', now()), +(31360, 'Count Dracula', 'UK', now()), +(31361, 'MTV''s Hip-Hop POV', 'US', now()), +(31362, 'Hidden Talent', 'UK', now()), +(31363, 'Very Important People', 'UK', now()), +(31364, 'The Nostalgia Chick', 'US', now()), +(31365, 'Buch in de bajes', 'NL', now()), +(31366, 'The All New Gadget Show', 'UK', now()), +(31368, 'America Revealed', 'US', now()), +(31369, 'True Detective', 'US', now()), +(31370, 'Vidiots', 'US', now()), +(31371, 'Popped Up Abroad', 'US', now()), +(31372, 'La Dueña', 'AR', now()), +(31373, 'Motives and Murders', 'US', now()), +(31374, 'Shark Men', 'US', now()), +(31375, 'Yami no Matsuei', 'JP', now()), +(31376, 'Last Chance Driving School', 'US', now()), +(31377, 'Laconia', 'US', now()), +(31378, 'Rebuilding Titanic', 'US', now()), +(31379, 'Dogs in the City', 'US', now()), +(31380, 'Dirty Great Machines', 'UK', now()), +(31381, 'Вечерний Киев', 'UA', now()), +(31382, 'De meesterbakker', 'BE', now()), +(31383, 'Saint Seiya Omega', 'JP', now()), +(31384, 'The New Normal', 'US', now()), +(31385, 'Dog with a Blog', 'US', now()), +(31386, 'Преступление и наказание', 'RU', now()), +(31387, 'Eden''s World', 'US', now()), +(31388, 'Magyarország története', 'HU', now()), +(31389, 'Seven News (Sydney)', 'AU', now()), +(31390, 'Новаторы', 'RU', now()), +(31391, 'Charles Endell Esquire', 'UK', now()), +(31392, 'Мini Wakfu', 'FR', now()), +(31393, 'Holliston', 'US', now()), +(31394, 'Scenes from a Marriage', 'SE', now()), +(31395, '49 Days', 'KR', now()), +(31396, 'Braving the Elements', 'US', now()), +(31397, 'Amish: Out of Order', 'US', now()), +(31398, 'Полицейские будни', 'RU', now()), +(31400, 'Magyar népmesék', 'HU', now()), +(31401, '60 Seconds', 'UK', now()), +(31402, 'The 7 O''Clock News', 'UK', now()), +(31403, 'BBC Nine O''Clock News', 'UK', now()), +(31404, 'BBC Weekend News', 'UK', now()), +(31405, 'BBC World News America', 'US', now()), +(31406, 'The Late Show (UK)', 'UK', now()), +(31407, 'The Late Review', 'UK', now()), +(31408, 'Newsnight Scotland', 'UK', now()), +(31409, 'Newsround Showbiz', 'UK', now()), +(31410, 'Story Parade', 'UK', now()), +(31411, 'Match of the Day Kickabout', 'UK', now()), +(31412, 'ITV News at 5:30', 'UK', now()), +(31413, 'ITV News (Afternoon Programme)', 'UK', now()), +(31414, 'ITV News at Ten', 'UK', now()), +(31415, 'ITV News', 'UK', now()), +(31416, 'ITV News (Weekend Bulletins)', 'UK', now()), +(31417, 'ITV News at 10.30', 'UK', now()), +(31418, 'ITV Nightly News', 'UK', now()), +(31419, 'ITV News Headlines', 'UK', now()), +(31420, 'More4 News', 'UK', now()), +(31421, 'News at Noon', 'UK', now()), +(31422, 'Channel 4 News Summary', 'UK', now()), +(31423, 'Home Fires (1980)', 'CA', now()), +(31424, 'Ракия Сънрайз', 'BG', now()), +(31425, '5 News at 5', 'UK', now()), +(31426, '5 News at Lunchtime', 'UK', now()), +(31427, '5 News at 6.30', 'UK', now()), +(31428, 'All Girls Garage', 'US', now()), +(31429, '5 News at 20.58', 'UK', now()), +(31430, '5 News at 21.58', 'UK', now()), +(31431, '5 News Weekend', 'UK', now()), +(31432, '5 News Early', 'UK', now()), +(31433, '5 News at 11.30', 'UK', now()), +(31434, '5 News at Noon', 'UK', now()), +(31435, '5 News', 'UK', now()), +(31436, '5 News at Breakfast', 'UK', now()), +(31437, '5 News at Six', 'UK', now()), +(31438, '5 News at 5.30', 'UK', now()), +(31439, '5 News at 7.30', 'UK', now()), +(31440, 'Деффчонки', 'RU', now()), +(31441, 'How to Haggle for a House', 'UK', now()), +(31442, 'Titanic: Blood and Steel', 'IT', now()), +(31443, 'Enkeleitä ja Pikkupiruja', 'FI', now()), +(31444, 'Gay Army', 'SE', now()), +(31445, 'Hobitit', 'FI', now()), +(31446, 'Kyllä isä osaa', 'FI', now()), +(31447, 'Me Stallarit', 'FI', now()), +(31448, 'Nollatoleranssi', 'FI', now()), +(31449, 'Parhaat Vuodet', 'FI', now()), +(31450, 'The Sexy Ads Show', 'UK', now()), +(31451, 'Wind and Cloud', 'TW', now()), +(31452, 'The Hoarder Next Door', 'UK', now()), +(31453, 'Foxes Live: Wild in the City', 'UK', now()), +(31454, 'Robbed, Raided, Reunited', 'UK', now()), +(31455, 'Minecraft: Ant Farm', 'RU', now()), +(31456, 'Big Ang', 'US', now()), +(31457, 'Spectrobes', 'US', now()), +(31458, 'An Englishman''s Castle', 'UK', now()), +(31459, 'Ewan McGregor: Cold Chain Mission', 'UK', now()), +(31460, 'War Hero in My Family', 'UK', now()), +(31461, 'Unzipped (2012)', 'UK', now()), +(31462, 'Ready for Love', 'US', now()), +(31463, 'Вечерний Ургант', 'RU', now()), +(31464, 'Maestro at the Opera', 'UK', now()), +(31465, 'Francesco Da Mosto Shakespeare', 'UK', now()), +(31466, 'Antiques Uncovered', 'UK', now()), +(31467, 'Bullets, Boots and Bandages: How to Really Win at War', 'UK', now()), +(31468, 'RazZeedo Show', 'RU', now()), +(31469, 'Jóban Rosszban', 'HU', now()), +(31470, 'Kid Icarus: Uprising Animation', 'US', now()), +(31472, '¿Quién quiere casarse con mi hijo?', 'ES', now()), +(31473, 'BAD ROOM', 'RU', now()), +(31474, 'The Town Taking On China', 'UK', now()), +(31475, 'Planet Earth Live', 'UK', now()), +(31476, 'Haunted Hotels', 'US', now()), +(31477, 'Hulk And The Agents of S.M.A.S.H', 'US', now()), +(31478, 'Cheat Sheet', 'US', now()), +(31479, 'Combat Tech', 'US', now()), +(32721, 'Chuunibyou demo Koi ga Shitai!', 'JP', now()), +(31481, 'Dinotopia (TV miniseries)', 'US', now()), +(31482, 'Las Fierbinti', 'RO', now()), +(31483, 'Comedy Bang! Bang!', 'US', now()), +(31484, 'Melissa & Tye', 'US', now()), +(31485, 'Killer Kids', 'US', now()), +(31486, 'Britain Beware', 'UK', now()), +(31487, 'Mōretsu Pirates', 'JP', now()), +(31488, 'Pictures of You', 'AU', now()), +(31489, 'Ben 10: Omniverse', 'US', now()), +(31490, 'Bennett on Bennett', 'UK', now()), +(31491, 'Battle of the Brides', 'UK', now()), +(31492, 'Munkaügyek', 'HU', now()), +(31493, 'The Annoying Orange', 'US', now()), +(31494, 'Szájhősök', 'HU', now()), +(31495, 'T4 Movie Special', 'UK', now()), +(31496, 'Mega Mansions', 'US', now()), +(31497, 'Xtreme Waterparks', 'US', now()), +(31498, 'Insane Coaster Wars', 'US', now()), +(31499, 'RV Kings', 'US', now()), +(31500, 'Top Spot', 'US', now()), +(31501, 'American Originals', 'US', now()), +(31502, 'All You Can Meat', 'US', now()), +(31504, 'Waterloo Road Reunited', 'UK', now()), +(31505, 'Please Marry My Boy', 'AU', now()), +(32222, 'The Block (NZ)', 'NZ', now()), +(31507, 'Collection Intervention', 'US', now()), +(31508, 'Viral Video Showdown', 'US', now()), +(31509, 'Ghost Mine', 'US', now()), +(31510, 'Hot Set', 'US', now()), +(31516, 'Кантора Митрани', 'BG', now()), +(31517, 'The Great British Story: A People''s History', 'UK', now()), +(31518, 'Blockbusters (2012)', 'UK', now()), +(31519, 'Vale Tudo', 'BR', now()), +(31520, 'Café Racer', 'US', now()), +(31521, 'Not Safe For Work', 'US', now()), +(31522, '7 Days of Sex', 'US', now()), +(32292, 'Tanken Driland', 'JP', now()), +(31524, 'Great Ormond Street', 'UK', now()), +(31525, 'Polar Bear Cafe', 'JP', now()), +(31526, 'Roda de Fogo', 'BR', now()), +(31528, 'Dexpedition', 'NO', now()), +(31529, 'Last Chance Dogs', 'NZ', now()), +(31530, 'Chelsea New Zealand''s Hottest Home Baker', 'NZ', now()), +(31531, 'Первый класс', 'RU', now()), +(31532, 'A Mézga család', 'HU', now()), +(31533, 'Crash & Bernstein', 'US', now()), +(31535, 'A nagy ho-ho-horgász', 'HU', now()), +(31536, 'Six Wives of Henry VIII', 'UK', now()), +(31537, 'Kukori és Kotkoda', 'HU', now()), +(31538, 'Pom Pom meséi', 'HU', now()), +(31539, 'Mekk Elek az ezermester', 'HU', now()), +(31540, 'Starlings', 'UK', now()), +(31541, 'Ladyboys', 'UK', now()), +(31542, 'Spectre', 'US', now()), +(31543, 'The Questor Tapes', 'US', now()), +(31544, 'Million Dollar Rooms', 'US', now()), +(31545, 'My Big Fat American Gypsy Wedding', 'US', now()), +(31546, 'Motorcity', 'US', now()), +(31547, 'The Soul Man', 'US', now()), +(31548, 'Secrets of Wild India', 'US', now()), +(31549, 'Star Trek: Phase II', 'US', now()), +(31550, 'Escrava Isaura', 'BR', now()), +(31551, 'Sinhá Moça', 'BR', now()), +(31552, 'Direito de Amar', 'BR', now()), +(31553, 'Fera Radical', 'BR', now()), +(31554, 'De schat van de oranje', 'NL', now()), +(31555, '1920. Wojna i miłość', 'PL', now()), +(31556, 'Sprawiedliwi', 'PL', now()), +(31557, 'Kijk eens op de doos', 'BE', now()), +(31558, 'Dragons: Riders of Berk', 'US', now()), +(31559, 'Tron: Uprising', 'US', now()), +(31560, 'The Last Don', 'US', now()), +(31561, 'The Last Don II', 'US', now()), +(31562, 'Zalm voor Corleone', 'BE', now()), +(31563, 'De bende van Wim', 'BE', now()), +(31564, 'vive la colo', 'FR', now()), +(31565, 'Secret Eaters', 'UK', now()), +(31566, 'The Voice - Norges beste stemme', 'NO', now()), +(31567, 'Superstaar', 'BE', now()), +(31568, 'Przystań', 'PL', now()), +(31569, 'Celebrities at Home', 'US', now()), +(31570, 'White Room Challenge', 'US', now()), +(31571, 'De nieuwe Rembrandt', 'NL', now()), +(31572, 'Yardcore', 'US', now()), +(31573, 'Chatsworth', 'UK', now()), +(31574, 'Dirty Britain', 'UK', now()), +(31576, 'Olympic Torch Live', 'UK', now()), +(31577, 'Harlots, Housewives and Heroines: A 17th Century History For Girl', 'UK', now()), +(31578, 'The Price is Right (2012)', 'AU', now()), +(31579, '56 Up', 'UK', now()), +(31580, 'Wild Grinders', 'US', now()), +(31581, 'Prawo Agaty', 'PL', now()), +(31582, 'Komisarz Alex', 'PL', now()), +(31583, 'My Momma Throws Down', 'US', now()), +(31584, 'The Living Room', 'AU', now()), +(31585, 'Whale Wars: Viking Shores', 'US', now()), +(31586, 'Embarrassing Bodies (US)', 'US', now()), +(31587, 'Goldfathers', 'US', now()), +(31588, 'Franklin and Friends', 'US', now()), +(31589, 'Mike the Knight', 'US', now()), +(31590, 'Low Winter Sun', 'US', now()), +(31591, 'Money From Strangers', 'US', now()), +(31592, 'The Exclusives', 'UK', now()), +(31593, 'Agony Aunts', 'AU', now()), +(31594, 'The Ultimate Fighter (BR)', 'BR', now()), +(31595, 'Mob Wives: Chicago', 'US', now()), +(31597, 'Uit De Weg', 'BE', now()), +(31598, 'Free To Choose', 'US', now()), +(31600, 'Derren Brown - Something Wicked This Way Comes', 'UK', now()), +(31601, 'First Homes', 'UK', now()), +(31602, 'A gyanú árnyékában', 'HU', now()), +(31603, 'Меч', 'RU', now()), +(31604, 'Граница, Таёжный роман', 'RU', now()), +(31605, 'The Album Chart Show', 'UK', now()), +(31606, 'London Live', 'UK', now()), +(31608, 'TOME: Terrain of Magical Expertise', 'US', now()), +(31609, '24/7 Wild', 'US', now()), +(31610, 'Quiz Me Quick', 'BE', now()), +(31611, 'NOFX: Backstage Passport', 'US', now()), +(31612, 'Boulton & Co', 'UK', now()), +(31613, 'Jeff Randall Live', 'UK', now()), +(31614, 'Murnaghan', 'UK', now()), +(31615, 'News, Sport & Weather', 'UK', now()), +(31616, 'SkyNews.com', 'UK', now()), +(31617, 'Sky News with Martin Stanford', 'UK', now()), +(31618, 'Technology Unplugged with Martin Stanford', 'UK', now()), +(31619, 'Sunday Live with Adam Boulton', 'UK', now()), +(31620, 'The Sky Report', 'UK', now()), +(31621, 'Tanisha Gets Married', 'US', now()), +(31622, 'Monday Mornings', 'US', now()), +(31623, 'Doc McStuffins', 'US', now()), +(31624, 'The Devils Ride', 'US', now()), +(31625, 'Save Me', 'US', now()), +(31626, 'Raving Rabbids', 'US', now()), +(31627, 'Care Bears: Welcome to Care-a-Lot', 'US', now()), +(31628, 'Bikie Wars: Brothers in Arms', 'AU', now()), +(31629, 'Gok Cooks Chinese', 'UK', now()), +(31630, 'Seconde Chance', 'FR', now()), +(31631, 'Halo Legends', 'US', now()), +(31632, 'Przepis na życie', 'PL', now()), +(31633, 'Trash to Treasure', 'UK', now()), +(31634, 'The London Markets', 'UK', now()), +(31635, 'Funny Roots', 'NZ', now()), +(31636, 'Good Morning! with Will Rogers, Jr.', 'US', now()), +(31637, 'America This Morning', 'US', now()), +(31638, 'Early Today', 'US', now()), +(31639, 'God Save the Queens', 'UK', now()), +(31640, 'Blue Peter''s Big Olympic Tour', 'UK', now()), +(31641, 'Девять неизвестных', 'RU', now()), +(31642, 'Euro 2012', 'UK', now()), +(31643, 'Teodors Julekalender', 'NO', now()), +(31644, 'Tancerze', 'PL', now()), +(31645, 'Deon Cole''s Black Box', 'US', now()), +(31646, 'Deception', 'US', now()), +(31647, 'Do No Harm', 'US', now()), +(31648, 'Southie Rules', 'US', now()), +(31649, 'The Mob Doctor', 'US', now()), +(31650, 'Otome wa Boku ni Koishiteru', 'JP', now()), +(31651, 'Draagmoeder Gezocht', 'NL', now()), +(31652, 'The Half Hour', 'US', now()), +(31653, 'The GC', 'NZ', now()), +(31654, 'Степные дети', 'RU', now()), +(31655, 'Rogue', 'US', now()), +(31656, 'Acayip Hikayeler', 'TR', now()), +(31657, 'Leyla ile Mecnun', 'TR', now()), +(31658, 'Gundarr', 'US', now()), +(31659, 'TV Tome Adventures', 'US', now()), +(31660, 'Invention Hunters', 'US', now()), +(31661, 'Henry VIII', 'UK', now()), +(31662, 'Kurt Sutter''s Outlaw Empires', 'US', now()), +(31663, 'Narrow Escapes of WWII', 'US', now()), +(31664, 'Tales of Television Centre', 'UK', now()), +(31665, 'Extremely Dangerous', 'UK', now()), +(31666, 'Clarissa', 'UK', now()), +(31667, 'The Online Gamer', 'US', now()), +(31668, 'Dick Figures', 'US', now()), +(31669, 'Transylvania Television', 'US', now()), +(31670, 'Baman Piderman', 'US', now()), +(31671, 'Scream Extreme', 'UK', now()), +(31672, 'The Following', 'US', now()), +(31673, 'Made in Jersey', 'US', now()), +(31674, 'Guys With Kids', 'US', now()), +(31675, 'Эксэлла / Exaella', 'RU', now()), +(31676, 'Yu-Gi-Oh: The Abridged Series', 'US', now()), +(31677, 'The Neighbors (2012)', 'US', now()), +(31678, 'Кремень', 'RU', now()), +(31679, 'Фильмомания', 'RU', now()), +(31680, 'Игромания', 'RU', now()), +(31681, 'The Queen & I (UK)', 'UK', now()), +(31682, 'The Mindy Project', 'US', now()), +(31683, 'Ben and Kate', 'US', now()), +(31684, 'The Goodwin Games', 'US', now()), +(31685, 'Il tredicesimo apostolo - Il prescelto', 'IT', now()), +(31686, '24 Dollars in 24 Hours', 'US', now()), +(31687, 'Air Aces', 'US', now()), +(31688, 'CFB on FOX', 'US', now()), +(31689, 'The Choice', 'US', now()), +(31690, 'Hard Parts: South Bronx', 'US', now()), +(31691, 'Dev', 'US', now()), +(31692, 'On the Fly', 'US', now()), +(31693, 'Tattoo School', 'US', now()), +(31694, 'Jimmy and the Giant Supermarket', 'UK', now()), +(31695, 'Family Tools', 'US', now()), +(31696, 'The Last Chapter', 'CA', now()), +(31697, 'Hollywood Exes', 'US', now()), +(31698, 'Take It All', 'US', now()), +(31699, 'Surprise with Jenny McCarthy', 'US', now()), +(31700, 'Hikounin Sentai Akibaranger', 'JP', now()), +(31701, 'Vegas', 'US', now()), +(31702, 'The Job (2013)', 'US', now()), +(31703, 'How to Beat', 'UK', now()), +(31704, 'Prince Charles: The Royal Restoration', 'UK', now()), +(31705, 'Redneck Island', 'US', now()), +(31706, 'Planet Unicorn', 'US', now()), +(31707, 'The Secret History Of Our Streets', 'UK', now()), +(31708, 'Elizabeth: Queen, Wife, Mother', 'UK', now()), +(31709, 'A Jubilee Tribute to The Queen by The Prince of Wales', 'UK', now()), +(31710, 'Britain''s Lost Routes with Griff Rhys Jones', 'UK', now()), +(31711, 'Emily Owens, M.D.', 'US', now()), +(31712, 'Gotham Girls', 'US', now()), +(31713, 'Jack and the Beanstalk: The Real Story', 'US', now()), +(31714, 'Live at the Electric', 'UK', now()), +(31744, 'Sinbad', 'UK', now()), +(31716, 'Crossbones', 'US', now()), +(31717, 'Red Widow', 'US', now()), +(31718, 'Mom Caves', 'US', now()), +(31719, 'Fishtank Kings', 'US', now()), +(31720, 'Les Vivants et les Morts', 'FR', now()), +(31721, 'Insane or Inspired?', 'US', now()), +(31722, 'Het snelle geld', 'NL', now()), +(31723, 'Potemayo', 'JP', now()), +(31724, 'Blood and Guts: A History of Surgery', 'UK', now()), +(31725, 'Meester, hij begint weer', 'BE', now()), +(31726, 'Martin Clunes: The Lemurs of Madagascar', 'UK', now()), +(31727, 'Genocyber', 'US', now()), +(31728, 'Gang World', 'US', now()), +(31729, 'Bonkers (NL)', 'NL', now()), +(31730, 'Hatfields & McCoys', 'US', now()), +(31731, 'The House the 50s Built', 'UK', now()), +(31732, 'Det store spillet', 'NO', now()), +(31733, 'Банды', 'RU', now()), +(31734, 'Taxi Vanoudenhoven', 'BE', now()), +(31735, 'Final Witness', 'US', now()), +(31736, 'The Glass House (US)', 'US', now()), +(31737, 'Hot Shots (2005)', 'UK', now()), +(31738, 'Louisiana Lockdown', 'US', now()), +(31739, 'Civilization: The West and the Rest With Niall Ferguson', 'US', now()), +(31740, 'Animal Underworld', 'US', now()), +(31741, 'Preamar', 'BR', now()), +(31742, '21st Century Family', 'KR', now()), +(31743, 'You Cannot Be Serious!', 'UK', now()), +(31745, 'The Greatest Footie Ads Ever', 'UK', now()), +(31746, 'Marco Pierre White''s Kitchen Wars', 'UK', now()), +(31747, 'All in the Best Possible Taste with Grayson Perry', 'UK', now()), +(31748, 'Good God', 'CA', now()), +(31749, 'Britain In A Day', 'UK', now()), +(31750, 'Mark Wright''s Hollywood Nights', 'UK', now()), +(31751, 'Beyond the Cosmos', 'US', now()), +(31752, 'Mr. Box Office', 'US', now()), +(31753, 'Gary Barlow: On Her Majesty''s Service', 'UK', now()), +(31754, 'The Diamond Jubilee Thames Pageant', 'UK', now()), +(31755, 'The Diamond Jubilee Concert', 'UK', now()), +(31756, 'The Diamond Jubilee Service of Thanksgiving', 'UK', now()), +(31757, 'The Diamond Jubilee Royal Procession', 'UK', now()), +(31758, 'The Queen''s Diamond Jubilee', 'UK', now()), +(31759, 'The Men Who Made Us Fat', 'UK', now()), +(31760, 'Lightning Point', 'AU', now()), +(31761, 'All the Right Moves', 'US', now()), +(31762, 'Roadtrip With G. Garvin', 'US', now()), +(31763, 'Big Brooklyn Style', 'US', now()), +(32165, 'Timm Thaler', 'DE', now()), +(31765, 'Final Offer', 'US', now()), +(31766, 'LA Hair', 'US', now()), +(31767, 'Mountain Men', 'US', now()), +(31769, 'The Culinary Adventures Of Baron Ambrosia', 'US', now()), +(31770, 'Big Break Academy', 'US', now()), +(31771, 'The Weight of the Nation', 'US', now()), +(31772, 'The Gavin Newsom Show', 'US', now()), +(31773, 'Serial Killer Earth', 'US', now()), +(31774, 'King of the Road: Carroll Shelby', 'US', now()), +(31775, 'Living Countryfied', 'US', now()), +(31776, 'Scandalicious', 'US', now()), +(31777, 'Noteworthy at the Opry', 'US', now()), +(31778, 'Empire Girls: Julissa & Adrienne', 'US', now()), +(31779, 'Iyanla, Fix My Life', 'US', now()), +(31780, 'Fast Food Mania', 'US', now()), +(31782, 'Busou Shinki Moon Angel', 'JP', now()), +(31783, 'Koe de Oshigoto!', 'JP', now()), +(31784, 'Kimi no Iru Machi', 'JP', now()), +(31785, 'Mardock Scramble', 'JP', now()), +(31786, 'Video Game High School (VGHS)', 'US', now()), +(31787, 'Motor City Rising', 'US', now()), +(31788, 'The National History Bee', 'US', now()), +(31789, 'World''s Hottest Hotels', 'US', now()), +(31790, 'Kaijudo: Rise of the Duel Masters', 'US', now()), +(31791, 'Call of the Wildman: More Live Action!', 'US', now()), +(31792, 'Yogi Cameron: A Model Guru', 'US', now()), +(31793, 'Head Games (2012)', 'US', now()), +(31794, 'Are You Normal, America?', 'US', now()), +(31795, 'Push Girls', 'US', now()), +(31796, 'Adam Richman''s Best Sandwich In America', 'US', now()), +(31797, 'Broken Minds', 'US', now()), +(31798, 'Top 100 Hottest Hooks', 'US', now()), +(31799, 'Blood, Lies & Alibis', 'US', now()), +(31800, 'Fast N'' Loud', 'US', now()), +(31801, 'Selling London', 'US', now()), +(31802, 'Cajun Justice', 'US', now()), +(31803, 'Blood Relatives', 'US', now()), +(31804, 'Evil Up Close', 'US', now()), +(31805, 'Lives on Fire', 'US', now()), +(31806, 'Bunk', 'US', now()), +(31807, 'Arts Troubleshooter', 'UK', now()), +(31808, 'Eureka Seven: AO', 'JP', now()), +(31809, 'Love Shaft', 'UK', now()), +(31811, 'Chicagolicious', 'US', now()), +(31812, 'Barter Kings', 'US', now()), +(32035, 'The Town That Never Retired', 'UK', now()), +(31814, 'The Next Big Thing: NY', 'US', now()), +(31815, 'A Short History of Everything Else', 'UK', now()), +(31816, 'Red Light Comedy: Live From Amsterdam', 'US', now()), +(31817, 'Birding Adventures', 'US', now()), +(31818, 'Secret Removers', 'UK', now()), +(31819, 'The Late News', 'AU', now()), +(31820, 'Freakonomics', 'UK', now()), +(31821, 'Europe: A Natural History', 'UK', now()), +(31822, 'United States Of Food', 'US', now()), +(31823, 'Top 100 Video Games of All Time', 'US', now()), +(31824, 'Brand X With Russell Brand', 'US', now()), +(31825, 'Forensic Firsts', 'US', now()), +(31826, 'Love & Hip Hop: Atlanta', 'US', now()), +(31827, 'Hollywood Heights', 'US', now()), +(31828, 'Shakespeare And Us', 'UK', now()), +(31829, 'Plan B, Leona and Labrinth: Project Hackney', 'UK', now()), +(31830, 'Cherry Healey: How to Get a Life', 'UK', now()), +(31831, 'The Strange Case Of The Law', 'UK', now()), +(31832, 'Diamond League Athletics', 'UK', now()), +(31833, 'Dublin Housewives', 'IE', now()), +(31834, 'Empire Wars', 'AU', now()), +(31835, 'Avenida Brasil', 'BR', now()), +(31836, 'World''s Greatest Motorcycle Rides', 'UK', now()), +(31837, 'Backyard Inventors', 'CA', now()), +(31838, 'The Girl''s Guide to Depravity', 'US', now()), +(31839, 'Gravity Falls', 'US', now()), +(31840, 'MetaJets', 'CA', now()), +(31841, 'Wander Over Yonder', 'US', now()), +(31842, 'Teen Beach Musical', 'US', now()), +(31843, 'Randy Cunningham: 9th Grade Ninja', 'US', now()), +(31844, 'Packages from Planet X', 'US', now()), +(31845, 'Pac-Man: The Adventure Begins', 'US', now()), +(31846, 'The Happy Hugglemonsters', 'US', now()), +(31847, 'Clipaholics', 'US', now()), +(31848, 'Metalworks!', 'UK', now()), +(31849, 'Sopocka Noc Kabaretowa', 'PL', now()), +(31850, 'De Schaduw van het Kruis', 'BE', now()), +(31851, 'Million Dollar Neighbourhood', 'CA', now()), +(31852, 'Real Life: The Musical', 'US', now()), +(31853, 'Opening Act', 'US', now()), +(31854, 'Trust Us with Your Life', 'US', now()), +(31855, 'Krovim Krovim', 'IL', now()), +(31856, 'Good Morning Australia (1992)', 'AU', now()), +(31857, 'He Knew He Was Right', 'UK', now()), +(31858, 'Armação Ilimitada', 'BR', now()), +(31859, 'Untamed Americas', 'US', now()), +(31860, 'Hurricane Hunters', 'US', now()), +(31862, 'Mornings', 'AU', now()), +(31863, 'Ten Morning News', 'AU', now()), +(31864, 'Ten Early News', 'AU', now()), +(31865, '6.30 with George Negus', 'AU', now()), +(31866, 'Ten News at Five (Melbourne)', 'AU', now()), +(31867, 'Ten News at Five (Brisbane)', 'AU', now()), +(31868, 'Ten News at Five (Adelaide)', 'AU', now()), +(31869, 'Punk Britannia', 'UK', now()), +(31870, 'Ten News at Five (Perth)', 'AU', now()), +(31871, 'ABC News New South Wales', 'AU', now()), +(31872, 'ABC News Queensland', 'AU', now()), +(31873, 'ABC News Northern Territory', 'AU', now()), +(31874, 'ABC News South Australia', 'AU', now()), +(31875, 'ABC News Tasmania', 'AU', now()), +(31876, 'ABC News Victoria', 'AU', now()), +(31877, 'ABC News Western Australia', 'AU', now()), +(31878, 'Weekend Breakfast', 'AU', now()), +(31879, '7.30', 'AU', now()), +(31881, 'StandUp in Stilettos', 'US', now()), +(31882, 'Super-Duper Thrill Rides', 'US', now()), +(31883, 'Family Time', 'US', now()), +(31884, 'Uptown Comic', 'US', now()), +(31885, 'Danger by Design', 'US', now()), +(31886, 'Q&A', 'AU', now()), +(31887, 'Celebrity Wife Swap (US)', 'US', now()), +(31888, 'The Drum', 'AU', now()), +(31889, 'Australia: The Time Traveller''s Guide', 'AU', now()), +(31890, 'Being Lara Bingle', 'AU', now()), +(31891, 'Seven News (Melbourne)', 'AU', now()), +(31892, 'Seven News (Brisbane)', 'AU', now()), +(31893, 'World In Action', 'UK', now()), +(31894, '40 Greatest R&B Songs of the 90s', 'US', now()), +(31895, 'Big Baboon House', 'US', now()), +(31896, 'Breaking From Above', 'US', now()), +(31897, 'Hounds (NZ)', 'NZ', now()), +(31898, 'Chasing UFOs', 'US', now()), +(31899, 'Queen & Country', 'US', now()), +(31900, 'America''s Lost Treasures', 'US', now()), +(31901, 'Seven News (Adelaide)', 'AU', now()), +(31902, 'Seven News (Perth)', 'AU', now()), +(31903, 'Today Tonight (South Australia)', 'AU', now()), +(31904, 'Today Tonight (Western Australia)', 'AU', now()), +(31905, 'Seven Early News', 'AU', now()), +(31906, 'Seven Morning News', 'AU', now()), +(31907, 'Akage no Anne', 'AJ', now()), +(31908, 'Birth Of Europe', 'US', now()), +(31909, 'Deadly Seas', 'US', now()), +(31910, 'Jake and the Never Land Pirates', 'US', now()), +(31911, 'Seven 4.30 News', 'AU', now()), +(31912, 'Seven 4.30 News (Western Australia)', 'AU', now()), +(31913, 'Nine Early Morning News', 'AU', now()), +(31914, 'Nine Morning News', 'AU', now()), +(31915, 'Nine Afternoon News', 'AU', now()), +(31916, 'Nine Afternoon News (Western Australia)', 'AU', now()), +(31917, 'Nine News: First At Five', 'AU', now()), +(31918, 'Nine News Sydney', 'AU', now()), +(31919, 'Nine News Melbourne', 'AU', now()), +(31920, 'Secrets of Our Living Planet', 'UK', now()), +(31921, 'Nine News Brisbane', 'AU', now()), +(31922, 'Nine News Gold Coast', 'AU', now()), +(31923, 'Nine News Darwin', 'AU', now()), +(31924, 'Nine News Adelaide', 'AU', now()), +(31925, 'Nine News Perth', 'AU', now()), +(31926, 'Extra (AU)', 'AU', now()), +(31927, 'A Current Affair (Adelaide)', 'AU', now()), +(31928, 'A Current Affair (Perth)', 'AU', now()), +(31929, 'Weekend Today (AU)', 'AU', now()), +(31930, 'World News Australia Late', 'AU', now()), +(31931, 'Mandarin News Australia', 'AU', now()), +(31932, 'GWN7 News', 'AU', now()), +(31933, 'NBN News', 'AU', now()), +(31934, 'Legit', 'US', now()), +(31935, 'Line Of Duty', 'UK', now()), +(31936, 'Hackney 2012', 'UK', now()), +(31937, 'The Guilt', 'MX', now()), +(31938, 'Walking and Talking', 'UK', now()), +(31939, 'NY Med', 'US', now()), +(31940, 'Cheating Vegas', 'US', now()), +(31941, 'Small Town Security', 'US', now()), +(31942, 'Market Warriors', 'US', now()), +(31943, 'Freaks & Creeps', 'US', now()), +(31944, 'Teen Titans Go!', 'US', now()), +(31945, 'Avengers Assemble', 'US', now()), +(31946, 'American Gypsies', 'US', now()), +(31947, 'Off the Hook: Extreme Catches', 'US', now()), +(31948, 'Design Star All Stars', 'US', now()), +(31949, 'Mile High (US)', 'US', now()), +(31950, 'Aloha Gold', 'US', now()), +(31951, 'The Week the Women Went (US)', 'US', now()), +(31952, 'Totally Biased with W Kamau Bell', 'US', now()), +(31953, 'Oh Sit!', 'US', now()), +(31954, 'The Next: Fame Is At Your Doorstep', 'US', now()), +(31955, 'The Century Of Warfare', 'UK', now()), +(31956, 'Prime7 News (Albury)', 'AU', now()), +(31957, 'Prime7 News (Orange)', 'AU', now()), +(31958, 'Prime7 News (Wagga Wagga)', 'AU', now()), +(31959, 'Prime7 News (Tamworth)', 'AU', now()), +(31960, 'Prime7 News (North Coast)', 'AU', now()), +(31961, 'Prime7 News Update (Newcastle)', 'AU', now()), +(31962, 'Prime7 News Update (Wollongong)', 'AU', now()), +(31963, 'Prime7 News Update (Canberra)', 'AU', now()), +(31964, 'WIN News Late Edition (New South Wales)', 'AU', now()), +(31965, 'WIN News Late Edition (Australian Capital Territory)', 'AU', now()), +(31966, 'WIN News Late Edition (Queensland)', 'AU', now()), +(31967, 'WIN News Wollongong', 'AU', now()), +(31968, 'WIN News Orange', 'AU', now()), +(31969, 'WIN News Wagga Wagga', 'AU', now()), +(31970, 'WIN News Canberra', 'AU', now()), +(31971, 'WIN News Ballarat', 'AU', now()), +(31972, 'WIN News Bendigo', 'AU', now()), +(31973, 'WIN News Gippsland', 'AU', now()), +(31974, 'WIN News Shepparton', 'AU', now()), +(31975, 'WIN News Sunraysia', 'AU', now()), +(31976, 'WIN News Albury', 'AU', now()), +(31977, 'WIN News Rockhampton & Central Queensland', 'AU', now()), +(31978, 'WIN News Sunshine Coast', 'AU', now()), +(31979, 'WIN News Wide Bay and Cairns', 'AU', now()), +(31980, 'WIN News Far East Queensland', 'AU', now()), +(31981, 'WIN News Toowoomba', 'AU', now()), +(31982, 'WIN News Mackay & the Whitsundays', 'AU', now()), +(31983, 'WIN News Townsville & North Queensland', 'AU', now()), +(31984, 'WIN News Tasmania', 'AU', now()), +(31985, 'WIN News South Australia', 'AU', now()), +(31986, 'Paul Murray Live', 'AU', now()), +(31987, 'Australia This Week', 'AU', now()), +(31988, 'The Doctor Blake Mysteries', 'AU', now()), +(31989, 'House Husbands', 'AU', now()), +(31990, 'I Will Survive', 'AU', now()), +(31991, 'Jack Irish', 'AU', now()), +(31992, 'Secret of Mako Island', 'AU', now()), +(31993, 'Graveyard Carz', 'US', now()), +(31994, 'Married to Jonas', 'US', now()), +(32720, 'Robotics;Notes', 'JP', now()), +(31996, 'Brickleberry', 'US', now()), +(31997, 'Bonjour Congo', 'BE', now()), +(31998, 'Beroep: Astronaut', 'BE', now()), +(31999, 'Alles voor de wetenschap', 'BE', now()), +(32000, 'Morning Glory', 'UK', now()), +(32001, 'Freshly Squeezed', 'UK', now()), +(32002, 'Masters of Sex', 'US', now()), +(32003, 'Salad Fingers', 'UK', now()), +(32004, 'The Front Desk', 'US', now()), +(32005, 'Cool Kids'' Table', 'US', now()), +(32006, 'I Wanna Have Your Baby', 'US', now()), +(32007, '6Degrees', 'UK', now()), +(32008, 'The High Fructose Adventures of Annoying Orange', 'US', now()), +(32009, 'The Circus', 'UK', now()), +(32010, 'Gordon Behind Bars', 'UK', now()), +(32011, 'Big Tiny: Life with the Jordans', 'US', now()), +(32012, '3 Days to Open With Bobby Flay', 'US', now()), +(32013, 'The Burn', 'US', now()), +(32014, 'Chance To Dance', 'US', now()), +(32015, 'Cheap Bites', 'US', now()), +(32016, 'Chef Wanted with Anne Burrell', 'US', now()), +(32017, 'MONEY with Melissa Francis', 'US', now()), +(32018, 'Evening Express', 'US', now()), +(32019, 'Sex Revenger', 'US', now()), +(32020, 'Stephen Hawking''s Grand Design', 'US', now()), +(32021, 'The Ultimate Fighter: Brazil', 'US', now()), +(32023, 'The line (2008)', 'US', now()), +(32024, 'The Assistant (2012)', 'US', now()), +(32025, 'Stone Protectors', 'US', now()), +(32026, 'Szomszédok hun', 'HU', now()), +(32027, 'Szomszédok hu', 'HU', now()), +(32028, 'Clean Break', 'US', now()), +(32029, 'The Wild Life: Miami', 'US', now()), +(32030, 'Off Beat', 'US', now()), +(32719, 'Little Busters!', 'JP', now()), +(32032, 'Health Inspectors', 'US', now()), +(32033, 'America''s Worst Tattoos', 'US', now()), +(32034, 'Oddities: San Francisco', 'US', now()), +(32036, '7/7: One Day In London', 'UK', now()), +(32037, 'Blackout', 'UK', now()), +(32038, 'When I Get Older', 'UK', now()), +(32039, 'Hals über Kopf', 'DE', now()), +(32040, 'Bethenny', 'US', now()), +(32041, 'Lovetown, USA', 'US', now()), +(32042, 'Cyndi Lauper: Still So Unusual', 'US', now()), +(32043, 'Eden Eats', 'US', now()), +(32044, 'Four Houses', 'US', now()), +(32045, 'Gallery Girls', 'US', now()), +(32046, 'Start-Ups: Silicon Valley', 'US', now()), +(32047, 'Life After Top Chef', 'US', now()), +(32048, 'Below Deck', 'US', now()), +(32049, 'Huh?', 'US', now()), +(32050, 'SUR', 'US', now()), +(32051, 'LA Shrinks', 'US', now()), +(32052, 'Decades (US)', 'US', now()), +(32053, '22 Birthdays', 'US', now()), +(32054, 'Blowing Sunshine', 'US', now()), +(32055, 'Get to Work', 'US', now()), +(32056, 'Ghost Town Gold', 'US', now()), +(32057, 'Haunted Highway', 'US', now()), +(32058, 'Here Comes Honey Boo Boo', 'US', now()), +(32059, 'Helena', 'BR', now()), +(32060, 'Dona Beija', 'BR', now()), +(32061, 'Der Schatz im Niemandsland', 'DE', now()), +(32062, 'Verrückt nach Clara', 'DE', now()), +(32063, 'Diese Drombuschs', 'DE', now()), +(32064, 'The Secret World of Polly Flint', 'UK', now()), +(32065, 'Frankensteins Tante', 'DE', now()), +(32066, 'Lucky Chances', 'US', now()), +(32067, 'Lucie, postrach ulice', 'CZ', now()), +(32068, 'Der Trotzkopf', 'DE', now()), +(32069, 'Rosa Salvaje', 'MX', now()), +(32070, 'Salomé', 'MX', now()), +(32071, 'O Clone', 'BR', now()), +(32072, 'Dating Rules From My Future Self', 'US', now()), +(32073, 'I''m Having Their Baby', 'US', now()), +(32074, 'Picked Off', 'US', now()), +(32075, 'Rambug', 'US', now()), +(32076, 'Super Saver Showdown', 'US', now()), +(32077, 'Tod eines Schülers', 'DE', now()), +(32078, 'Chobotnice z II. patra', 'CZ', now()), +(32079, 'Les petits meurtres d''Agatha Christie', 'FR', now()), +(32080, 'Super Soul Sunday', 'US', now()), +(32081, 'Wege zum Glück - Spuren im Sand', 'DE', now()), +(32082, 'Big', 'KR', now()), +(32083, 'Continuum (Web series)', 'US', now()), +(32084, 'The U.S. Olympic Team Trials', 'US', now()), +(32085, 'Let’s Get Gold', 'UK', now()), +(32086, 'Salvage Hunters', 'UK', now()), +(32087, 'Bananas In Pyjamas (2011)', 'AU', now()), +(32088, 'Adam Buxton''s Bug', 'UK', now()), +(32089, 'The Jungle Book', 'IN', now()), +(32090, 'Spy Myung Wol', 'KR', now()), +(32091, 'Coming Here Soon', 'UK', now()), +(32092, 'Can We Trust the Police?', 'UK', now()), +(32093, 'Cutting Edge', 'UK', now()), +(32094, 'Jamie''s Summer Food Rave Up', 'UK', now()), +(32095, 'Salary Showdown', 'UK', now()), +(32096, 'Highway Cops', 'NZ', now()), +(32097, 'Dreifacher Rittberger', 'DE', now()), +(32098, 'Front Row Center (2012)', 'US', now()), +(32099, 'Bad Guy', 'KR', now()), +(32100, 'Herbert & Schnipsi', 'DE', now()), +(32101, 'Was würden Sie tun?', 'DE', now()), +(32102, 'Bomber Command', 'UK', now()), +(32103, 'Home Grown', 'US', now()), +(32104, 'Lovelives', 'US', now()), +(32105, 'I Hate That I Love You', 'US', now()), +(32106, 'Iceland', 'US', now()), +(32107, 'Little In Common', 'US', now()), +(32108, 'Shark Wranglers', 'US', now()), +(32109, 'Knifeman', 'US', now()), +(32110, 'Tipping Point', 'UK', now()), +(32111, 'Myf Warhurst''s Nice', 'AU', now()), +(32112, 'Coming Up', 'UK', now()), +(32113, 'Guts: The Strange And Mysterious World Of The Human Stomach', 'UK', now()), +(32114, 'For The Children', 'UK', now()), +(32115, 'Watch with Mother', 'UK', now()), +(32116, 'CBBC', 'UK', now()), +(32117, 'CBBC Breakfast Show', 'UK', now()), +(32118, 'BFT', 'UK', now()), +(32119, 'BFT2', 'UK', now()), +(32120, 'The Real Chariots Of Fire', 'UK', now()), +(32121, 'Faster, Higher, Stronger', 'UK', now()), +(32122, 'Urban Secrets', 'UK', now()), +(32123, 'Das Haus der Krokodile', 'DE', now()), +(32124, 'Muv-Luv Alternative: Total Eclipse', 'JP', now()), +(32125, 'Chouyaku Hyakunin Isshu: Uta Koi', 'JP', now()), +(32126, 'The Inbetweeners (US)', 'US', now()), +(32127, 'American Colony: Meet the Hutterites', 'US', now()), +(32128, 'Blue', 'US', now()), +(32129, 'CITV', 'UK', now()), +(32130, 'Live From Daryl''s House', 'US', now()), +(32131, 'Goudkoorts', 'BE', now()), +(32132, 'Royal Greenwich', 'UK', now()), +(32133, 'Знахарь', 'RU', now()), +(32134, 'Natsuyuki Rendezvous', 'JP', now()), +(32135, 'Sword Art Online', 'JP', now()), +(32136, 'Koi to Senkyo to Chocolate', 'JP', now()), +(32137, 'Dakara Boku wa, H ga Dekinai', 'JP', now()), +(32138, 'Oda Nobuna no Yabou', 'JP', now()), +(32139, 'Binbo-gami ga!', 'JP', now()), +(32140, 'Lynch', 'CO', now()), +(32141, 'Ebiten: Kouritsu Ebi Sugawa Koukou Tenmonbu', 'JP', now()), +(32142, 'Tari Tari', 'JP', now()), +(32143, 'Kono Naka ni Hitori, Imouto ga Iru!', 'JP', now()), +(32144, 'Campione!', 'JP', now()), +(32145, 'Kokoro Connect', 'JP', now()), +(32146, 'Hagure Yuusha no Estetica', 'JP', now()), +(32147, 'Joshiraku', 'JP', now()), +(32148, 'Arcana Famiglia', 'JP', now()), +(32149, 'Jinrui wa Suitai Shimashita', 'JP', now()), +(32150, 'Chitose Get You!!', 'JP', now()), +(32151, 'Diagnosis: Dead or Alive', 'US', now()), +(32152, 'BrainTeaser', 'UK', now()), +(32153, 'Okazja', 'PL', now()), +(32154, 'Woke Up Dead', 'US', now()), +(32155, 'La Minute Vieille', 'FR', now()), +(32156, 'Teenage Boss', 'NO', now()), +(32157, 'Extreme Fishing with Robson Green - At the Ends of the Earth', 'UK', now()), +(32158, 'Leif GW Persson och sommarmorden', 'SE', now()), +(32159, 'FBN-FLYNNS-BROADCASTING-NETWORK ONLINE MEDIA', 'US', now()), +(32160, 'Bank of Dave', 'UK', now()), +(32161, 'Show Me Your Money', 'UK', now()), +(32162, 'How To Live Beyond 100', 'UK', now()), +(32163, 'June Brown: Respect Your Elders', 'UK', now()), +(32164, 'Best Parks Ever', 'US', now()), +(32166, 'Chibi Devil', 'JP', now()), +(32167, 'Volcano Live', 'UK', now()), +(32168, 'Nation''s Favourite Number One', 'UK', now()), +(32169, 'The Angelos Neil Epithemiou Show', 'UK', now()), +(32170, 'Alan Partridge''s Mid-Morning Matters', 'UK', now()), +(32171, 'Networks of Power', 'UK', now()), +(32172, 'Half Built House', 'UK', now()), +(32175, 'The Crowd Goes Wild', 'NZ', now()), +(32176, 'Rooftop Prince', 'KR', now()), +(32177, 'H', 'FR', now()), +(32178, 'Bulionerzy', 'PL', now()), +(32179, 'My Country Calls / Secret Agent Miss Oh', 'KR', now()), +(32180, 'My Happy Home / My Sweet Home', 'KR', now()), +(32181, 'Jak oni spiewają', 'PL', now()), +(32182, 'Sąsiedzi', 'PL', now()), +(32183, 'Good Afternoon America', 'US', now()), +(32184, 'Katie (2012)', 'US', now()), +(32185, 'Pac-Man and the Ghostly Adventures', 'UK', now()), +(32186, 'ER Nights', 'US', now()), +(32187, 'A Thousand Days'' Promise', 'KR', now()), +(32188, 'Graceland', 'US', now()), +(32189, 'Mirador', 'CA', now()), +(32190, 'Tout sur moi', 'CA', now()), +(32191, 'Shut Up Flower Boy Band', 'KR', now()), +(32192, 'Builder Boss', 'CA', now()), +(32193, 'Golden', 'NZ', now()), +(32194, 'Зоннентау', 'RU', now()), +(32195, 'Drive To Buy', 'UK', now()), +(32196, 'Молодой Волкодав', 'RU', now()), +(32197, 'Гамлет XXI век', 'RU', now()), +(32198, '43 номер', 'RU', now()), +(32199, 'Общая терапия', 'RU', now()), +(32200, 'Shaun the Sheep Championsheeps', 'UK', now()), +(32201, 'Andy''s Wild Adventures', 'UK', now()), +(32202, 'OOglies', 'UK', now()), +(32203, 'Engineering Giants', 'UK', now()), +(32204, 'Babies in the Office', 'UK', now()), +(32205, 'Britain''s Secret Treasures', 'UK', now()), +(32363, 'Warehouse 13: Grand Designs Webseries', 'US', now()), +(32207, 'The Angel', 'UK', now()), +(32208, 'The Riots: In Their Own Words', 'UK', now()), +(32209, 'Thelma''s Gypsy Girls', 'UK', now()), +(32210, 'Bates Motel', 'US', now()), +(32211, 'The Spiral', 'eu', now()), +(32212, 'Engelska mord', 'SE', now()), +(32213, 'Hunted', 'UK', now()), +(32214, 'CBBC Olympic Games Challenge', 'UK', now()), +(32215, 'Игра', 'RU', now()), +(32216, 'Driver Dan''s Story Train', 'UK', now()), +(32217, 'The Midnight Beast', 'UK', now()), +(32218, 'Friday Download', 'UK', now()), +(32219, 'Electric City', 'US', now()), +(32220, 'Нанолюбовь', 'RU', now()), +(32221, 'Bounty Wars', 'US', now()), +(32224, 'The Little Vampire', 'CA', now()), +(32225, 'Celebrity Bitchslap News', 'UK', now()), +(32226, 'Dates From Hell', 'US', now()), +(32227, 'Natural Born Sellers (US)', 'US', now()), +(32228, 'Property Wars', 'US', now()), +(32229, 'Auf Brautschau im Ausland', 'DE', now()), +(32230, 'Mankind the Story of All of Us', 'US', now()), +(32231, 'The Shire', 'AU', now()), +(32232, 'A History of Art in Three Colours', 'UK', now()), +(32233, 'Aristocrats', 'UK', now()), +(32234, 'Polyamory: Married and Dating', 'US', now()), +(32235, 'Styled to Rock', 'UK', now()), +(32236, 'Paulilu Mixtape', 'US', now()), +(32237, 'World''s Maddest Job Interview', 'UK', now()), +(32238, 'Баллада о бомбере', 'RU', now()), +(32239, 'Bush Pilots', 'UK', now()), +(32240, 'Crimes That Shook Ireland', 'IE', now()), +(32241, 'TV''s Biggest Blockbusters', 'UK', now()), +(32242, 'Frontline Police', 'UK', now()), +(32243, 'The Flush', 'US', now()), +(32244, 'Live 2 Hunt with Cody Robbins', 'US', now()), +(32245, '10 Things That Make Me Happy', 'US', now()), +(32246, 'Bid America', 'US', now()), +(32247, 'Popped', 'US', now()), +(32248, 'Hole Shot', 'US', now()), +(32249, 'UFC From All Angles', 'US', now()), +(32250, 'Afterlife (US)', 'US', now()), +(32251, 'The Amateur Millionaires Club', 'US', now()), +(32252, 'Good Food America with Nathan Lyon', 'US', now()), +(32253, 'Add a Friend', 'DE', now()), +(32343, 'Project Lotus: The Search for Blush', 'US', now()), +(32255, 'Combat Pawn', 'US', now()), +(32256, 'Bert And Dickie', 'UK', now()), +(32257, 'Britain''s Strangest Pets', 'UK', now()), +(32258, 'Dawson Bros. Funtime', 'UK', now()), +(32259, 'Palace', 'FR', now()), +(32260, 'After Life: The Strange Science of Decay', 'UK', now()), +(32261, 'Burning Love', 'US', now()), +(32262, 'O Tempo e o Vento', 'BR', now()), +(32263, 'Surowi rodzice', 'PL', now()), +(32264, 'Ugotowani', 'PL', now()), +(32265, 'Instynkt', 'PL', now()), +(32266, 'Chichot losu', 'PL', now()), +(32267, 'Must be the music. Tylko muzyka', 'PL', now()), +(32268, 'Got to Dance. Tylko Taniec', 'UK', now()), +(32269, 'Dumb, Drunk And Racist', 'AU', now()), +(32270, 'We love Lloret', 'DE', now()), +(32271, 'Here and There', 'UK', now()), +(32272, 'The Fear (2012)', 'UK', now()), +(32273, 'Complicit', 'UK', now()), +(33457, 'Amazing Race', 'FR', now()), +(32275, 'Run', 'UK', now()), +(32276, 'Utopia', 'UK', now()), +(32277, 'My Mad Fat Diary', 'UK', now()), +(32278, 'Ex-Men', 'US', now()), +(32279, 'Lemon La Vida Loca', 'UK', now()), +(32280, 'Warehouse 13: Of Monsters and Men Webseries', 'US', now()), +(32281, 'Berlin - Tag und Nacht', 'DE', now()), +(32282, 'RTL II News', 'DE', now()), +(32283, 'Lady Boss', 'US', now()), +(32284, 'Tatort Ausland - Mörderische Reise', 'DE', now()), +(32285, 'Shakespeare Uncovered', 'UK', now()), +(32286, 'Reef Doctors', 'AU', now()), +(32287, 'Puberty Blues', 'AU', now()), +(32288, 'Klinikum Berlin Mitte', 'DE', now()), +(32289, 'K-Pop - The Ultimate Audition', 'KR', now()), +(32291, 'To The Beautiful You', 'KR', now()), +(32293, 'mieten, kaufen, wohnen', 'DE', now()), +(32294, 'Elizabeth I', 'UK', now()), +(32295, 'Evolution', 'US', now()), +(32296, 'Great Lake Warriors', 'US', now()), +(32297, 'Comics Britannia', 'UK', now()), +(32298, 'Fair Go', 'NZ', now()), +(32299, 'Splatalot', 'US', now()), +(32300, 'Shnur Around the World', 'RU', now()), +(32301, 'La Cittadella', 'IT', now()), +(32302, 'We Love the Monkees', 'UK', now()), +(32303, 'Simply Italian', 'UK', now()), +(32304, 'Soham: A Parents'' Tale', 'UK', now()), +(32305, 'Lost Children', 'UK', now()), +(32306, 'It Gets Better', 'NL', now()), +(32307, 'Children Of The Dog Star', 'NZ', now()), +(32308, 'Final Fantasy: Legend of the Crystals', 'JP', now()), +(32309, 'For the Win', 'UK', now()), +(32310, 'İşler Güçler', 'TR', now()), +(32311, 'Dr. Drew''s Lifechangers', 'US', now()), +(32312, '"Сборная-2012" с Дмитрием Губерниевым', 'RU', now()), +(32313, 'Daybreak (Webisode)', 'US', now()), +(32314, 'The Midwives', 'UK', now()), +(32315, 'The Dark: Nature''s Nighttime World', 'UK', now()), +(32316, 'Redneck Intervention', 'US', now()), +(32317, 'Chainsaw Gang', 'US', now()), +(32318, 'Guntucky', 'US', now()), +(32319, 'Rock Raiders', 'US', now()), +(32320, 'Hairy Dieters: How to Love Food and Lose Weight', 'UK', now()), +(32321, 'A Year in the Wild', 'UK', now()), +(32322, 'The Briefs', 'UK', now()), +(32323, 'Moyashimon Returns', 'JP', now()), +(32324, '.hack//Quantum', 'JP', now()), +(32325, 'Happily Never After', 'US', now()), +(32326, 'To Amartima tis Mitros mou', 'GR', now()), +(32327, 'Queen Inhyun''s Man', 'KR', now()), +(32328, 'Girl vs Boy', 'NZ', now()), +(32329, 'The Gemini Factor', 'UK', now()), +(32330, 'In The Big House', 'US', now()), +(32331, 'Castaway (AU)', 'AU', now()), +(32332, 'Everybody Dance Now', 'AU', now()), +(32334, 'Çıplak Gerçek', 'TR', now()), +(32335, 'Wake Brothers', 'US', now()), +(32336, 'Code 9', 'US', now()), +(32337, 'Memories (JP)', 'JP', now()), +(32338, 'Tipping the Velvet', 'UK', now()), +(32339, 'Top 25 College Football Games of 2011', 'US', now()), +(32340, 'Prank Patrol (UK)', 'UK', now()), +(32341, 'Tilly and Friends', 'UK', now()), +(32342, 'Rainbow to the Games', 'UK', now()), +(32344, 'Infamous Assassinations', 'US', now()), +(32345, 'Toy Story Toons', 'US', now()), +(32346, 'Homeland: Immigration in America', 'US', now()), +(32347, 'Gangsters: America''s Most Evil', 'US', now()), +(32348, 'You Gotta See This', 'US', now()), +(32349, 'Sports Illustrated', 'US', now()), +(32350, 'The Olympic Zone', 'US', now()), +(32718, 'Zetsuen no Tempest', 'JP', now()), +(32717, 'Haitai Nanafa', 'JP', now()), +(32353, 'American Greed: The Fugitives', 'US', now()), +(32354, 'The UneXplained', 'US', now()), +(32355, 'Ruby Wax''s Mad Confessions', 'UK', now()), +(32356, 'Care Home Kids: Looking for Love', 'UK', now()), +(32357, 'Jon Richardson: A Little Bit OCD', 'UK', now()), +(32435, 'Hacker Time', 'UK', now()), +(32360, 'Britain''s Olympic Torch Story', 'UK', now()), +(32361, 'London 2012: Countdown to the Olympics', 'UK', now()), +(32362, 'Olympics Today', 'UK', now()), +(32364, 'The Rickey Smiley Show', 'US', now()), +(32365, 'Building Big', 'US', now()), +(32366, 'The Greatest Love', 'KR', now()), +(32206, 'BBC Olympic Games 2012', 'UK', now()), +(32367, 'Masterpiece Theatre''s American Collection', 'US', now()), +(32368, 'Hello Ladies', 'US', now()), +(32369, 'The Hit Factory: The Stock Aitken & Waterman Story', 'UK', now()), +(32370, 'Dracula (2013)', 'US', now()), +(32371, 'Bounce', 'US', now()), +(32372, 'The Flowerpot Gang', 'UK', now()), +(32373, 'Marrying Mum and Dad', 'UK', now()), +(32374, 'Bering Sea Gold: Under the Ice', 'US', now()), +(32375, 'Mark Saber', 'UK', now()), +(32376, 'Health Lottery Draws', 'UK', now()), +(32377, 'Exploring China: A Culinary Adventure', 'UK', now()), +(32378, 'The Short-Com Comedy Hour', 'US', now()), +(32379, 'The Choir (2013)', 'US', now()), +(32380, 'Cinammon Girl', 'US', now()), +(32381, 'The World Tomorrow', 'UK', now()), +(32382, 'Frakk, a macskák réme', 'HU', now()), +(32383, 'Kérem a következőt!', 'HU', now()), +(32384, 'A kockásfülű nyúl', 'HU', now()), +(32385, 'Pityke őrmester', 'HU', now()), +(32386, 'Gusztáv', 'HU', now()), +(32387, 'Krisztofóró', 'HU', now()), +(32388, 'Süsü, a sárkány', 'HU', now()), +(32389, 'The Face', 'US', now()), +(32390, 'First Crossings', 'NZ', now()), +(32539, 'Dead Good Job', 'UK', now()), +(32392, 'Elbow Room', 'US', now()), +(32393, 'Going Yard', 'US', now()), +(32394, 'Halország', 'HU', now()), +(32395, 'Olasz meló', 'HU', now()), +(32396, 'Magyarország, szeretlek!', 'HU', now()), +(32397, 'Mindenből egy van', 'HU', now()), +(32398, 'American Factory', 'US', now()), +(32399, 'Los archivos secretos de El Internado', 'ES', now()), +(32400, 'NOS Studio Sportzomer: London Late Night', 'NL', now()), +(32401, 'Tasty Travels with Lynda Bellingham', 'UK', now()), +(32402, 'Omar', 'AE', now()), +(32403, 'El Hombre de tu Vida', 'AR', now()), +(32405, 'The BBC 999 Awards', 'UK', now()), +(32406, 'Ruth Rendell''s Thirteen Steps Down', 'UK', now()), +(32407, 'Tatlı Hayat', 'US', now()), +(32408, 'Peter Andre''s Bad Boyfriend Club', 'UK', now()), +(32409, 'Jennifer in the Saddle', 'UK', now()), +(32410, 'Corrie Goes To Kenya', 'UK', now()), +(32411, 'Gye Baek', 'US', now()), +(32412, 'Lorraine''s Fast, Fresh & Easy Food', 'UK', now()), +(32413, 'Bad Education', 'UK', now()), +(32414, 'Latifah', 'US', now()), +(32415, 'Celebrity Bedlam', 'UK', now()), +(32416, 'Paranormal Paparazzi', 'US', now()), +(32417, 'Don''t Blow the Inheritance', 'UK', now()), +(32418, 'Halloween Crazier', 'US', now()), +(32419, 'Michiko to Hatchin', 'JP', now()), +(32420, '13-sai no hello work', 'JP', now()), +(32421, 'Gruen Sweat', 'AU', now()), +(32422, 'Es kommt noch dicker', 'DE', now()), +(32423, 'Let''s Play - The Binding Of Isaac', 'CA', now()), +(32424, 'Backstrom', 'US', now()), +(32425, 'The Batman Shootings', 'UK', now()), +(32426, 'Unsafe Sex in the City', 'UK', now()), +(32427, 'Stacey Dooley in the USA', 'UK', now()), +(32428, 'Impractical Jokers (2012)', 'UK', now()), +(32429, 'Comedy Marathon', 'UK', now()), +(32460, 'Don''t Tell the Bride (AU)', 'AU', now()), +(32431, 'Kara no Kyoukai', 'JP', now()), +(32432, 'Shop This Room', 'US', now()), +(32433, 'The Woodlies', 'AU', now()), +(32434, 'After the Beep', 'AU', now()), +(32455, 'Against All Odds: In Search Of A Miracle', 'US', now()), +(32456, 'Hitler''s Generals', 'DE', now()), +(32438, 'Fight Night', 'US', now()), +(32439, 'United Bates of America', 'US', now()), +(32440, 'Counting Cars', 'US', now()), +(32441, 'Possum Holler Garage', 'US', now()), +(32442, 'The Last Weekend', 'UK', now()), +(32443, 'Jon Snow''s Paralympic Show', 'UK', now()), +(32444, 'Class of (AU)', 'AU', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(32445, 'Which Doctor', 'UK', now()), +(32446, 'Sing Date', 'UK', now()), +(32447, 'Gates', 'UK', now()), +(32448, 'Citizen Khan', 'UK', now()), +(32449, 'Good Cop', 'UK', now()), +(32450, 'The Revolution Will be Televised', 'UK', now()), +(32451, 'Ripper Street', 'UK', now()), +(32452, 'Future Diary Another:World', 'JP', now()), +(32453, 'Paralympic Games 2012', 'UK', now()), +(32454, 'Nature Boy', 'UK', now()), +(32457, 'Choccywoccydoodah', 'UK', now()), +(32458, 'Kamen Rider Fourze', 'JP', now()), +(32459, 'Underemployed', 'US', now()), +(32461, 'Secret Valley', 'AU', now()), +(32462, 'SimsalaGrimm', 'DE', now()), +(32463, 'Moon Machines', 'US', now()), +(32464, 'bauntu', 'RU', now()), +(32465, 'Lie To Me (Kor)', 'KR', now()), +(32466, 'Harry''s Mountain Heroes', 'UK', now()), +(32467, 'Britain Then and Now', 'UK', now()), +(32468, 'Britain by Night', 'UK', now()), +(32469, 'Cooks to Market', 'UK', now()), +(32470, 'The British', 'UK', now()), +(32471, 'Big Brother: Confidential', 'AU', now()), +(32472, 'Wolfpack of Reseda', 'US', now()), +(32631, 'Oh Oh Europa', 'NL', now()), +(32474, 'What to do When Someone Dies.', 'US', now()), +(32475, 'Secret Interview', 'UK', now()), +(32476, 'John Barrowman''s Dallas', 'UK', now()), +(32477, 'Dig WW2 with Dan Snow', 'UK', now()), +(32478, 'R&B Divas', 'US', now()), +(32479, 'Naruto (DE)', 'JP', now()), +(32480, 'Hardcore Pawn: Chicago', 'US', now()), +(32481, 'Wartime Farm', 'UK', now()), +(32482, 'China On Four Wheels', 'UK', now()), +(32483, 'Hunderby', 'UK', now()), +(32484, 'Fight Factory', 'US', now()), +(32485, 'Le Portrait de Petit Cossette', 'JP', now()), +(32486, 'Murder Princess', 'JP', now()), +(32487, 'Assemble Insert', 'JP', now()), +(32488, 'Abandoned', 'US', now()), +(32489, 'The American Bible Challenge', 'US', now()), +(32490, 'I Found the Gown', 'US', now()), +(32491, 'Yukon Men', 'US', now()), +(32492, 'The Baby Wait', 'US', now()), +(32493, 'Hangout Festival', 'US', now()), +(32494, 'Abby & Brittany', 'US', now()), +(32495, 'Living Abroad', 'US', now()), +(32496, 'The Lizzie Bennet Diaries', 'US', now()), +(32497, 'The Last Leg with Adam Hills', 'UK', now()), +(32498, 'Time Slip Dr. Jin', 'KR', now()), +(32499, 'Growing Children', 'UK', now()), +(32500, 'Download Festival', 'US', now()), +(32501, 'Rockness', 'US', now()), +(32502, 'Nobody''s House', 'UK', now()), +(32503, 'Family Tree', 'US', now()), +(32504, 'Daniel Tiger''s Neighborhood', 'US', now()), +(32505, 'Storm Surfers', 'US', now()), +(32506, 'Le Monde en Gros', 'CA', now()), +(32507, 'Pengene på bordet', 'NO', now()), +(32508, 'Autopsy: Emergency Room', 'UK', now()), +(32509, 'Greed', 'UK', now()), +(32510, 'Soredemo, Ikite Yuku', 'JP', now()), +(32511, 'Faith', 'KR', now()), +(32512, 'Verry Terry', 'UK', now()), +(32513, 'Celebrity Motor Homes', 'US', now()), +(32514, 'Rumiko Takahashi Anthology', 'JP', now()), +(32515, 'Sakura Diaries', 'JP', now()), +(32516, 'Munkaügyek IrReality', 'HU', now()), +(32517, 'Howzat! Kerry Packer''s War', 'AU', now()), +(32518, 'The Residents of Washington Heights', 'US', now()), +(32519, 'Instant Mom', 'US', now()), +(32520, 'Treasures of Ancient Rome', 'UK', now()), +(32521, 'Mafia''s Greatest Hits', 'UK', now()), +(32522, 'Spider-Woman: Agent of S.W.O.R.D.', 'US', now()), +(32523, 'Girlfriend Confidential: LA', 'US', now()), +(32524, 'Breaking Amish', 'US', now()), +(32525, 'Fool Britannia', 'UK', now()), +(32526, 'A Mother''s Son', 'UK', now()), +(32527, 'Paul O''Grady: For the Love of Dogs', 'UK', now()), +(32528, 'Top Dog Model', 'UK', now()), +(32529, 'Mrs Biggs', 'UK', now()), +(32530, 'The Bletchley Circle', 'UK', now()), +(32531, 'Ronna and Beverly', 'UK', now()), +(32532, 'British Cycling: Road to Glory', 'UK', now()), +(32533, 'Wolfblood', 'UK', now()), +(32534, 'Girlfriend Confidential: NY', 'US', now()), +(32535, 'Family Guns', 'US', now()), +(32536, 'Parole Diaries', 'US', now()), +(32537, 'Marco Polo (2007)', 'US', now()), +(32538, 'The Style Awards', 'US', now()), +(32540, 'Vikings (UK)', 'UK', now()), +(32541, '20.00 med Raske Menn', 'NO', now()), +(32542, 'Perfekcyjna Pani Domu', 'PL', now()), +(32543, 'Creative Has Nothing For You', 'US', now()), +(32544, 'Redneck Rehab', 'US', now()), +(32545, 'Alien Deep With Bob Ballard', 'US', now()), +(32546, 'Socio', 'US', now()), +(32547, 'Isle of Wight Festival', 'US', now()), +(32548, 'C4 Comedy Presents: Them from That Thing', 'UK', now()), +(32549, 'Motive', 'CA', now()), +(32550, 'The Jeff Probst Show', 'US', now()), +(32551, 'Eeuwige Roem (BEL)', 'BE', now()), +(32552, 'I''m Not Dead Yet', 'US', now()), +(32553, 'Star Wars: Detours', 'US', now()), +(32554, 'WWE Saturday Morning Slam', 'US', now()), +(32555, 'The Truth About Sex', 'US', now()), +(32556, 'On va s’gêner !', 'FR', now()), +(32557, 'Bad Husbands', 'US', now()), +(32558, 'American Triumvirate', 'US', now()), +(32559, '20 Under 20: Transforming Tomorrow', 'US', now()), +(32560, 'Top Secret Weapons Revealed', 'US', now()), +(32561, 'MLB Caught Looking', 'US', now()), +(32562, 'Pac-12 Classics', 'US', now()), +(32563, 'The Boss is Back', 'UK', now()), +(32564, 'Auckland Daze', 'NZ', now()), +(32565, 'The Adventures of Chuck & Friends', 'US', now()), +(32566, 'Time Machine Chefs', 'US', now()), +(32567, 'My MLB Life', 'US', now()), +(32568, '10 Kids 2 Dads', 'US', now()), +(32569, 'Law on the Border', 'US', now()), +(32570, 'Great American Heroes', 'US', now()), +(32571, 'Ultimate Rush', 'US', now()), +(32572, 'Vans Pass the Bucket', 'US', now()), +(32573, 'Break ''N Reality', 'US', now()), +(32574, 'Surf Life', 'US', now()), +(32575, 'MAX Quickies', 'US', now()), +(32576, 'UNITE', 'US', now()), +(32577, 'Buying and Selling', 'US', now()), +(32578, 'Deadline 14/10', 'BE', now()), +(32579, 'Salamander', 'BE', now()), +(32580, 'Voor Eens & Voor Altijd', 'BE', now()), +(32581, 'De school van Lukaku', 'BE', now()), +(32582, 'Meneer Doktoor', 'BE', now()), +(32583, 'Loeki de leeuw', 'NL', now()), +(32584, 'First Take: College Football', 'US', now()), +(32585, 'College Football Game Break', 'US', now()), +(32586, 'Pac-12 Football in 60', 'US', now()), +(32587, 'Burger Land', 'US', now()), +(32588, 'Eye on the NFL', 'US', now()), +(32589, 'Pyramid (2012)', 'US', now()), +(32590, 'Joy Behar: Say Anything!', 'US', now()), +(32591, 'Highway Thru Hell', 'CA', now()), +(32592, 'Chicago Trauma', 'US', now()), +(32593, 'Hawaii Air Rescue', 'US', now()), +(32594, 'Texas Car Wars', 'US', now()), +(32595, 'Outlaw Country', 'US', now()), +(32596, 'Cheer Perfection', 'US', now()), +(32597, 'Nonkel pater', 'BE', now()), +(32598, 'Freddie Mercury: Het laatste podium', 'BE', now()), +(32599, 'De Rechtbank', 'BE', now()), +(32600, 'Weg naar Compostela', 'BE', now()), +(32601, 'Jij was toch dood, Brood?', 'BE', now()), +(32602, 'Johan Tahon, een gebed in gips', 'BE', now()), +(32603, 'Paper trails', 'BE', now()), +(32604, 'De zussen van mijn dochter', 'BE', now()), +(32605, 'Tijl van Limburg', 'BE', now()), +(32606, 'In Godsnaam', 'BE', now()), +(32607, 'In de keuken', 'BE', now()), +(32608, 'De slimste mens ter wereld', 'BE', now()), +(32609, 'Leuven hulp', 'BE', now()), +(32610, 'Een simpel plan', 'BE', now()), +(32611, 'Live in Congo', 'BE', now()), +(32612, 'Sam Dillemans, de waanzin van het detail', 'BE', now()), +(32613, 'Loft', 'BE', now()), +(32614, 'I''m Spazticus', 'UK', now()), +(32615, 'Ladies First', 'BE', now()), +(32616, 'Geel', 'BE', now()), +(32617, '0032', 'BE', now()), +(32618, 'De zaak Jo Lernout', 'BE', now()), +(32619, 'Шнур вокруг света', 'wd', now()), +(32620, 'George, being Bush', 'BE', now()), +(32621, 'Het proces', 'BE', now()), +(32622, 'De believers', 'BE', now()), +(32623, 'Fritt Fall', 'NO', now()), +(32624, 'In het hol van de leeuw', 'BE', now()), +(32625, 'Ibiza 1-2-3 Rocktonic Festival', 'US', now()), +(32626, 'The Haunted Hathaways', 'US', now()), +(32627, 'The Thundermans', 'US', now()), +(32632, 'HOBOSTI 2x2', 'RU', now()), +(32629, 'Lekarze', 'PL', now()), +(32630, 'Comedians in Cars Getting Coffee', 'US', now()), +(32633, 'The Scapegoat', 'UK', now()), +(32634, '999: What''s Your Emergency?', 'UK', now()), +(32635, 'Leaving (UK)', 'UK', now()), +(32636, 'TV Guide Magazine''s" Top 25 Best "Oprah Show" Moments', 'US', now()), +(32637, 'Man, Fire, Food', 'US', now()), +(32638, 'Bling It On', 'US', now()), +(32639, 'Secret Princes', 'US', now()), +(32640, 'Best of the Worst', 'UK', now()), +(32641, 'World Cup 2014', 'UK', now()), +(32642, 'Island Hospital', 'UK', now()), +(32643, 'Food Unwrapped', 'UK', now()), +(32644, 'Double Your House for Half the Money', 'UK', now()), +(32645, 'Gordon Ramsay''s Ultimate Cookery Course', 'UK', now()), +(32646, 'The Audience', 'UK', now()), +(32647, 'Cover Me Norge', 'NL', now()), +(32648, 'Bomb Hunters', 'CA', now()), +(32649, 'Terug naar Siberië', 'BE', now()), +(32650, 'Nooitgedacht', 'BE', now()), +(32651, 'De Slimste Mens (2012)', 'NL', now()), +(32652, 'Alles uit de kast', 'BE', now()), +(32653, 'De moeder van mijn dochter', 'BE', now()), +(32654, 'Het Rob-rapport', 'BE', now()), +(32655, 'Dokter Tinus', 'NL', now()), +(32656, 'S.H.I.E.L.D.', 'US', now()), +(32657, 'Tourettes: Let Me Entertain You', 'UK', now()), +(32658, 'Last Tango In Halifax', 'UK', now()), +(32659, 'Dog Squad', 'NZ', now()), +(32660, 'Paddy and Sally''s Excellent Gypsy Adventure', 'UK', now()), +(32661, 'Hooligan''s Island', 'UK', now()), +(32662, 'Warplane', 'US', now()), +(32663, 'Be Your Own Boss', 'UK', now()), +(32664, 'Commander in Heels', 'US', now()), +(32665, 'Karl Johan', 'NO', now()), +(32666, '6 кадров', 'RU', now()), +(32667, 'De Commissie Wyndaele', 'BE', now()), +(32668, 'De mol', 'BE', now()), +(32669, 'Bal mondial', 'BE', now()), +(32670, 'De blijde boodschap', 'BE', now()), +(32671, 'Chef Race: UK vs U.S.', 'US', now()), +(32672, 'Siła wyższa', 'PL', now()), +(32673, 'MasterChef', 'PL', now()), +(32674, 'History of the Salaryman', 'KR', now()), +(32675, 'Paradoks', 'PL', now()), +(32676, 'Przyjaciółki', 'PL', now()), +(32677, 'Bitwa na głosy', 'PL', now()), +(32678, 'Space 2099', 'UK', now()), +(32679, 'Target (NZ)', 'NZ', now()), +(32680, 'Steve Harvey', 'US', now()), +(32681, 'Dirty Little Lies', 'US', now()), +(32682, 'Legends from HERE', 'US', now()), +(32683, 'Doll House', 'US', now()), +(32684, 'I Was Impaled', 'US', now()), +(32685, 'Renovation Rebels', 'US', now()), +(32686, 'Broadway or Bust', 'US', now()), +(32687, 'N.F.L. Monday QB', 'US', now()), +(32688, 'Mike & Mike''s Best of the NFL', 'US', now()), +(32689, 'Sakura-sou no Petto na Kanojo', 'JP', now()), +(32690, 'Oniichan Dakedo Ai Sae Areba Kankeinai Yo Ne!', 'JP', now()), +(32691, 'Las Señoritas Gutierrez', 'CO', now()), +(32692, 'Tonari no Kaibutsu-kun', 'JP', now()), +(32693, 'GMTV with Lorraine', 'UK', now()), +(32695, 'Deutsches Fleisch', 'DE', now()), +(32696, 'Clan', 'BE', now()), +(32697, 'Tattoo Rescue', 'US', now()), +(32698, 'Destination Fear', 'CA', now()), +(32699, 'iHeartRadio Music Festival', 'US', now()), +(32700, 'Don''t Sleep', 'US', now()), +(32701, 'Chasing The Dream', 'US', now()), +(32702, 'WWE Main Event', 'US', now()), +(32703, 'See Dad Run', 'US', now()), +(32704, 'Race For Colour', 'UK', now()), +(32705, 'Keyshia & Daniel: Family First', 'US', now()), +(32706, 'My Shopping Addiction', 'US', now()), +(32707, 'Mash Up', 'US', now()), +(32708, 'Headache', 'US', now()), +(32709, 'Celebrity Crime Files', 'US', now()), +(32710, 'The Brokaw Files', 'US', now()), +(32711, 'RuPaul''s All Stars Drag Race: Untucked', 'US', now()), +(32712, 'Dangerous Grounds', 'US', now()), +(32713, 'Catfish: The TV Show', 'US', now()), +(32714, 'Apollo Live', 'US', now()), +(32715, 'Miss You Much', 'US', now()), +(32716, 'De vijfhoek', 'BE', now()), +(32722, 'Crossing Lines', 'FR', now()), +(32723, 'The White Queen', 'US', now()), +(32724, 'Da Vinci''s Demons', 'US', now()), +(32725, 'Black Sails', 'US', now()), +(32726, 'Masters of Money', 'UK', now()), +(32727, 'Saturday College Football', 'US', now()), +(32728, 'Beverly Hills Cop', 'US', now()), +(32729, 'Baggage (UK)', 'UK', now()), +(32730, 'The People''s Rainforest', 'UK', now()), +(32731, 'Unit Luchtvaartpolitie', 'NL', now()), +(32732, 'Downtown Dragons', 'US', now()), +(32733, 'Comedy World Cup', 'UK', now()), +(32734, 'Love and Marriage: A 20th Century Romance', 'UK', now()), +(32735, 'Model Employee', 'US', now()), +(32736, 'Andrew Marr''s History Of The World', 'UK', now()), +(32737, 'Servants - The True Story Of Life Below Stairs', 'UK', now()), +(32738, 'Antiques to the Rescue', 'UK', now()), +(32739, 'Heroes of the Skies', 'UK', now()), +(32740, 'Making Faces (2012)', 'UK', now()), +(32741, 'Being: Liverpool', 'US', now()), +(32742, 'Equals three', 'US', now()), +(32743, 'Ma Boy', 'KR', now()), +(32744, 'Arang and the Magistrate', 'KR', now()), +(32745, 'New Tales of Gisaeng', 'KR', now()), +(32746, 'Room At The Top', 'UK', now()), +(32747, 'Resident Evil: First Hour', 'US', now()), +(32748, 'Killer K', 'KR', now()), +(32749, 'Soul', 'KR', now()), +(32750, 'Freeze', 'KR', now()), +(32751, 'The Hero (2013)', 'US', now()), +(32752, 'Hacktion Újratöltve', 'HU', now()), +(32753, 'Yo amo a Paquita Gallego', 'CO', now()), +(32754, 'Wizards vs Aliens', 'UK', now()), +(32755, 'A Football Life', 'US', now()), +(32756, 'Dream of 400 Years', 'KR', now()), +(32757, 'The Princess'' Man', 'KR', now()), +(32758, 'The Moon That Embraces the Sun', 'KR', now()), +(32759, 'Amazon', 'US', now()), +(32760, 'Hilary Devey''s Women At The Top', 'UK', now()), +(32761, 'Trailer Trash', 'US', now()), +(32762, 'Tickety Toc', 'KR', now()), +(32763, 'Dash! Yonkuro', 'JP', now()), +(32764, 'Mighty Thor', 'CA', now()), +(32765, 'Land of the Mammoth', 'US', now()), +(32766, 'Folkeopplysningen', 'NO', now()), +(32767, 'Россия. Полное затмение', 'RU', now()), +(32768, 'Концлагеря. Дорога в ад', 'RU', now()), +(32769, 'Shinsekai Yori', 'JP', now()), +(32770, 'Code: Breaker', 'JP', now()), +(32771, 'Angel''s Friends', 'IT', now()), +(32772, 'Intresseklubben', 'SE', now()), +(32773, 'Ricos y famosos', 'AR', now()), +(32774, 'the King 2 Hearts', 'KR', now()), +(32775, 'Trisha Goddard (2012)', 'US', now()), +(32776, 'Bloopers!', 'US', now()), +(32777, 'Dish Nation', 'US', now()), +(32778, 'History Exposed', 'US', now()), +(32779, 'Heartstrings (You''ve Fallen for Me)', 'KR', now()), +(32780, 'Edge of America', 'US', now()), +(32781, 'Feed the Beast', 'US', now()), +(32782, 'Kevin Michael Connolly Project', 'US', now()), +(32783, 'Asbjørn Brekke Show', 'NO', now()), +(32784, 'Çalikusu', 'TR', now()), +(32785, 'Girlfri3nds', 'UK', now()), +(32786, 'Prank My Mom', 'US', now()), +(32787, 'Rich Man, Poor Woman', 'JP', now()), +(32788, 'ATARU', 'JP', now()), +(32789, 'Naniwa Shonen Tanteidan', 'JP', now()), +(32790, 'Sprout', 'JP', now()), +(32794, 'Classic Car Rescue', 'UK', now()), +(32792, 'Isabel', 'ES', now()), +(32793, 'K', 'JP', now()), +(32795, 'Nigellissima', 'UK', now()), +(32797, 'Homefront (UK)', 'UK', now()), +(32798, 'The Martin Lewis Money Show', 'UK', now()), +(32799, 'Kevin McCloud''s Man Made Home', 'UK', now()), +(32800, 'Secret Brazil', 'US', now()), +(32801, 'House Hunters Renovation', 'US', now()), +(32802, 'Coffee House', 'KR', now()), +(32803, 'Letzte Spur Berlin', 'DE', now()), +(32804, 'Elisa di Rivombrosa', 'IT', now()), +(32805, 'Den Hemmelige Millionæren', 'NO', now()), +(32806, 'Canadian Country Music Association Awards', 'CA', now()), +(32807, 'Jo', 'FR', now()), +(32808, 'Reply 1997', 'KR', now()), +(32809, 'Football Rewind', 'US', now()), +(32810, 'Pro Football Talk', 'US', now()), +(32811, 'Cuckoo', 'UK', now()), +(32812, 'How We Won the War', 'UK', now()), +(32813, 'Protect the Boss', 'KR', now()), +(32814, 'Pac-12 Playbook', 'US', now()), +(32815, 'America ReFramed', 'US', now()), +(32816, 'Top 100 Bangin'' Bodies', 'US', now()), +(32817, 'State of Style', 'US', now()), +(32818, 'Ultimate Answers', 'US', now()), +(32819, 'Criminal Defense', 'US', now()), +(32820, 'YTF', 'US', now()), +(32821, 'Danny from LA', 'US', now()), +(32822, 'That''s So ''80s', 'US', now()), +(32823, 'Curvy Girls', 'US', now()), +(32824, 'How Booze Built America', 'US', now()), +(32825, 'КиноFail', 'RU', now()), +(32826, 'Operation Ouch', 'UK', now()), +(32827, 'Get Well Soon (UK)', 'UK', now()), +(32828, 'Answer ~ Keishichou Kenshou Sousakan', 'JP', now()), +(32829, 'Steven Universe', 'US', now()), +(32830, 'Uncle Grandpa', 'US', now()), +(32831, 'Anonymous (US)', 'US', now()), +(32832, 'Love Me Do - 1962', 'UK', now()), +(32833, 'Kompani Karlsen', 'NO', now()), +(32834, 'Yo soy Betty, la fea (Ugly Betty)', 'CO', now()), +(32835, 'Chuno', 'KR', now()), +(32836, 'Yi San', 'KR', now()), +(32837, 'Chrissy & Mr. Jones', 'US', now()), +(32838, 'The Village', 'UK', now()), +(32839, 'Flea Market Flip', 'US', now()), +(32840, 'All-Star Comedy Roundtable', 'US', now()), +(32841, 'Alpha Dogs', 'US', now()), +(32842, 'Ian Hislop''s Stiff Upper Lip - An Emotional History Of Britain', 'UK', now()), +(32843, 'The Innocent Man', 'KR', now()), +(32845, 'Animal Intervention', 'US', now()), +(32846, 'Chuck''s Eat the Street', 'US', now()), +(32847, 'Abby''s Ultimate Dance Competition', 'US', now()), +(32848, 'Professional Grade', 'US', now()), +(32849, 'Forecast: Disaster', 'US', now()), +(32850, 'Striker', 'UK', now()), +(32851, 'Family Under Construction', 'US', now()), +(32852, 'To Catch a Smuggler', 'US', now()), +(32853, 'Nor'' Easter Men', 'US', now()), +(32854, 'Plane Xtreme', 'US', now()), +(32855, 'The Men Who Built America', 'US', now()), +(32856, 'The Houstons: On Our Own', 'US', now()), +(32857, 'My Life is a Lifetime Movie', 'US', now()), +(32858, 'Sandra Lee''s Taverns, Lounges and Clubs', 'US', now()), +(32859, 'Reel Life', 'US', now()), +(32860, 'Outback Hunters', 'US', now()), +(32861, 'Copeland Prep', 'US', now()), +(32862, 'My Grandmother''s Ravioli', 'US', now()), +(32863, 'Pretty Dirty Secrets', 'US', now()), +(32969, 'Goreszti sledi', 'BG', now()), +(32865, 'Trophy Wife', 'US', now()), +(32866, 'Frontier Earth with Dave Salmoni', 'US', now()), +(32867, 'American Giving Awards', 'US', now()), +(32868, 'Safe at Home (2013)', 'US', now()), +(32869, 'The Woman Who Swims with Killer Whales', 'US', now()), +(32870, 'La mujer en el espejo', 'CO', now()), +(32871, 'Amanda O', 'AR', now()), +(32872, 'Save My Son', 'US', now()), +(32873, 'Stjernekamp', 'NO', now()), +(32874, 'Over the Rainbow (2012)', 'CA', now()), +(32876, 'GTO: Great Teacher Onizuka (2012)', 'JP', now()), +(32877, 'Hotel GB', 'UK', now()), +(32878, 'Gran', 'UK', now()), +(32879, 'Fumô Chitai', 'JP', now()), +(32880, 'The Golden Girls NL', 'NL', now()), +(32881, 'Предатель', 'RU', now()), +(32882, 'Апостол', 'RU', now()), +(32883, 'Курсанты', 'RU', now()), +(32884, 'Звездочет', 'RU', now()), +(32885, 'pubers van streek', 'BE', now()), +(32886, 'De slimste mens ter wereld (2012)', 'BE', now()), +(32887, 'Witches of East End', 'US', now()), +(32888, 'Health Before the NHS', 'UK', now()), +(32889, 'Built In Britain', 'UK', now()), +(32890, 'I Can Cook - On The Go', 'UK', now()), +(32891, 'Welcome to India', 'UK', now()), +(32892, 'Prom Queens', 'US', now()), +(32893, 'Haziran Gecesi', 'TR', now()), +(32894, 'Manneke Paul', 'BE', now()), +(32895, 'Jonge Zwanen', 'BE', now()), +(32896, 'In de mix', 'BE', now()), +(32897, 'Belgium''s Got Talent', 'BE', now()), +(32898, 'Pac-12 College Football', 'US', now()), +(32900, 'The SEC on CBS', 'US', now()), +(32901, 'Shamanic Princess', 'JP', now()), +(32902, 'На ножах', 'UA', now()), +(32903, 'Location Location Location Australia', 'AU', now()), +(32904, 'Suki-tte Ii na yo.', 'JP', now()), +(32905, 'Sacred Music', 'UK', now()), +(32906, 'Tales From Pleasure Beach', 'UK', now()), +(32907, 'Live From Our Living Room', 'US', now()), +(32908, 'Lead Off', 'US', now()), +(32909, 'Btooom!', 'JP', now()), +(32910, 'Mario Lopez: One On One', 'US', now()), +(32911, 'MovieStyle with Michael O''Connor', 'US', now()), +(32912, 'The Aspen Institute Presents', 'US', now()), +(32913, 'Nancy Grace Mysteries', 'US', now()), +(32914, 'Pride & Groom', 'US', now()), +(32915, 'Farm Kings', 'US', now()), +(32916, 'Half the Sky', 'US', now()), +(32917, 'NickMom Night Out', 'US', now()), +(32918, 'MFF: Mom Friends Forever', 'US', now()), +(32919, 'Parental Discretion with Stefanie Wilder-Taylor', 'US', now()), +(32920, 'What Was Carol Brady Thinking?', 'US', now()), +(32921, 'Travel Like a...', 'US', now()), +(32922, 'Oprah: Where Are They Now?', 'US', now()), +(32923, 'WHAT!? Logo Documentaries', 'US', now()), +(34049, 'Ke$ha: I Am Who I Am', 'UK', now()), +(32925, 'Psycho-Pass', 'JP', now()), +(32926, 'Kami-sama Hajimemashita', 'JP', now()), +(32927, 'Doc meets Dorf - Ausgerechnet Kanada', 'DE', now()), +(32928, 'On The Spot: Harcosok', 'HU', now()), +(32929, 'Seal Morning', 'UK', now()), +(32930, 'Unsealed: Alien Files', 'US', now()), +(32931, 'Unsealed: Conspiracy Files', 'US', now()), +(32932, 'Black OPS', 'US', now()), +(32933, 'Brigada (law of the Lawless)', 'RU', now()), +(32934, 'Köln 50667', 'DE', now()), +(32935, 'Johnny Cash: Song by Song', 'US', now()), +(32936, 'Cursed', 'US', now()), +(33063, 'Karadayı', 'TR', now()), +(32938, 'Corfu: A Tale of Two Islands', 'UK', now()), +(32939, 'Surveillance Oz', 'AU', now()), +(32940, 'Misja Afganistan', 'PL', now()), +(32941, 'Czterej pancerni i pies', 'PL', now()), +(32942, 'The Real Sherlock Holmes', 'CA', now()), +(32943, '07 zgłoś się', 'PL', now()), +(32944, 'Dog', 'US', now()), +(32945, 'Paul Martin''s Handmade Revolution', 'UK', now()), +(32946, 'Nigel Slater''s Dish of the Day', 'UK', now()), +(32947, 'Me and Mrs. Jones', 'UK', now()), +(32948, 'Inside (AU)', 'AU', now()), +(32949, 'Show Me Your Wardrobe', 'UK', now()), +(32950, 'Orange is the New Black', 'US', now()), +(32951, 'Lines gode hjelpere', 'NO', now()), +(32952, 'International Isle of Man TT Race', 'US', now()), +(32953, 'Polskie drogi', 'PL', now()), +(32954, 'Popielec', 'PL', now()), +(32955, 'NumbNuts', 'US', now()), +(32956, 'Kasia i Tomek', 'PL', now()), +(32957, 'Thursday Night Kickoff', 'US', now()), +(32958, 'Trzecia granica', 'PL', now()), +(32959, 'Girls und Panzer', 'JP', now()), +(32960, 'Magi: The Labyrinth of Magic', 'JP', now()), +(32961, 'Busou Shinki', 'JP', now()), +(32962, 'Ixion Saga DT', 'JP', now()), +(33444, 'Goodnight Britain', 'UK', now()), +(32964, 'Blood Lad', 'JP', now()), +(32965, 'Kirstie''s New Show', 'US', now()), +(32966, 'Kariera Nikodema Dyzmy', 'PL', now()), +(32967, 'Das unsichtbare Visier', 'DE', now()), +(32968, 'Janosik', 'PL', now()), +(32970, 'Карпов', 'RU', now()), +(32971, 'Hillbilly Blood', 'US', now()), +(32972, 'Jewish Mum of the Year', 'UK', now()), +(32973, 'Życie na gorąco', 'PL', now()), +(32974, 'Dom', 'PL', now()), +(32975, 'Wojna domowa', 'PL', now()), +(32976, 'Znaki szczególne', 'PL', now()), +(32977, 'Stawka większa niż życie', 'PL', now()), +(32978, 'Project Runway Sverige', 'SE', now()), +(32979, 'Party Girls', 'US', now()), +(32980, 'You Live in What?', 'US', now()), +(32981, 'Halloween Block Party', 'US', now()), +(32982, 'Holiday Block Party', 'US', now()), +(32984, 'Endless Yard Sale', 'US', now()), +(32985, 'The Swamp', 'US', now()), +(32986, 'Aotearoa Social Club', 'NZ', now()), +(32987, 'Król przedmieścia', 'PL', now()), +(32989, 'Crimen', 'PL', now()), +(32990, 'Zenmonogatari', 'JP', now()), +(32991, 'La Voz', 'ES', now()), +(32992, 'The Voice Brasil', 'BR', now()), +(32993, 'The Shores', 'ZA', now()), +(32994, 'Teen Mom 3', 'US', now()), +(32995, 'Body Invaders', 'UK', now()), +(32996, 'Велика Різниця по-українськи', 'UA', now()), +(32997, 'Пока цветет папоротник', 'RU', now()), +(32998, 'Twitota', 'RU', now()), +(32999, 'Spuren des Bösen', 'AT', now()), +(33000, 'Don''t Sit On The Front Row', 'UK', now()), +(33001, 'Commander in Chief: Inside the Oval Office', 'US', now()), +(33002, 'Life: Reborn', 'US', now()), +(33003, 'Spy vs. Spy', 'US', now()), +(33004, 'Ultimate Warfare', 'US', now()), +(33005, 'Top Tens', 'US', now()), +(33006, 'Combat Countdown', 'US', now()), +(33007, 'Buying Alaska', 'US', now()), +(33035, 'Emmerdale At 40', 'UK', now()), +(33009, 'Witness', 'US', now()), +(33010, 'Stranger Than Nature', 'US', now()), +(33011, 'LOLwork', 'US', now()), +(33012, 'Cheese Slices', 'AU', now()), +(33013, 'Crimi Clowns', 'BE', now()), +(33014, 'Epic', 'US', now()), +(33015, 'Switch (UK)', 'UK', now()), +(33016, 'Чемпионки', 'RU', now()), +(33017, '13 Witches', 'US', now()), +(33018, 'Страна 03', 'RU', now()), +(33019, 'Я отменяю смерть', 'RU', now()), +(33020, 'Road Show', 'US', now()), +(33021, 'The Centurion', 'US', now()), +(33022, 'MTV Europe Music Awards', 'US', now()), +(33023, 'Dakota', 'US', now()), +(33024, 'Hell on the Highway', 'US', now()), +(33025, 'Unlikely Animal Friends', 'US', now()), +(33026, 'Tu cara me suena', 'ES', now()), +(33027, 'Hostages', 'US', now()), +(33028, 'Liz & Dick', 'US', now()), +(33029, 'Murder Bitches', 'US', now()), +(33030, 'Adultish', 'US', now()), +(33031, 'Bonnie & Clyde', 'US', now()), +(33032, 'About A Boy', 'US', now()), +(33033, 'Eleventh Commandment', 'US', now()), +(33034, 'Чкалов', 'RU', now()), +(33036, 'Auf Herz und Nieren', 'DE', now()), +(33037, 'Soratobu Taiya', 'JP', now()), +(33038, 'Pyros', 'CA', now()), +(33039, 'Tulipan', 'PL', now()), +(33040, 'Claimed and Shamed', 'UK', now()), +(33041, 'Little Shop of Gypsies', 'US', now()), +(33042, 'Taming of the Shrew', 'US', now()), +(33043, 'Voces', 'US', now()), +(33044, 'Broadway: The American Musical', 'US', now()), +(33045, 'The Dust Bowl', 'US', now()), +(33046, 'Access 360° World Heritage', 'US', now()), +(33047, 'American Chainsaw', 'US', now()), +(33048, 'Fat Girl Revenge', 'US', now()), +(33049, 'Funny Girls', 'US', now()), +(33050, 'Shotgun Weddings', 'US', now()), +(33051, 'Heart and Soul (US)', 'US', now()), +(33052, 'Gorgeous & Guilty!', 'US', now()), +(33053, 'Sex Traffic', 'UK', now()), +(33054, 'Der Cop und der Snob', 'DE', now()), +(33055, 'Prehistoric Autopsy', 'UK', now()), +(33056, 'Something Special – We’re All Friends', 'UK', now()), +(33057, 'Brazil With Michael Palin', 'UK', now()), +(33058, 'Hebburn', 'UK', now()), +(33059, 'Tales From the Wild Wood', 'UK', now()), +(33060, 'Brynne: My Bedazzled Life', 'AU', now()), +(33061, 'The Unbelievable Truth', 'AU', now()), +(33062, 'Salvados', 'ES', now()), +(33064, 'I Guess I Do', 'US', now()), +(33065, 'Jim Rome on SHOWTIME', 'US', now()), +(33066, 'Rome (2012)', 'US', now()), +(33067, 'Raised Wild', 'US', now()), +(33068, 'Reef Wranglers', 'US', now()), +(33069, '72 Hours', 'US', now()), +(33070, 'Boston Blue', 'US', now()), +(33071, 'American Wifestyles', 'US', now()), +(33072, 'Aptitude Test', 'US', now()), +(33073, 'Auction Queen', 'US', now()), +(33074, 'Making House', 'CA', now()), +(33075, 'Homewreckers', 'CA', now()), +(33076, 'Birth Moms', 'US', now()), +(33077, 'Bikini Basketball League', 'US', now()), +(33078, 'Jersey Brides', 'US', now()), +(33079, 'Maids of Dishonor', 'US', now()), +(33080, 'Ultimate Dress Quest', 'US', now()), +(33081, 'The Ben Show', 'US', now()), +(33082, 'Beverly Hills Pawn', 'US', now()), +(33083, 'Biggest and Baddest', 'CA', now()), +(33084, 'Blind Dinner Party', 'US', now()), +(33085, 'Car Lot Rescue', 'US', now()), +(33086, 'Cedar Cove', 'US', now()), +(33087, 'Zach Stone Is Gonna Be Famous', 'US', now()), +(33088, 'The Winner Is', 'US', now()), +(33089, 'Wild Things With Dominic Monaghan', 'UK', now()), +(33090, 'Wild Hawaii', 'US', now()), +(34309, 'BBC News', 'UK', now()), +(33092, 'Wild Arabia', 'UK', now()), +(33093, 'Harjakaisen & Piisisen talkoot', 'FI', now()), +(33094, 'Die Geissens - Eine schrecklich glamouröse Familie', 'DE', now()), +(33095, 'Midnighters', 'US', now()), +(33096, 'Bad Teacher', 'US', now()), +(33097, 'Holmes Makes it Right', 'CA', now()), +(33098, 'Who Gets the Last Laugh?', 'US', now()), +(33099, 'Wendell And Vinnie', 'US', now()), +(33100, 'Vice', 'US', now()), +(33101, 'Urban Jungle Man', 'US', now()), +(33102, 'Urban Tarzan', 'US', now()), +(33103, 'Unresolved: Celebrity Cases', 'US', now()), +(33104, 'Undercover Critics', 'US', now()), +(33105, 'The Makeover 2013', 'US', now()), +(33106, 'Большая разница по-украински', 'UA', now()), +(33107, 'Die Deutschen', 'DE', now()), +(33108, 'Golos (The Voice of Russia)', 'RU', now()), +(33109, 'Then Came Elvis', 'US', now()), +(33110, 'Roche & Böhmermann', 'DE', now()), +(33111, 'Treehouse Men', 'US', now()), +(33112, 'Top Hooker', 'US', now()), +(33113, 'Sugar Dome', 'US', now()), +(33114, 'The Spies Of Warsaw', 'UK', now()), +(33115, 'Småbruket', 'NO', now()), +(33116, 'Hela Sverige bakar', 'SE', now()), +(33117, 'Black Ink Crew', 'US', now()), +(33118, 'Mark Lawson talks to...', 'UK', now()), +(33119, 'Horror Europa With Mark Gatiss', 'UK', now()), +(33120, 'Secrets of ...', 'US', now()), +(33121, 'Our Longest Drive', 'US', now()), +(33122, 'neoParadise', 'DE', now()), +(33123, 'World''s Weirdest (2013)', 'US', now()), +(33124, 'Six Little McGhees', 'US', now()), +(33125, 'Second Generation Wayans', 'US', now()), +(33126, 'Richard E Grant''s Hotel Secrets', 'UK', now()), +(33127, 'Broad City', 'US', now()), +(33128, 'May Queen', 'KR', now()), +(33129, 'Five Fingers (2012)', 'KR', now()), +(33130, 'Popland!', 'CO', now()), +(33131, 'JoJo''s Bizarre Adventure (2012)', 'JP', now()), +(33132, 'Joe, Joe, & Jane', 'US', now()), +(33133, 'Savaged', 'US', now()), +(33134, 'Cocaine Wars', 'US', now()), +(33135, 'Surprise, Surprise (2012)', 'UK', now()), +(33136, 'Женить Казанову', 'UA', now()), +(33137, 'Breaking Magic', 'US', now()), +(33138, 'Hablemos Claro con Cuauhtémoc', 'US', now()), +(33139, 'Home & Family', 'US', now()), +(33140, 'Home Made In America With Sunny Anderson', 'US', now()), +(33141, 'Larrymania', 'US', now()), +(33142, 'Little People Big World: Wedding Farm', 'US', now()), +(33143, 'Lords of War', 'US', now()), +(33144, 'Love You, Mean It With Whitney Cummings', 'US', now()), +(33145, 'Marie (2012)', 'US', now()), +(33146, 'How Britain Worked', 'UK', now()), +(33147, 'Jamie''s 15 Minute Meals', 'UK', now()), +(33148, 'George Clarke''s Amazing Spaces', 'UK', now()), +(33149, 'Derren Brown: Apocalypse', 'UK', now()), +(33150, 'Rolf''s Animal Clinic', 'UK', now()), +(33151, 'Hellfjord', 'NO', now()), +(33152, 'Evelyn Hamanns Geschichten aus dem Leben', 'DE', now()), +(33153, 'Adelheid und ihre Mörder', 'DE', now()), +(33154, 'Married to the Army: Alaska', 'US', now()), +(33155, 'Martha Stewart’s Cooking School', 'US', now()), +(33156, 'Oliver Stone''s Secret History of America', 'US', now()), +(33157, 'Sandra’s Restaurant Remakes', 'US', now()), +(33158, 'The Last Ship', 'US', now()), +(33159, 'Yo Me Llamo', 'US', now()), +(33160, 'America Now', 'US', now()), +(33161, 'The Strange Calls', 'AU', now()), +(33162, 'Strange Calls', 'US', now()), +(33163, 'Operation Iceberg', 'UK', now()), +(33164, 'How Safe Are Britain''s Roads?', 'UK', now()), +(33165, 'Fama, ¡a bailar!', 'ES', now()), +(33166, 'Polski Turniej Wypieków', 'PL', now()), +(33167, 'Beauty and the Beast (2013)', 'US', now()), +(33168, 'Billion Dollar Block', 'US', now()), +(33169, 'ITV News Meridian', 'UK', now()), +(33170, 'ITV News West Country', 'UK', now()), +(33171, 'Принцесса и нищенка', 'RU', now()), +(33172, 'I''m Married to a...', 'US', now()), +(33173, 'Hyvät ja huonot uutiset', 'FI', now()), +(33174, 'Along for the Bride', 'US', now()), +(33175, 'Mockingbird Lane', 'US', now()), +(33176, 'The Mind of a Chef', 'US', now()), +(33177, 'Marrying The Game', 'US', now()), +(33178, 'Dr. Drew On Call', 'US', now()), +(33179, 'The Bridge (US)', 'US', now()), +(33180, 'Opposite Worlds', 'US', now()), +(33181, 'Get Out Alive (2013)', 'US', now()), +(33182, 'Starter Wives', 'US', now()), +(33183, 'John Fugelsang: So That Happened', 'US', now()), +(33184, 'Sabrina: Secrets of a Teenage Witch', 'US', now()), +(33185, 'Totally T-Boz', 'US', now()), +(33186, '#Resistance', 'US', now()), +(33187, 'United States of Bacon', 'US', now()), +(33188, 'The Fosters (US)', 'US', now()), +(33189, 'Making It In America', 'US', now()), +(33190, 'Ink Master Sverige', 'SE', now()), +(33191, 'Andreas Türck', 'DE', now()), +(33192, 'Aktenzeichen XY ... ungelöst', 'DE', now()), +(33193, 'ЧС.Чрезвычайная ситуация', 'RU', now()), +(33194, 'My Food Obsession', 'US', now()), +(33195, 'Travel Thru History', 'US', now()), +(33196, 'The Bite-Sized Adventures of Sam Sandwich', 'US', now()), +(33197, 'The Whistle', 'US', now()), +(33198, 'The Grind Waterfowl TV', 'US', now()), +(33199, 'MovieStar', 'US', now()), +(33200, 'Big Ten Elite', 'US', now()), +(33201, 'Strong of Heart', 'US', now()), +(33202, 'Midway USA''s Rapid Fire', 'US', now()), +(33203, 'Trailerific', 'US', now()), +(33204, 'Legends of', 'US', now()), +(33205, 'Aggression MMA', 'US', now()), +(33206, 'Speed Kills', 'US', now()), +(33207, 'Made in Milwaukee', 'US', now()), +(33208, 'Doomsday Preppers Bugged Out', 'US', now()), +(33209, 'Inside Michael Waltrip Racing', 'US', now()), +(33210, 'The Changers', 'US', now()), +(33211, 'Kollaboration', 'US', now()), +(33212, 'The Bachelor Canada', 'CA', now()), +(33213, 'Professor Regan''s...', 'UK', now()), +(33214, 'Off The Chain', 'US', now()), +(33215, 'Stand Up To Cancer', 'UK', now()), +(33216, 'The Borgias (1981)', 'UK', now()), +(33226, 'Orange Link: Awesome Adventures', 'US', now()), +(33218, 'Inside the Living Body', 'US', now()), +(33219, 'Gandía Shore', 'ES', now()), +(33220, 'Great Expectations (US)', 'US', now()), +(33221, 'Legacy (2013)', 'US', now()), +(33222, 'Quest for the Fresh', 'US', now()), +(33223, 'Divorce Hotel', 'US', now()), +(33224, 'DTLA', 'US', now()), +(33225, 'Design My Dog', 'US', now()), +(33227, 'Big Texas Heat', 'US', now()), +(33228, 'The Damned (US)', 'US', now()), +(33229, 'The Strain', 'US', now()), +(33230, 'The Sixth Gun', 'US', now()), +(33231, 'Crowninshield', 'US', now()), +(33232, '20-Nothings', 'US', now()), +(33233, 'Re-Together', 'US', now()), +(33234, 'Staten Island Law', 'US', now()), +(33235, 'The Ex-Files', 'US', now()), +(33236, 'Glory Hounds', 'US', now()), +(33237, 'Go Back to Where You Came From', 'AU', now()), +(33238, 'Жизнь и судьба', 'RU', now()), +(33239, 'The Golden Rules of TV', 'UK', now()), +(33240, 'Totally Clueless', 'US', now()), +(33241, 'Dance', 'FI', now()), +(33242, 'Rip Off Food', 'UK', now()), +(33243, 'Animatrix', 'US', now()), +(33244, 'Jews at Ten', 'UK', now()), +(33245, 'Nissan GT Academy', 'US', now()), +(33246, 'Jonathan & Charlotte', 'UK', now()), +(33247, 'The Work Experience', 'UK', now()), +(33248, 'Unité 9', 'CA', now()), +(33249, 'Something to Talk About', 'US', now()), +(33250, 'Drum Heads', 'US', now()), +(33251, 'Angry Little Asian Girl', 'US', now()), +(33252, 'The Week in Jams', 'US', now()), +(33253, 'Richard Hammond''s Miracles Of Nature', 'UK', now()), +(33254, 'Dara O Briain’s Science Club', 'UK', now()), +(33255, 'Attenborough''s Ark', 'UK', now()), +(33256, 'Sports Life Stories', 'UK', now()), +(33259, 'Jungle Gold', 'US', now()), +(33258, 'Labyrinth (2012)', 'UK', now()), +(33260, 'Bake Off', 'US', now()), +(33261, 'Rock My RV', 'US', now()), +(33262, 'Building Alaska', 'US', now()), +(33263, 'Triptank', 'US', now()), +(33264, 'Untitled Frankenstein Project', 'US', now()), +(33265, 'Bewitched (2013)', 'US', now()), +(33266, 'Fivehead', 'US', now()), +(33267, 'The Haunting Of', 'US', now()), +(33268, 'Salvage Dawgs', 'US', now()), +(33269, 'ITV News Channel TV', 'UK', now()), +(33270, 'Sea Rescue', 'US', now()), +(33271, 'Guinness World Records Gone Wild', 'US', now()), +(33272, 'Hemlock Grove', 'US', now()), +(33273, 'Hollywood Unzipped: Stylist Wars', 'US', now()), +(33274, 'Hot Package', 'US', now()), +(33275, 'House Husbands (US)', 'US', now()), +(33276, 'The Hunger (2013)', 'US', now()), +(33277, 'Irish Dancing Tweens', 'US', now()), +(33278, 'Space Heroes', 'US', now()), +(33279, 'Last Family on Earth', 'US', now()), +(33280, 'Life with Boys', 'CA', now()), +(33281, 'Lost Treasure Hunters', 'US', now()), +(33282, 'Love Lockdown', 'US', now()), +(33283, 'Marco Polo (2013)', 'US', now()), +(33284, 'Order and Disorder', 'UK', now()), +(33285, 'Maron', 'US', now()), +(33286, 'The Mathis Project', 'US', now()), +(33287, 'Mr. Selfridge', 'UK', now()), +(33288, 'Legends (2013)', 'US', now()), +(33289, 'Murder in Paradise', 'US', now()), +(33290, 'Nathan For You', 'US', now()), +(33291, 'Nightmare Christmas', 'US', now()), +(33292, 'Nikki & Sara LIVE', 'US', now()), +(33293, 'Orphan Black', 'US', now()), +(33294, 'Teekyuu', 'JP', now()), +(33295, 'Hamarinn', 'IS', now()), +(33296, 'Концерты Михаила Задорнова', 'RU', now()), +(33297, 'Lado a Lado', 'BR', now()), +(33298, 'Tapas e Beijos', 'BR', now()), +(33299, 'Школа доктора Комаровского', 'UA', now()), +(33300, 'Out There (2013)', 'US', now()), +(33301, 'Outrageous', 'US', now()), +(33302, 'Polar Bear Family and Me', 'UK', now()), +(33303, 'Terápia', 'HU', now()), +(33304, 'Yalan Dunya', 'TR', now()), +(33305, 'QP', 'JP', now()), +(33306, 'Ross Kemp: The Invisible Wounded', 'UK', now()), +(33307, 'Baka And Test: Summon The Beasts', 'JP', now()), +(33308, 'Review with Forrest MacNeil', 'US', now()), +(33309, 'Rhino Wars', 'US', now()), +(33310, 'Road to Le Mans', 'US', now()), +(33311, 'Jesse James: Outlaw Garage', 'US', now()), +(33312, 'Casanova Bootcamp', 'NL', now()), +(33313, 'Aikatsu!', 'JP', now()), +(33314, 'The Journey: Big Ten Football 2012', 'US', now()), +(33315, 'Aoi Sekai no Chuushin de', 'JP', now()), +(33316, 'Darkness Falls', 'US', now()), +(33317, 'Car Fix', 'US', now()), +(33318, 'Top 100 Party Playlist', 'US', now()), +(33319, 'Monsters in My Head', 'US', now()), +(33320, 'Because of an Earlier Incident', 'US', now()), +(33689, 'Zombie Apocalypse', 'US', now()), +(33322, 'Motives & Murders: Cracking the Case', 'US', now()), +(33323, 'House Crashers: Top 10', 'US', now()), +(33324, 'Bath Crashers: Top 10', 'US', now()), +(33325, 'Heston''s Fantastical Food', 'UK', now()), +(33326, 'Secret State', 'UK', now()), +(33327, 'Kirstie''s Vintage Home', 'UK', now()), +(33328, 'Derren Brown: Fear and Faith', 'UK', now()), +(33329, 'Space Dive', 'UK', now()), +(33330, 'Now What?', 'US', now()), +(33331, 'Churchill''s Desert War: The Road to El Alamein', 'UK', now()), +(33332, 'Nick Nickleby', 'UK', now()), +(33333, 'Some Girls', 'UK', now()), +(33334, 'Pros & Cons', 'US', now()), +(33335, 'Sex Diaries (2013)', 'US', now()), +(33336, 'The Dark Charisma of Adolf Hitler', 'UK', now()), +(33337, 'Attenborough: 60 Years In The Wild', 'UK', now()), +(33338, 'Great Continental Railway Journeys', 'UK', now()), +(33339, 'Breakfast, Lunch and Dinner', 'UK', now()), +(33340, 'Ri Kôran', 'JP', now()), +(33341, 'In Like Fin', 'US', now()), +(33342, 'Finn & Sawyer', 'US', now()), +(33343, 'The Outsiders (2013)', 'US', now()), +(33344, 'Gothica', 'US', now()), +(33345, 'Let''s Play', 'UK', now()), +(33346, 'Heading Out', 'UK', now()), +(33347, 'Garage Bar', 'US', now()), +(33348, 'Кухня', 'RU', now()), +(33349, 'Crime Stories (UK)', 'UK', now()), +(33350, 'Moeder, ik wil bij de Revue', 'NL', now()), +(33351, 'The Incredible Hulk (2013)', 'US', now()), +(33352, 'King & Maxwell', 'US', now()), +(33353, 'Halo 4: Forward Unto Dawn', 'US', now()), +(33354, 'The Clan', 'US', now()), +(33355, 'The Secret of Crickley Hall', 'UK', now()), +(33356, 'Frágiles', 'ES', now()), +(33357, 'Ed, Edd n Eddy', 'CA', now()), +(33358, 'A-List Listings', 'US', now()), +(33360, 'Violetta', 'AR', now()), +(33361, 'Extreme Houseboats', 'US', now()), +(33362, 'Extreme Yachts', 'US', now()), +(33363, 'Be the Boss', 'US', now()), +(33364, 'Turbine Cowboys', 'US', now()), +(33365, 'Wentworth', 'AU', now()), +(33366, 'Futatsu no Spica', 'JP', now()), +(33367, 'Bunshin', 'JP', now()), +(33368, 'Ojiichan wa 25-sai', 'JP', now()), +(33369, 'Saiyûki (2006)', 'JP', now()), +(33370, 'Shukumei 1969-2010', 'JP', now()), +(33371, 'Zenkai Girl', 'JP', now()), +(33372, 'Wagaya no Rekishi', 'JP', now()), +(33373, '99-nen no Ai ~ Japanese Americans', 'JP', now()), +(33374, 'Suna no Utsuwa (2011)', 'JP', now()), +(33375, 'Blackboard', 'JP', now()), +(33376, 'Holidays', 'US', now()), +(33377, 'All Grown Up (2013)', 'US', now()), +(33378, 'Cracking Addiction', 'US', now()), +(33379, 'Married with Roommates', 'US', now()), +(33381, 'Rick and Morty', 'US', now()), +(33382, 'compliKATEd', 'US', now()), +(33383, 'Territory Cops', 'AU', now()), +(33384, 'Deirdre and Me: 40 Years on Coronation Street', 'UK', now()), +(33385, 'Nicki Minaj: My Truth', 'US', now()), +(33386, '1001 Things You Should Know', 'UK', now()), +(33387, 'Bradley Wiggins: A Year in Yellow', 'UK', now()), +(33388, 'Sensitive Skin (CA)', 'CA', now()), +(33389, 'Those Who Kill', 'US', now()), +(33390, 'Salve Jorge', 'BR', now()), +(33391, 'Nature''s Microworlds', 'UK', now()), +(33392, 'Full English', 'UK', now()), +(33393, 'Flintoff: From Lords to the Ring', 'UK', now()), +(33395, 'Sfide', 'IT', now()), +(33396, 'Bamazon', 'US', now()), +(33397, 'I Didn''t Do It', 'US', now()), +(33398, 'Just Kidding', 'US', now()), +(33399, 'I Want To Change My Body', 'UK', now()), +(33400, 'The Godfather Saga', 'US', now()), +(33401, 'Axe Cop', 'US', now()), +(33402, 'Kids Say The Funniest Things', 'UK', now()), +(33403, 'Barrymore', 'UK', now()), +(33404, 'The Michael Barrymore Special', 'UK', now()), +(33786, 'Tony Bennett''s Duets', 'UK', now()), +(33406, 'Problems', 'AU', now()), +(33407, 'Supersized Earth', 'UK', now()), +(33408, 'Athena', 'US', now()), +(33409, 'Olympus', 'US', now()), +(33410, 'A Bend in the Road', 'US', now()), +(33411, 'The Falls', 'US', now()), +(33412, 'Deliverance Creek', 'US', now()), +(33413, 'The Lost Girls', 'US', now()), +(33414, 'Wanida', 'TH', now()), +(33415, 'Chasing The Saturdays', 'US', now()), +(33416, 'Next Stop for Charlie', 'US', now()), +(33417, 'Restless', 'UK', now()), +(33418, 'Studio E!', 'US', now()), +(33419, 'The Young Montalbano', 'IT', now()), +(33420, 'Fighting Tuna', 'US', now()), +(33421, 'America''s Hard 100', 'US', now()), +(33422, 'Teen Trouble', 'US', now()), +(33423, 'The Man (2012)', 'US', now()), +(33424, 'World Series of Fighting', 'US', now()), +(33425, 'Catastrophe, Inc.', 'US', now()), +(33426, 'I Bet My Life', 'US', now()), +(33427, 'Training Day', 'US', now()), +(33428, 'Michael Barrymore''s My Kind of People', 'UK', now()), +(33429, 'Animals Do The Funniest Things', 'UK', now()), +(33430, 'The Valleys', 'UK', now()), +(33431, 'Stephen Fry: Gadget Man', 'UK', now()), +(33432, 'Suburbia', 'BR', now()), +(33433, 'Disney XD ESPN Sport Science', 'US', now()), +(33434, 'US Elections', 'UK', now()), +(33435, 'Hamish & Andy''s Caravan of Courage', 'AU', now()), +(33436, 'Girl Meets World', 'US', now()), +(33437, 'A Moody Christmas', 'AU', now()), +(33438, 'Sex Death and the Meaning of Life', 'UK', now()), +(33439, 'Infames', 'MX', now()), +(33440, 'America Decides', 'UK', now()), +(33441, 'A Mulher Invisivel', 'BR', now()), +(33442, 'СуперОлег', 'RU', now()), +(33443, 'Шпион', 'RU', now()), +(33445, '10 Incredible Near Misses', 'AU', now()), +(33446, 'Пыхчево', 'RU', now()), +(33447, 'Атомный лес', 'RU', now()), +(33448, 'Lonelygirl15', 'US', now()), +(33449, 'Sarah Beeny''s Selling Houses', 'UK', now()), +(33450, 'The Aristocrats', 'UK', now()), +(33451, 'Falcón', 'UK', now()), +(33452, 'KateModern', 'UK', now()), +(33453, 'LG15: The Resistance', 'US', now()), +(33454, 'N1ckola', 'PL', now()), +(33455, 'LG15: The Last', 'AU', now()), +(33456, 'LG15: Outbreak', 'US', now()), +(33458, 'The Amazing Race Latin America', 'AR', now()), +(33459, 'The Amazing Race Philippines', 'PH', now()), +(33460, 'Neymovirni perehony', 'UA', now()), +(33461, 'Обратная сторона Луны', 'RU', now()), +(33462, 'The Amazing Race Vietnam', 'VN', now()), +(33463, 'Cheryl: Access all Areas', 'UK', now()), +(33464, 'Superstorm USA: Caught on Camera', 'UK', now()), +(33465, 'Britain''s Best Bakery', 'UK', now()), +(33466, 'Hot sluts', 'US', now()), +(33467, 'Gates (US)', 'US', now()), +(33468, 'Mulheres Ricas', 'BR', now()), +(33469, 'Panic 9-1-1', 'US', now()), +(33470, 'After Hours (US)', 'US', now()), +(33471, 'The Voice – Magyarország hangja', 'HU', now()), +(33472, 'Hatufim', 'IL', now()), +(33473, 'Alice', 'BR', now()), +(33474, 'Sessão de Terapia', 'BR', now()), +(33475, 'Som e Fúria', 'BR', now()), +(33476, 'Harder Than It Looks', 'US', now()), +(33477, 'Just Thought You Should Know', 'US', now()), +(33478, 'Ultimate Fitness Network', 'US', now()), +(33479, 'Starving in Hollywood', 'US', now()), +(33480, 'Reality Show', 'US', now()), +(33481, 'Así se hace', 'US', now()), +(33482, 'Living with Frankenstein', 'US', now()), +(33483, 'Absolute Mehrheit', 'DE', now()), +(33484, 'Pet School', 'UK', now()), +(33485, 'Rocket''s Island', 'UK', now()), +(33486, 'Snooker - UK Championships 2012', 'UK', now()), +(33487, 'Westminster Abbey', 'UK', now()), +(33488, 'Zorro: Generation Z - The Animated Series', 'UK', now()), +(33489, 'sterren op de dansvloer', 'BE', now()), +(33490, 'Creating Destiny', 'KR', now()), +(33491, 'En los tacones de Eva', 'CO', now()), +(33492, 'East Of Eden (KR)', 'KR', now()), +(33493, 'Die Wanderhure', 'DE', now()), +(33494, 'Next, Please!', 'US', now()), +(33495, 'The Hollywood Militia presents: UnREALity', 'US', now()), +(33496, 'Chocotto Sister', 'JP', now()), +(33497, 'Gayxample', 'ES', now()), +(33498, 'Return To Forgotten Britain', 'UK', now()), +(33499, 'John Bishop''s Big Year', 'UK', now()), +(33500, '33 Liberty Lane', 'CA', now()), +(33501, 'Golden Bride', 'KR', now()), +(33502, 'Star''s Lovers', 'KR', now()), +(33503, 'Summer''s Desire', 'TW', now()), +(33504, 'Loving You a Thousand Times', 'KR', now()), +(33505, 'Smile, You', 'KR', now()), +(33506, 'Feast of Gods', 'KR', now()), +(33507, 'Devil''s Dust', 'AU', now()), +(33508, 'Iss Pyaar Ko Kya Naam Doon?', 'IN', now()), +(33509, 'Planet unEarth', 'AU', now()), +(33510, 'Liar Game', 'JP', now()), +(33511, 'The Show with Vinny', 'US', now()), +(33512, 'Chris Tarrant: Extreme Railways', 'UK', now()), +(33513, 'Кто здесь звезда? Идеальное интервью', 'RU', now()), +(33514, 'karina wild on safari', 'UK', now()), +(33515, 'David Suchet: In The Footsteps Of St Paul', 'UK', now()), +(33516, 'The Town', 'UK', now()), +(33517, 'Madeley Meets The Squatters', 'UK', now()), +(33518, 'Steppin'' Out with Katherine Jenkins', 'UK', now()), +(33519, 'The Real Man''s Road Trip', 'UK', now()), +(33520, 'Jamie and Jimmy''s Food Fight Club', 'UK', now()), +(33521, 'Haeundae Lovers', 'KR', now()), +(33522, 'Padam Padam: The Sound of His and Her Heartbeats', 'KR', now()), +(33523, 'Stars Falling From the Sky', 'KR', now()), +(33524, 'Ojakkyo Brothers', 'KR', now()), +(33525, 'Extreme Cougar Wives', 'US', now()), +(33526, 'Coaches vs Cancer', 'US', now()), +(33527, 'For Richer or For Poorer', 'US', now()), +(33528, '1 Girl 5 Gays', 'CA', now()), +(33529, 'Newsreaders', 'US', now()), +(33530, 'North Pole Ice Airport', 'UK', now()), +(33531, 'Murder Files', 'UK', now()), +(33532, 'Thunder Mountain', 'US', now()), +(33533, 'Graveyard Queen', 'US', now()), +(33534, 'Channel Seven Perth Telethon', 'AU', now()), +(33535, 'Simply The Best (2004)', 'UK', now()), +(33536, 'Stars in Their Eyes', 'UK', now()), +(33537, 'Jade''s Salon', 'UK', now()), +(33538, 'Sally Morgan: Star Psychic', 'UK', now()), +(33539, 'Jade Changed My Life', 'UK', now()), +(33540, 'Three Seven Eleven', 'UK', now()), +(33541, '30 Years of Emmerdale', 'UK', now()), +(33542, 'Russian Roulette (UK)', 'UK', now()), +(33543, 'Emmerdale Family Album', 'UK', now()), +(33544, 'All-Star Poker Challenge', 'UK', now()), +(33545, 'Big Rich Atlanta', 'US', now()), +(33546, 'Kourtney & Kim Take Miami', 'US', now()), +(33547, 'Amish Mafia', 'US', now()), +(33548, 'Phys Ed', 'US', now()), +(33549, 'Amores Verdaderos', 'MX', now()), +(33550, '2005 TV Moments', 'UK', now()), +(33551, 'The Ride (UK)', 'UK', now()), +(33552, 'The TVNow Awards', 'IE', now()), +(33553, 'The British Soap Awards: The Party', 'UK', now()), +(33554, 'Australian Women''s Weekly', 'AU', now()), +(33555, 'Our Secret Universe: The Hidden Life of the Cell', 'UK', now()), +(33556, 'Tails You Win: The Science of Chance', 'UK', now()), +(33557, 'Voyager: To the Final Frontier', 'UK', now()), +(33558, 'Lerchenberg', 'DE', now()), +(33559, 'Гончие', 'RU', now()), +(33560, '17 мгновений весны', 'SU', now()), +(33561, 'Der Bachelor', 'DE', now()), +(33562, 'Погоня', 'RU', now()), +(33563, 'Дети 90-х...', 'RU', now()), +(33564, 'Inside Claridges', 'UK', now()), +(33565, 'The Poison Tree', 'UK', now()), +(33566, 'Rod Stewart''s Christmas', 'UK', now()), +(33567, 'Inside Guinness World Records', 'UK', now()), +(33568, 'Final Cut', 'US', now()), +(33569, 'Die neuen Abenteuer der alten Christine', 'DE', now()), +(33570, 'Familie Undercover', 'DE', now()), +(33571, 'Cardinal Burns', 'UK', now()), +(33572, 'Anne Of Green Gables – The Continuing Story', 'CA', now()), +(33573, 'Anne of Green Gables – A New Beginning', 'CA', now()), +(33696, 'Something Special', 'UK', now()), +(33575, 'The Mcfly Show', 'UK', now()), +(33576, 'On The Run (2012)', 'UK', now()), +(33577, 'Pensioners Behind Bars', 'UK', now()), +(33578, 'Storage Hoarders', 'UK', now()), +(33579, 'Scam City', 'UK', now()), +(33580, 'Så mycket bättre', 'SE', now()), +(33581, 'Hipertensão', 'BR', now()), +(33582, 'O Jogo', 'BR', now()), +(33583, 'Popstars', 'BR', now()), +(33584, 'Escape Into Night', 'UK', now()), +(33585, 'Rome''s Lost Empire', 'UK', now()), +(33586, 'Miniature Britain', 'UK', now()), +(33587, 'Weight Loss Ward', 'UK', now()), +(33588, '10 Years of Girls Aloud', 'UK', now()), +(33589, 'Bad Santas', 'UK', now()), +(33590, 'Casa dos Artistas', 'BR', now()), +(33591, 'Ídolos', 'BR', now()), +(33592, 'Perdidos na Tribo', 'BR', now()), +(33593, 'Braunschlag', 'AT', now()), +(33594, 'The Infinite Worlds of H.G. Wells', 'UK', now()), +(33597, 'Sherlock Holmes and Doctor Watson', 'PL', now()), +(33596, 'Sam & Cat', 'US', now()), +(33598, 'A Tribute to Larry Hagman: At Home with JR', 'UK', now()), +(33599, 'Hero Squad', 'UK', now()), +(33600, 'Naomi''s Nightmares of Nature', 'UK', now()), +(33601, '12 Again', 'UK', now()), +(33602, 'Dr. Livingstone', 'BE', now()), +(33603, 'Vier Frauen und ein Todesfall', 'AT', now()), +(33604, 'The Revolting World of Stanley Brown', 'UK', now()), +(33605, 'Weekend Download', 'UK', now()), +(33606, 'Why Poverty?', 'UK', now()), +(33607, 'World News Today', 'UK', now()), +(33608, 'Britain On Film', 'UK', now()), +(33609, 'The Dark Ages: An Age In Light', 'UK', now()), +(33610, 'The Secret Life of Rubbish', 'UK', now()), +(33611, 'The Beach Boys: Doin'' It Again', 'UK', now()), +(33612, 'Celebrity Style Story', 'US', now()), +(33613, 'ДОстояние РЕспублики', 'RU', now()), +(33614, 'The Making Of A Lady', 'UK', now()), +(33615, 'No Limit', 'FR', now()), +(33616, 'Das Adlon - Eine Familiensaga', 'DE', now()), +(33617, 'Countdown to Apocalypse', 'US', now()), +(33618, 'Ich bin ein Star – Holt mich hier raus! Das Magazin', 'DE', now()), +(33619, 'Beroepen Zonder Grenzen', 'BE', now()), +(33620, 'Africa', 'UK', now()), +(33621, 'Loving Miss Hatto', 'UK', now()), +(33622, 'Superstars 2012', 'UK', now()), +(33623, 'Queen Victoria’s Children', 'UK', now()), +(33624, 'Racing Legends', 'UK', now()), +(33625, 'The Girl', 'UK', now()), +(33626, 'The Invisible Man', 'UK', now()), +(33627, 'Littlest Pet Shop (2012)', 'US', now()), +(33628, 'Space Janitors', 'US', now()), +(33629, 'Sin City Rules', 'US', now()), +(33630, 'Halt & Catch Fire', 'US', now()), +(33631, 'Turn', 'US', now()), +(33632, 'The Gilded Age', 'US', now()), +(33633, 'Booster Gold', 'US', now()), +(33634, 'Shocking Family Secrets', 'US', now()), +(33635, 'The Ghost Inside My Child', 'US', now()), +(33636, 'Haunted Encounters: Face To Face', 'US', now()), +(33637, 'Det okända', 'SE', now()), +(33638, 'Livet på andra sidan', 'SE', now()), +(33639, 'I Forgive You', 'US', now()), +(33640, 'That''s So ''90s', 'US', now()), +(33641, 'Cesar Millan''s Leader of the Pack', 'US', now()), +(33642, 'Wicked Tuna: Hooked Up', 'US', now()), +(33643, 'Big Evening Buzz', 'US', now()), +(33644, 'Almost Married', 'US', now()), +(33645, 'FireZone', 'US', now()), +(33646, 'Sturgis', 'US', now()), +(33647, 'Deadly Alibi', 'US', now()), +(33648, 'NFL Road Tested: The Cleveland Browns', 'US', now()), +(33649, 'Aufschneider', 'AT', now()), +(33650, 'Owner’s Manual', 'US', now()), +(33651, 'Married to Medicine', 'US', now()), +(33652, 'Stranded', 'US', now()), +(33653, 'Snow Babies', 'UK', now()), +(33654, 'Sing Along (FI)', 'FI', now()), +(33655, 'Real Husbands of Hollywood', 'US', now()), +(33656, 'The Spice Girls Story: Viva Forever!', 'UK', now()), +(33657, 'Nigel Slater''s 12 Tastes of Christmas', 'UK', now()), +(33658, 'Les Revenants', 'FR', now()), +(33659, 'Vindicated', 'US', now()), +(33660, 'Queen Days Of Our Lives', 'UK', now()), +(33661, 'Deadliest Tech', 'US', now()), +(33662, 'The Family That Slays Together', 'US', now()), +(33663, 'Ex Wives of Rock', 'US', now()), +(33664, 'Warped Roadies', 'US', now()), +(33665, 'Storage Wars: NY', 'US', now()), +(33666, 'Storage Wars: Miami', 'US', now()), +(33667, 'Buck Wild', 'US', now()), +(33668, 'UFO - Europe Untold Stories', 'US', now()), +(33669, 'The Nation''s Favourite Christmas Song', 'UK', now()), +(33670, 'Dale''s Great Getaway', 'UK', now()), +(33671, 'Joanna Lumley: The Quest for Noah''s Ark', 'UK', now()), +(33672, 'That Dog Can Dance!', 'UK', now()), +(33673, 'Sofia the First', 'US', now()), +(33674, 'A Night At The Classic', 'NZ', now()), +(33675, 'Los Herederos del Monte', 'CO', now()), +(33676, 'Ask ve Ceza', 'TR', now()), +(33677, 'Why Can''t I Go Home?', 'UK', now()), +(33678, 'Rome: A History of the Eternal City', 'UK', now()), +(33679, 'AC/DC Live at River Plate', 'UK', now()), +(33680, 'Ade''s Christmas Crackers', 'UK', now()), +(33681, 'Panto!', 'UK', now()), +(33682, 'Nursing The Nation', 'UK', now()), +(33683, 'The Good Witch', 'US', now()), +(33684, 'The Voice of Albania', 'AL', now()); +INSERT INTO `tvrage` (`rageID`, `releasetitle`, `country`, `createddate`) VALUES +(33685, 'The Voice Ahla Sawt', 'SA', now()), +(33686, 'La Voz... Argentina', 'AR', now()), +(33687, 'The Voice Belgique', 'BE', now()), +(33688, 'The Atheist Experience', 'US', now()), +(33690, 'Awakening', 'US', now()), +(33691, 'Česká Soda', 'CZ', now()), +(33692, 'La Voz Colombia', 'CO', now()), +(33693, 'The Voice of China', 'CN', now()), +(33694, 'Voice – Danmarks største stemme', 'DK', now()), +(33695, 'The Voice Indonesia', 'ID', now()), +(33697, 'Cbeebies Bedtime Stories', 'UK', now()), +(33698, 'De revolutieroute', 'BE', now()), +(33699, 'Death Dealers', 'US', now()), +(33700, 'Twee tot de zesde macht', 'BE', now()), +(33701, 'Waybuloo', 'UK', now()), +(33702, 'I Hunt Killers', 'US', now()), +(33703, 'Galapagos with David Attenborough', 'UK', now()), +(33704, '50 Funniest Moments 2012', 'UK', now()), +(33705, 'Jul med Hellstrøm', 'NO', now()), +(33706, 'Julekongen', 'NO', now()), +(33707, 'Le Chasseur', 'FR', now()), +(33708, 'Doors Open', 'UK', now()), +(33709, '30 Years Of Citv', 'UK', now()), +(33710, 'How to be Married with Sharon Horgan', 'UK', now()), +(33711, 'Rejseholdet', 'DK', now()), +(33712, 'Murder Police', 'US', now()), +(33713, 'Mr Stink', 'UK', now()), +(33714, 'Trouble Abroad', 'UK', now()), +(33715, 'Gary Barlow & Friends', 'UK', now()), +(33716, 'Les Misèrables Movie Special', 'UK', now()), +(33717, 'Super Famous Animals', 'UK', now()), +(33718, 'Miracle Train ~Oedo-sen e Yokoso~', 'JP', now()), +(33719, 'Belle''s', 'US', now()), +(33720, 'Gawayn', 'FR', now()), +(33721, 'The Green Squad', 'US', now()), +(33722, 'Toto Trouble', 'US', now()), +(33723, 'Hairy Scary', 'FR', now()), +(33724, 'HIT (US)', 'US', now()), +(33725, 'Rookie (US)', 'US', now()), +(33726, 'Years of Living Dangerously', 'US', now()), +(33727, '2012: A Funny Old Year', 'UK', now()), +(33728, 'The Amazing Race Canada', 'CA', now()), +(33729, 'Zombie Hotel (US)', 'FR', now()), +(33730, 'Matt''s Monsters', 'FR', now()), +(33731, 'Santa''s Apprentice', 'FR', now()), +(33732, 'Gok''s Style Secrets', 'UK', now()), +(33733, 'Great Northern Cookbook', 'UK', now()), +(33734, 'Fake Reaction', 'UK', now()), +(33735, 'Casual Vacancy', 'UK', now()), +(33736, 'Hitlerland', 'US', now()), +(33737, 'Greatest Hip Hop Songs of the 90s', 'US', now()), +(33738, 'Golden Sisters', 'US', now()), +(33739, 'Jenni', 'US', now()), +(33740, 'Babes on a Bus', 'US', now()), +(33741, 'Pursuit of Truth', 'US', now()), +(33742, 'I Love Jenni', 'US', now()), +(33743, 'Jenni Rivera Presents Chiquis and Raq-C', 'US', now()), +(33744, 'Styled To Rock (US)', 'US', now()), +(33745, 'The Joneses', 'US', now()), +(33746, 'Rita', 'US', now()), +(33747, 'Rights Of Bill', 'US', now()), +(33748, 'Weird Desk', 'US', now()), +(33749, 'Stan Brock''s Expedition: Danger', 'US', now()), +(33750, 'Diggers', 'US', now()), +(33751, 'The Sisterhood', 'US', now()), +(33752, 'Double Divas', 'US', now()), +(33753, 'Lieve Liza', 'NL', now()), +(33754, 'Divorce', 'NL', now()), +(33755, 'The Incredible Hulk (2014)', 'US', now()), +(33756, 'The Flame Trees of Thika', 'UK', now()), +(33757, 'No Excuses', 'UK', now()), +(33758, 'Human Error', 'US', now()), +(33759, 'Silicon Valley', 'US', now()), +(33760, 'The Voice of Ireland', 'IE', now()), +(33761, 'The Voice Israel (2012)', 'IL', now()), +(33762, 'La Voz... México', 'MX', now()), +(33763, 'CAC Knight''s Christmas Play', 'US', now()), +(33767, 'Van Bihar tot Bangalore', 'NL', now()), +(33765, 'A Voz de Portugal', 'PT', now()), +(33766, 'La Voix (The Voice Québec)', 'CA', now()), +(33768, 'The Trouble With Aid', 'UK', now()), +(33769, 'The Golden Age of Steam Railways', 'UK', now()), +(33770, 'Timeshift', 'UK', now()), +(33771, 'James Bond 50th Anniversary Gala Concert', 'UK', now()), +(33772, '... Sings...', 'UK', now()), +(33773, 'Prithviraj Chauhan', 'IN', now()), +(33774, 'Anna Bolena', 'UK', now()), +(33775, 'A Mozart Gala From Salzburg Aka Mozart, Gala Matinee', 'UK', now()), +(33776, 'Living the Life', 'UK', now()), +(33777, 'The Voice of Armenia', 'AM', now()), +(33778, 'The Voice of Azerbaijan', 'AZ', now()), +(33779, 'De Gouden Eeuw', 'NL', now()), +(33780, 'Alan Partridge: Welcome to the Places of My Life', 'UK', now()), +(33781, 'Nat King Cole: Encore', 'UK', now()), +(33782, 'Parkinson: Masterclass', 'UK', now()), +(33783, 'Great Entertainers', 'UK', now()), +(33784, 'Nation''s Best Am Dram', 'UK', now()), +(33785, 'Nation''s Best Am Dram Extras', 'UK', now()), +(33787, 'Michael Feinstein - The Sinatra Legacy', 'UK', now()), +(33788, 'Forever Crazy', 'UK', now()), +(33789, 'Liza Minnelli Plays Avo Session', 'UK', now()), +(33790, 'Loslopend wild', 'BE', now()), +(33791, 'Видеомания - Во что поиграть на этой неделе', 'RU', now()), +(33792, 'Дорога в пустоту', 'UA', now()), +(33793, 'Spice Trip', 'UK', now()), +(33794, 'One Born Every Minute: What Happened Next?', 'UK', now()), +(33795, 'Helga und die Nordlichter', 'DE', now()), +(33796, 'Fit', 'UK', now()), +(33797, 'Missing You (2012)', 'KR', now()), +(33798, 'Cheongdam Dong Alice', 'KR', now()), +(33799, 'Cheongdamdong Alice', 'KR', now()), +(33800, 'School 2013', 'KR', now()), +(33801, 'Bad Couple', 'KR', now()), +(33802, 'Aurora', 'US', now()), +(33803, 'Bastards', 'US', now()), +(33804, 'Horizon (2013)', 'US', now()), +(33805, 'The Voice of Korea', 'KR', now()), +(33806, 'The Voice of Korea Kids', 'KR', now()), +(33807, 'The Voice of Thailand', 'TH', now()), +(33808, 'Holos Krayiny', 'UA', now()), +(33809, 'The Voice of Vietnam', 'VN', now()), +(33810, 'Drug Bust (NZ)', 'NZ', now()), +(33811, 'The Voice (Hong Kong)', 'HK', now()), +(33812, 'Film 2013', 'UK', now()), +(33813, 'The Voice Kids (Germany)', 'DE', now()), +(33814, 'The Voice Kids (Albania)', 'AL', now()), +(33815, 'The Voice. Kids (Ukraine)', 'UA', now()), +(33816, 'Tyrant', 'US', now()), +(33817, 'La Voz: Niños', 'US', now()), +(33818, 'The Voice Kids (Vietnam)', 'VN', now()), +(34091, 'Ai Mai Mi', 'JP', now()), +(33820, 'Rosa Diamante', 'US', now()), +(33821, 'Inside Amy Schumer', 'US', now()), +(33822, 'Pete Rose: Hits & Mrs.', 'US', now()), +(33823, 'Privates', 'UK', now()), +(33824, 'Richard Hammond''s Secret Service', 'UK', now()), +(33825, 'Animal Antics', 'UK', now()), +(33826, 'Britain''s Brightest', 'UK', now()), +(33827, 'Siege of Malta', 'UK', now()), +(33828, 'Splash! (UK)', 'UK', now()), +(33829, 'Mom', 'US', now()), +(33830, 'Divine:The Series', 'CA', now()), +(33831, 'Das Halstuch', 'DE', now()), +(33832, 'UKHot40', 'UK', now()), +(33833, 'VIP Track of the Week', 'UK', now()), +(33834, 'The Official Sales', 'UK', now()), +(33835, 'Rickie & Melvin''s Dance Central Battle: Top 20', 'UK', now()), +(33836, 'UK Airplay: Top 20', 'UK', now()), +(33837, 'Rihanna: Good Girl Gone Bad', 'UK', now()), +(33838, 'This Week''s Fresh Music Top 20', 'UK', now()), +(33839, 'Feelgood Friday', 'UK', now()), +(33840, 'Day in the Life', 'UK', now()), +(33841, 'The Saturday Warm Up!', 'UK', now()), +(33842, 'Stooshe''s Winter Wonderland! Top 50', 'UK', now()), +(33843, '20...', 'UK', now()), +(33844, 'Northern Italy Unpacked', 'UK', now()), +(33938, 'Paradise Ranch', 'KR', now()), +(33846, 'Great Night Out', 'UK', now()), +(33847, 'The Hunt', 'US', now()), +(33848, 'Perfect Score', 'US', now()), +(33849, 'Next Stop Hollywood', 'AU', now()), +(33850, 'Face the Clock', 'UK', now()), +(33851, 'What Happens in Kavos...', 'UK', now()), +(33852, 'First Time Farmers', 'UK', now()), +(33853, 'Blandings', 'UK', now()), +(33854, 'The Genius of Invention', 'UK', now()), +(33855, 'Why The Industrial Revolution Happened Here', 'UK', now()), +(33856, 'The Johnny And Inel Show', 'UK', now()), +(33857, 'Dani''s Castle', 'UK', now()), +(33858, 'Father Brown (2013)', 'UK', now()), +(33859, 'Way To Go', 'UK', now()), +(33860, 'Fierce Earth', 'UK', now()), +(33861, 'All You Can Eat', 'UK', now()), +(33862, 'The Magaluf Weekender', 'UK', now()), +(33863, 'Making Mr. Right', 'US', now()), +(33864, 'The Jenny McCarthy Show (2013)', 'US', now()), +(33865, 'Hawaii Life', 'US', now()), +(33866, 'Cousins on Call', 'US', now()), +(33867, 'Taste in Translation', 'US', now()), +(33868, 'We Hate Paul Revere', 'US', now()), +(33869, '25 Greatest Xmas Songs Ever', 'UK', now()), +(33870, 'Santa''s Blessed', 'UK', now()), +(33871, 'Michael Buble''s Christmas! Top 20', 'UK', now()), +(33872, 'The Breakfast Fix', 'UK', now()), +(33873, 'Xmas Number 1 Contenders', 'UK', now()), +(33874, 'Celebs Who Made 2012: Year In Review', 'UK', now()), +(33875, 'Mrs Christmas'' Festive Clean Up! Top 20', 'UK', now()), +(33876, 'Noddy Holder''s 20 Best Xmas Songs Ever!', 'UK', now()), +(33877, 'Love Thy Neighbor (2013)', 'US', now()), +(33878, 'The Haves and the Have Nots', 'US', now()), +(33879, '.. Days til Christmas', 'UK', now()), +(33880, '4Music''s Most Excellent Videos of 2012', 'UK', now()), +(33881, 'Olive the Ostrich', 'UK', now()), +(33882, 'Toby''s Travelling Circus', 'UK', now()), +(33883, 'Prep & Landing', 'US', now()), +(33884, 'The Art of the Snowman', 'UK', now()), +(33885, 'Winterwatch', 'UK', now()), +(33886, 'A Very English Winter: The Unthanks', 'UK', now()), +(33887, 'Michael Grade''s History of the Pantomime Dame', 'UK', now()), +(33888, 'Placido Domingo''s Gala Concert', 'UK', now()), +(33889, '... at the BBC', 'UK', now()), +(33890, 'Royal Institution Christmas Lectures', 'UK', now()), +(33892, 'Masters Snooker 2013', 'UK', now()), +(33893, 'Darcy''s Town', 'US', now()), +(33894, 'The Jeselnik Offensive', 'US', now()), +(33895, 'Klondike (2013)', 'US', now()), +(33896, 'Vanderpump Rules', 'US', now()), +(33897, 'Scoring the Deal', 'US', now()), +(33898, 'The Killer Speaks', 'US', now()), +(33899, 'Station 2', 'DK', now()), +(33900, 'Text Santa: CiTV Special', 'UK', now()), +(33901, 'Share A Story', 'UK', now()), +(33902, 'Esquenta', 'BR', now()), +(33903, 'Faust', 'UK', now()), +(33904, 'Coppelia', 'UK', now()), +(33905, 'Carols by Candlelight', 'UK', now()), +(33906, 'Christmas with Aled Jones', 'UK', now()), +(33907, 'Cirque de Pekin', 'UK', now()), +(33908, 'Andre Rieu: Live in Maastricht', 'UK', now()), +(33909, 'BB King: Live in Concert at the Royal Albert Hall', 'UK', now()), +(33910, 'Cirque Eloize', 'UK', now()), +(33911, 'American Wiseass', 'US', now()), +(33912, 'Extreme Moms', 'US', now()), +(33913, 'Focus On', 'US', now()), +(33914, 'Marry Me in NYC', 'US', now()), +(33915, 'America Unearthed', 'US', now()), +(33916, 'First Take Weekend', 'US', now()), +(33917, 'Magic Man', 'US', now()), +(33918, 'Chained to My Ex', 'US', now()), +(33919, 'The Fosters (2013)', 'US', now()), +(33920, 'Terminales', 'US', now()), +(33921, 'Z', 'US', now()), +(33922, 'Welcome to Myrtle Manor', 'US', now()), +(33923, 'Gypsy Sisters', 'US', now()), +(33924, 'The Cow That Almost Missed Christmas', 'UK', now()), +(33925, 'Peter Rabbit''s Christmas Tale', 'UK', now()), +(33926, 'CBeebies Christmas Panto', 'UK', now()), +(33927, 'Dick and Dom''s Hoopla', 'UK', now()), +(33928, 'Top 50 Videos of 2012', 'US', now()), +(33929, 'Ore no Kanojo to Osananajimi ga Shuraba Sugiru', 'JP', now()), +(33930, 'Mondai-Ji-tachi ga Isekai Kara Kuru Sou Desu yo?', 'JP', now()), +(33931, 'K-Pop Tasty Road', 'US', now()), +(33932, 'Vividred Operation', 'JP', now()), +(33933, 'Boxing''s Best of 2012', 'US', now()), +(33934, 'Tamako Market', 'JP', now()), +(33935, 'Swamp''d!', 'US', now()), +(33936, 'Sasami-san@Ganbaranai', 'JP', now()), +(33937, 'Kotoura-san', 'JP', now()), +(33939, 'A to Z of TV Gardening', 'UK', now()), +(33940, 'A Thousand Kisses', 'KR', now()), +(33941, 'Panda and Hedgehog', 'KR', now()), +(33942, 'Prosecutor Princess', 'KR', now()), +(33943, 'The King of Dramas', 'KR', now()), +(33944, 'Vampire Prosecutor', 'KR', now()), +(33945, 'My Princess', 'KR', now()), +(33946, 'Yoake Mae yori Ruriiro na', 'JP', now()), +(33948, 'Mangirl!', 'JP', now()), +(33949, 'Yama no Susume', 'JP', now()), +(33950, 'Puchimas!', 'JP', now()), +(33951, 'Love Live!', 'JP', now()), +(33952, 'Inside Death Row with Trevor McDonald', 'UK', now()), +(33953, 'Asatte no Houkou', 'JP', now()), +(33954, 'Pumpkin Scissors', 'JP', now()), +(33955, 'Tenpou Ibun Ayakashi Ayashi', 'JP', now()), +(33956, 'Paddy''s TV Guide', 'UK', now()), +(33957, 'John Bishop''s Only Joking', 'UK', now()), +(33958, 'The Scene', 'US', now()), +(33959, 'D.C. III ~Da Capo III~', 'JP', now()), +(33960, 'Chaves Animado', 'PY', now()), +(33961, 'Voyage Of The Continents 2012', 'US', now()), +(33962, 'Max Steel (2013)', 'US', now()), +(33963, 'The Vatican', 'US', now()), +(33964, 'Harry and Paul''s Magnificent Sporting Moments', 'UK', now()), +(33965, 'Locomotion: Dan Snow''s History of Railways', 'UK', now()), +(33966, 'Funny Business', 'UK', now()), +(33967, 'Growing Up Poor', 'UK', now()), +(33969, 'Het België van...', 'NL', now()), +(33970, 'Full House 2', 'KR', now()), +(33971, 'Johnny Sokko and His Flying Robot', 'JP', now()), +(33972, 'Bravest Warriors', 'US', now()), +(33973, 'Amalies Jul', 'NO', now()), +(33974, 'Det gode selskap', 'NO', now()), +(33975, 'После Школы', 'EE', now()), +(33976, 'Incredible Crew', 'US', now()), +(33977, 'The Oaks', 'US', now()), +(33978, 'Obstetrics and Gynecology Doctors', 'KR', now()), +(33979, 'Fast Foods Gone Global', 'US', now()), +(33980, 'Центральное телевидение', 'RU', now()), +(33981, 'Ontvoerd', 'NL', now()), +(34088, 'Star Trek: The Helena Chronicles', 'US', now()), +(33983, 'Count Arthur Strong', 'UK', now()), +(33984, 'Psychobitches', 'UK', now()), +(33985, 'I Love The 1880s', 'US', now()), +(33986, 'Fatmagül''ün Suçu Ne?', 'TR', now()), +(33987, 'Heroes of Hell''s Highway', 'US', now()), +(33988, 'Pavarotti Plus', 'UK', now()), +(33989, 'A Saab Story', 'UK', now()), +(33990, 'Cirque Berzerk', 'UK', now()), +(33991, 'Andre Rieu: New York Memories', 'UK', now()), +(33992, 'MTV''S CLUB NYE', 'US', now()), +(33993, 'RV', 'US', now()), +(33994, 'Island Hunters', 'US', now()), +(33995, 'Nattpatruljen', 'NO', now()), +(33996, 'Sirkus Northug', 'NO', now()), +(33997, 'Tone', 'NO', now()), +(33998, 'Halvbroren', 'NO', now()), +(33999, 'Life on Fire', 'US', now()), +(34000, '180 Days: A Year Inside An American High School', 'US', now()), +(34001, 'Kind Hearted Woman', 'US', now()), +(34002, '4Music''s Big 2012 Mash Up!', 'UK', now()), +(34003, 'Every Big Number 1 of 2012', 'UK', now()), +(34004, 'The Celebrity Rich List', 'UK', now()), +(34005, 'Mel C''s Best Number 1s of the Noughties!', 'UK', now()), +(34006, 'The Hotmix', 'UK', now()), +(34007, '100 New Year''s Party Floorfillers', 'UK', now()), +(34008, 'Non-Stop New Year''s Eve Party!', 'UK', now()), +(34009, 'Lost & Found (2013)', 'US', now()), +(34010, 'Over/Under', 'US', now()), +(34011, 'NY ER', 'US', now()), +(34012, 'Treasure Detectives', 'US', now()), +(34013, 'The Car Chasers', 'US', now()), +(34014, 'The Next Big Thing', 'US', now()), +(34015, 'Money Talk$', 'US', now()), +(34016, 'Liquidate Your Life', 'US', now()), +(34017, 'The Big Fix', 'US', now()), +(34018, 'The Staircase', 'US', now()), +(34019, 'Trouble Next Door', 'US', now()), +(34020, 'Cracked', 'CA', now()), +(34021, 'Courage In Red', 'CA', now()), +(34022, 'Emil i Lönneberga', 'SE', now()), +(34023, 'Pippi Långstrump', 'SE', now()), +(34024, 'Flower Boy Ramyun Shop', 'KR', now()), +(34026, 'Spartacus: Blood and Sand - Motion Comic', 'US', now()), +(34027, 'Gyeoul Yeonga', 'KR', now()), +(34028, 'Enbuske & Linnanahde Crew', 'FI', now()), +(34029, 'Suomen Surkein Kuski', 'FI', now()), +(34030, 'Matkaoppaat', 'FI', now()), +(34031, 'Deadliest Space Weather', 'US', now()), +(34032, 'Comedian vindt werk', 'BE', now()), +(34033, 'Ypäjä', 'FI', now()), +(34034, 'Satuhäät', 'FI', now()), +(34036, 'Money Barn', 'US', now()), +(34037, 'Eating the Enemy', 'US', now()), +(34038, 'Vegas Brides', 'US', now()), +(34039, 'Immortalized', 'US', now()), +(34040, 'Wedding Hunters', 'US', now()), +(34041, 'Food Court Wars', 'US', now()), +(34042, 'Gentle Giants', 'US', now()), +(34043, 'GASS', 'US', now()), +(34044, 'Bellator 360', 'US', now()), +(34045, 'Bellator MMA Live', 'US', now()), +(34048, 'The UK Music Video Chart', 'UK', now()), +(34051, 'The Big Five-O', 'UK', now()), +(34052, 'Biggest Selling...', 'UK', now()), +(34053, 'The World''s Sexiest Star: Top 50', 'UK', now()), +(34054, 'From Day 1', 'UK', now()), +(34055, 'Will Best''s Outrageous Vegas! Top 20', 'UK', now()), +(34056, 'The World''s Greatest Movie Songs!', 'UK', now()), +(34057, 'Elite Tactical Unit: S.W.A.T.', 'US', now()), +(34058, 'King of the Spring', 'US', now()), +(34059, 'Bottom Feeders', 'US', now()), +(34060, 'My Life Is a Joke', 'US', now()), +(34061, 'Stars In Danger: The High Dive', 'US', now()), +(34062, 'Doraemon (1979)', 'JP', now()), +(34064, 'Suit Up', 'US', now()), +(34065, 'This Movie Sucks!', 'CA', now()), +(34066, 'Cage Fighters'' Wives', 'UK', now()), +(34067, 'Nazi Underworld', 'US', now()), +(34068, '4 o''Clock Club', 'UK', now()), +(34069, 'The Dumping Ground', 'UK', now()), +(34070, 'Game Changers', 'US', now()), +(34071, 'Jedward''s Big Adventure', 'UK', now()), +(34072, 'Totally Rubbish', 'UK', now()), +(34073, 'Len Goodman''s Dancing Feet: The British Ballroom Story', 'UK', now()), +(34074, 'The Richest Songs in the World', 'UK', now()), +(34075, 'Hollywood''s Lost Screen Goddess: Clara Bow', 'UK', now()), +(34076, 'Numb: Simon Amstell Live at the BBC', 'UK', now()), +(34077, 'Fifties British War Films: Days of Glory', 'UK', now()), +(34078, 'Robin Gibb''s Titanic Requiem', 'UK', now()), +(34079, 'Baby Makers: The Fertility Clinic', 'UK', now()), +(34080, 'The Riviera: A History in Pictures', 'UK', now()), +(34081, 'Carved with Love: The Genius of British Woodwork', 'UK', now()), +(34082, 'Lang Lang: The Art of Being a Virtuoso', 'UK', now()), +(34083, 'Food Factory (US)', 'US', now()), +(34084, 'The Ultimate Guide to the Presidents', 'US', now()), +(34085, 'Wild Deep', 'US', now()), +(34086, 'Bobby''s Dinner Battle', 'US', now()), +(34087, 'Desperate Measures', 'US', now()), +(34089, 'Crème de la Crème', 'BE', now()), +(34090, 'Het Spiegelpaleis', 'BE', now()), +(34092, 'Container Wars', 'US', now()), +(34093, 'Swamp Hunters', 'US', now()), +(34094, 'Bob''s New Heart Show', 'US', now()), +(34096, 'La loi selon Bartoli', 'FR', now()), +(34097, 'Zielonogórska Noc Kabaretowa', 'PL', now()), +(34098, 'A Man Called God', 'KR', now()), +(34099, 'From the Basement', 'UK', now()), +(34100, 'The Grierson Awards', 'UK', now()), +(34101, 'Antiques House', 'UK', now()), +(34102, 'Rodelinda', 'UK', now()), +(34103, 'Satyagraha', 'UK', now()), +(34104, '... At the Isle of Wight', 'UK', now()), +(34105, 'Ken Follett''s Journey Into the Dark Ages', 'UK', now()), +(34106, 'Jelly Jamm', 'UK', now()), +(34107, 'Little Lodgers', 'UK', now()), +(34108, 'Amnesia', 'JP', now()), +(34110, 'The Governor''s Wife', 'US', now()), +(34111, 'Rodeo Girls', 'US', now()), +(34112, 'Maoyū Maō Yūsha', 'JP', now()), +(34113, 'Sin tetas no hay paraíso', 'ES', now()), +(34114, 'Valérian et Laureline', 'FR', now()), +(34115, 'DC Nation Shorts', 'US', now()), +(34116, 'O Canto da Sereia', 'BR', now()), +(34117, 'A Gentleman''s Dignity', 'KR', now()), +(34118, 'Broadchurch', 'UK', now()), +(34119, 'Senran Kagura', 'JP', now()), +(34120, 'Count It Down: Hollywood''s Quickest Marriages', 'US', now()), +(34121, 'Golden Globes Fashion Wrap', 'US', now()), +(34122, 'Project Z: History of the Zombie Apocalypse', 'US', now()), +(34123, 'Alaskan Brawlers: Alaskan Showdown', 'US', now()), +(34124, 'Extreme Smuggling', 'US', now()), +(34125, 'Shipwreck Men', 'US', now()), +(34126, 'The Taste', 'US', now()), +(34127, 'Camp', 'US', now()), +(34128, 'Swamp Pawn', 'US', now()), +(34129, 'Rocket Monkeys', 'CA', now()), +(34130, 'New Game Plus', 'AU', now()), +(34131, 'The Wild Things', 'UK', now()), +(34132, 'High School USA!', 'US', now()), +(34133, 'A New Age of Exploration', 'US', now()), +(34134, 'Italian Cruise Ship Disaster', 'US', now()), +(34135, 'Secrets of Highclere Castle', 'US', now()), +(34136, 'Space Shuttle Columbia', 'US', now()), +(34137, 'Lifecasters', 'US', now()), +(34138, 'Makers', 'US', now()), +(34139, 'Battle for the Elephants', 'US', now()), +(34140, 'Great Houses with Julian Fellowes', 'UK', now()), +(34141, 'What Would Ryan Lochte Do?', 'US', now()), +(34142, 'Minami-ke: Tadaima', 'JP', now()), +(34143, 'Hakkenden: Touhou Hakken Ibun', 'JP', now()), +(34144, 'Karneval', 'JP', now()), +(34145, 'Wayward Pines', 'US', now()), +(34146, 'Family Trade', 'US', now()), +(34147, 'Метод Фрейда', 'RU', now()), +(34148, 'Historieätarna', 'SE', now()), +(34149, 'Hver gang vi møtes', 'NO', now()), +(34150, 'Absolute Genius With Dick And Dom', 'UK', now()), +(34151, 'Howard Goodall''s Story Of Music', 'UK', now()), +(34152, 'Super Human Challenge', 'UK', now()), +(34153, 'Посредник', 'RU', now()), +(34154, 'Fejezetek a magyar vasutak történetéből', 'HU', now()), +(34155, '''t Schaep in Mokum', 'NL', now()), +(34156, 'Дневники Темного \\ Щоденники Темного', 'UA', now()), +(34157, 'De Wereld Leert Door', 'NL', now()), +(34158, 'Friday Night Fights', 'US', now()), +(34159, 'GJ-bu', 'JP', now()), +(34160, 'Wonders Of Life', 'UK', now()), +(34161, 'Возмездие', 'RU', now()), +(34162, 'Don Juan y Su Bella Dama', 'AR', now()), +(34163, 'Mi Corazón Insiste… en Lola Volcán', 'US', now()), +(34164, 'Seed', 'CA', now()), +(34165, 'Gonzaga: De Pai Para Filho', 'BR', now()), +(34166, 'The Originals', 'US', now()), +(34167, 'Hataraki Man (2006)', 'JP', now()), +(34168, 'Soy Tu Dueña', 'MX', now()), +(34169, 'Cuticle Tantei Inaba', 'JP', now()), +(34170, 'Courtesy of Zettai Karen Children: The Unlimited', 'JP', now()), +(34171, 'Borealis', 'CA', now()), +(34172, 'Penny Dreadful', 'US', now()), +(34173, 'Legends of Chima', 'US', now()), +(34174, 'Tierra de Lobos', 'ES', now()), +(34175, 'MasterChef: The Professionals (AU)', 'AU', now()), +(34176, 'Met man en macht', 'BE', now()), +(34177, 'Poseurs', 'US', now()), +(34178, 'The Arsenio Hall Show (2013)', 'US', now()), +(34179, 'Secret Life of Dogs', 'UK', now()), +(34180, 'Cruise Ship Disaster', 'US', now()), +(34181, 'Sloth Bear', 'US', now()), +(34182, 'Croc Invasion', 'US', now()), +(34183, 'Speed Dreams The Fastest Place On Earth', 'UK', now()), +(34184, 'Wendy', 'US', now()), +(34185, 'Padre Coraje', 'AR', now()), +(34186, 'Bakumatsu Kikansetsu Irohanihoheto', 'JP', now()), +(34189, 'Senyuu', 'JP', now()), +(34190, 'The Central Park Five', 'US', now()), +(34191, 'Underground Railroad', 'US', now()), +(34192, 'Constitution USA with Peter Sagal', 'US', now()), +(34193, 'National Memorial Day Concert', 'US', now()), +(34194, 'Splash (US)', 'US', now()), +(34195, 'Prospectors', 'US', now()), +(34196, 'Deal With It', 'US', now()), +(34197, 'Beyond the Headlines', 'US', now()), +(34198, 'Stuff You Should Know', 'US', now()), +(34199, 'The Big Reunion', 'UK', now()), +(34200, 'Who Do You Think You Are? (ZA)', 'ZA', now()), +(34201, 'Cold Justice', 'US', now()), +(34202, 'Alexander the Great', 'US', now()), +(34203, 'They Came Back', 'US', now()), +(34204, 'Quirke', 'UK', now()), +(34205, 'I Am Victor', 'US', now()), +(34206, 'Rory and Will - Champions of the World', 'UK', now()), +(34207, 'Young, Mormon & Single', 'UK', now()), +(34208, 'Crazy for Party Drugs', 'UK', now()), +(34209, 'Life after War: Haunted by Helmand', 'UK', now()), +(34210, 'Nina and the Neurons', 'UK', now()), +(34211, 'Help! My Supply Teacher Is Magic', 'UK', now()), +(34212, 'Brain Hospital: Saving Lives', 'UK', now()), +(34213, 'Welsh Railways', 'UK', now()), +(34214, 'The Mary Berry Story', 'UK', now()), +(34215, 'People Like Us', 'UK', now()), +(34216, 'Brain Doctors', 'UK', now()), +(34217, 'Hairy Bikers Everyday Gourmet', 'UK', now()), +(34218, 'The Planners', 'UK', now()), +(34219, 'Charlie Brooker''s Weekly Wipe', 'UK', now()), +(34220, 'Monty Don''s French Gardens', 'UK', now()), +(34221, 'Stitch Me, Lift Me, Tuck Me', 'UK', now()), +(34222, 'The Spa', 'UK', now()), +(34223, 'Danny Baker''s Great Album Showdown', 'UK', now()), +(34224, 'The TV Hit Awards', 'UK', now()), +(34225, 'Coronation Street Secrets', 'UK', now()), +(34226, 'Sex, Lies & Soaps', 'UK', now()), +(34227, 'Blood Strangers', 'UK', now()), +(34228, 'Hollyoaks Later', 'UK', now()), +(34229, 'Childrens Party At The Palace', 'UK', now()), +(34230, 'Janela Indiscreta', 'PT', now()), +(34231, 'Días de cine', 'ES', now()), +(34232, 'El Hormiguero', 'ES', now()), +(34233, 'The British Academy Film Awards: Red Carpet', 'UK', now()), +(34234, '50 Greatest Harry Potter Moments', 'UK', now()), +(34235, 'Made In Hollywood', 'US', now()), +(34236, 'Mankind Decoded', 'US', now()), +(34237, 'Acesso MTV', 'PT', now()), +(34238, 'Cinema 3', 'ES', now()), +(34239, 'Pasión', 'MX', now()), +(34240, 'Make Me A Muslim', 'UK', now()), +(34241, 'Lost Kingdoms of South America', 'UK', now()), +(34242, 'Glen Campbell', 'UK', now()), +(34243, 'Tales of Winter: The Art of Snow and Ice', 'UK', now()), +(34244, 'Bob Servant, Independent', 'UK', now()), +(34245, 'Jonathan Meades: The Joy of Essex', 'UK', now()), +(34246, 'Climbing Everest with a Mountain on My Back: The Sherpa''s Story', 'UK', now()), +(34247, 'Britain''s Holocaust Survivors', 'UK', now()), +(34248, 'Who Let the Dogs Out and About?', 'UK', now()), +(34249, 'Just Kidding (UK)', 'UK', now()), +(34250, 'Junior Vets', 'UK', now()), +(34251, 'Sadie J', 'UK', now()), +(34252, 'Ghost in the Shell: Arise', 'AJ', now()), +(34253, '10 Ways to End the World', 'SE', now()), +(34254, '7th Grade Civil Servant', 'KR', now()), +(34255, 'No Kidding (Canada)', 'CA', now()), +(34256, 'The Outs', 'US', now()), +(34257, 'Flower Boy Next Door', 'KR', now()), +(34258, 'Il Falco e la Colomba', 'IT', now()), +(34259, 'Masterchef (ITA)', 'IT', now()), +(34260, 'Henry Hugglemonster', 'UK', now()), +(34261, 'Le Grand 8', 'FR', now()), +(34262, 'ТАСС уполномочен заявить…', 'SU', now()), +(34263, 'Пан или пропал', 'RU', now()), +(34264, 'Heldt', 'DE', now()), +(34265, 'Being Eileen', 'UK', now()), +(34266, 'Common Denominator', 'UK', now()), +(34267, 'Canimals', 'UK', now()), +(34268, 'Special Agent Oso', 'US', now()), +(34269, 'Common Ground', 'UK', now()), +(34270, 'Виола Тараканова. В мире преступных страстей', 'RU', now()), +(34271, 'Wreckers At Dead Eye', 'UK', now()), +(34272, 'Rake (2013)', 'US', now()), +(34273, 'Food And Drink (2013)', 'UK', now()), +(34274, 'Dancing On The Edge', 'UK', now()), +(34275, 'Даша Васильева. Любительница частного сыска', 'RU', now()), +(34276, 'Zombieland', 'US', now()), +(34277, 'Helix', 'US', now()), +(34278, 'Bam''s Bad Ass Game Show', 'US', now()), +(34279, 'Sea City', 'UK', now()), +(34280, 'Deadly Mission Madagascar', 'UK', now()), +(34281, 'The Railway - Keeping Britain On Track', 'UK', now()), +(34282, 'The Year Of Making Love', 'UK', now()), +(34283, 'Upload with Shaquille O''Neal', 'US', now()), +(34284, 'Silver Rush', 'US', now()), +(34285, 'When Albums Ruled The World', 'UK', now()), +(34286, 'Angelina Ballerina: The Next Steps', 'US', now()), +(34287, 'Ernani', 'UK', now()), +(34288, 'Vie Cachee Des Oeuvres', 'FR', now()), +(34289, 'Darbar Festival 2012', 'UK', now()), +(34290, 'The Enchanted Island', 'UK', now()), +(34291, 'Rasters', 'BE', now()), +(34292, 'Mia på Grötö', 'SE', now()), +(34293, 'Pé Na Cova', 'BR', now()), +(34294, 'Mecum Auto Auctions', 'US', now()), +(34295, 'Mighty Uke', 'UK', now()), +(34296, 'The Source', 'UK', now()), +(34297, 'Orchestre de Paris', 'UK', now()), +(34298, 'The New Great Bolshoi', 'UK', now()), +(34299, 'La Traviata', 'UK', now()), +(34300, 'The Alternative Comedy Experience', 'UK', now()), +(34301, 'J Roc''s Ultimate Vegas Party: Top 20', 'UK', now()), +(34302, 'vs Top...', 'UK', now()), +(34303, '50 Cent''s Hottest Hook-Ups', 'UK', now()), +(34304, 'The Hotlist', 'UK', now()), +(34305, 'Hottest Hunks 2013', 'UK', now()), +(34306, 'Firing 50', 'UK', now()), +(34307, 'Rita Ora''s Party Rockin''', 'UK', now()), +(34308, 'Will Best''s Whopping Vegas Wedding!', 'UK', now()), +(34310, 'BBC World News', 'UK', now()), +(34311, 'Anjo Mau / Жестокий ангел', 'BR', now()), +(34312, 'El Elegido', 'AR', now()), +(34313, 'A Century of Fatherhood', 'UK', now()), +(34314, 'El Rostro de la Venganza', 'US', now()), +(34315, 'A Life Without Work', 'UK', now()), +(34316, 'A Million Pound Place In The Sun', 'UK', now()), +(34317, 'A Quiet Word With', 'AU', now()), +(34318, 'U.S. Figure Skating Championship', 'US', now()), +(34319, 'Super Clyde', 'US', now()), +(34320, 'Boomerang', 'US', now()), +(34321, 'The Returned', 'US', now()), +(34322, 'For What It''s Worth', 'US', now()), +(34323, 'The Witch Trial', 'JP', now()), +(34324, 'Yes, Prime Minister (2013)', 'UK', now()), +(34325, 'Killer Women', 'US', now()), +(34326, 'Influence', 'US', now()), +(34327, 'Believe', 'US', now()), +(34328, 'Undateable (2013)', 'US', now()), +(34329, 'Robot Combat League', 'US', now()), +(34330, 'Jack Johnson', 'US', now()), +(34331, 'How the Hell Am I Normal?', 'US', now()), +(34332, 'Mixology', 'US', now()), +(34333, 'Rappers in de sneeuw', 'NL', now()), +(34334, 'Incarnation of Money', 'KR', now()), +(34335, 'Montecristo', 'AR', now()), +(34336, 'Death: It''s a Living', 'US', now()), +(34337, 'Plastic Wives', 'US', now()), +(34338, 'Built', 'US', now()), +(34339, 'Радио-Т', 'RU', now()), +(34340, 'Секунда до...', 'RU', now()), +(34341, 'Намедни', 'RU', now()), +(34342, 'Is''t nog ver?', 'BE', now()), +(34343, 'Inside Out South East', 'UK', now()), +(34344, 'Inside Out South', 'UK', now()), +(34345, 'Inside Out South West', 'UK', now()), +(34346, 'Inside Out West', 'UK', now()), +(34347, 'Inside Out West Midlands', 'UK', now()), +(34348, 'Inside Out North West', 'UK', now()), +(34349, 'Inside Out North East & Cumbria', 'UK', now()), +(34350, 'Inside Out Yorkshire & Lincolnshire', 'UK', now()), +(34351, 'Inside Out East Midlands', 'UK', now()), +(34352, 'Inside Out East', 'UK', now()), +(34353, 'Inside Out England', 'UK', now()), +(34756, 'The World That They Live In', 'KR', now()), +(34355, 'Obsessive Compulsive Cleaners', 'UK', now()), +(34356, 'From The Heart', 'UK', now()), +(34357, 'Britain''s Secret Shoppers', 'UK', now()), +(34358, 'Penguins - Spy in the Huddle', 'UK', now()), +(34359, 'Preachers'' Daughters', 'US', now()), +(34360, 'Контора', 'RU', now()), +(34361, '24 Hours To Kill', 'IE', now()), +(34362, 'Meet The Izzards', 'UK', now()), +(34363, 'Bet On Your Baby', 'US', now()), +(34364, 'Sarah And Duck', 'UK', now()), +(34365, 'Murder On The Victorian Railway', 'UK', now()), +(34366, 'Floricienta', 'AR', now()), +(34367, 'That Winter, The Wind Blows', 'KR', now()), +(34368, 'Spy (US)', 'US', now()), +(34369, 'Tribes (2013)', 'US', now()), +(34370, 'Bad Management', 'US', now()), +(34371, 'Bad Mom', 'US', now()), +(34372, 'Continuing Fred', 'US', now()), +(34373, 'I Didn’t Do It (2013)', 'US', now()), +(34374, 'Bits & Pieces', 'US', now()), +(34375, 'Madison High', 'US', now()), +(34376, 'Calendar (Lunchtime Bulletin)', 'UK', now()), +(34377, 'Calendar (Late Bulletin)', 'UK', now()), +(34378, 'Calendar (Weekend Bulletin)', 'UK', now()), +(34379, 'Mumford & Sons', 'US', now()), +(34380, 'Crime and Punishment (2002)', 'UK', now()), +(34381, 'The Tunnel', 'UK', now()), +(34382, 'Inquisitio', 'FR', now()), +(34633, 'Ultimate Soldier Challenge', 'US', now()), +(34384, 'ITV News West Country (Late Bulletin)', 'UK', now()), +(34385, 'Maou', 'JP', now()), +(34386, 'Sunny Skies', 'NZ', now()), +(34387, 'The Blue Rose', 'NZ', now()), +(34388, 'Agent Anna', 'NZ', now()), +(34389, 'You''re Skitting Me', 'AU', now()), +(34391, 'Zeit der Helden', 'DE', now()), +(34392, 'As Australian As', 'AU', now()), +(34393, 'Australia Smashes Guinness World Records', 'AU', now()), +(34394, 'Cenerentola', 'IT', now()), +(34395, 'The Secrets of Everything', 'UK', now()), +(34396, 'Teenage Fairytale Dropouts', 'AU', now()), +(34397, 'Savage Family Diggers', 'US', now()), +(34398, 'Alguien Te Mira', 'US', now()), +(34399, 'Business Breakfast', 'UK', now()), +(34400, 'La Patrona', 'US', now()), +(34401, 'ITV News West Country (Lunchtime Bulletin)', 'UK', now()), +(34402, 'ITV News West Country (Weekend Bulletin)', 'UK', now()), +(34403, 'Trauma (CA)', 'CA', now()), +(34404, 'Puntero, El', 'AR', now()), +(34405, 'Tabletop', 'US', now()), +(34406, 'Her Majesty''s Prison Aylesbury', 'UK', now()), +(34407, 'Hugh''s Big Fish Fight', 'UK', now()), +(34408, 'Speidi: Scandal, Secrets and Surgery!', 'UK', now()), +(34409, 'Jue Dui Darling', 'TW', now()), +(34410, 'Prosperity', 'IE', now()), +(34411, 'Barairo no Seisen', 'JP', now()), +(34412, 'Kimi no Te ga Sasayaite Iru', 'JP', now()), +(34413, 'Kodoku no Gurume', 'JP', now()), +(34414, 'Sotsu Uta', 'JP', now()), +(34415, 'Tsugunai', 'JP', now()), +(34416, 'Tsumi to Batsu', 'JP', now()), +(34417, 'Hissen med Filip och Fredrik', 'SE', now()), +(34418, 'Hyôten', 'JP', now()), +(34419, 'Torka aldrig tårar utan handskar', 'SE', now()), +(34420, 'Fuego en la Sangre', 'MX', now()), +(34421, 'Kurenai Sanshirou', 'JP', now()), +(34422, 'La Traición', 'CO', now()), +(34423, 'Please Like Me', 'AU', now()), +(34424, '24CH', 'CA', now()), +(34431, 'The Far Cry Experience', 'US', now()), +(34426, 'Beauty and the Beat', 'NL', now()), +(34427, '099 Central', 'AR', now()), +(34428, 'Щит и меч', 'SU', now()), +(34429, 'Morir Dos Veces', 'MX', now()), +(34430, 'Corazón Salvaje', 'MX', now()), +(34432, 'Los Plateados', 'MX', now()), +(34433, 'İntikam', 'TR', now()), +(34434, 'Kucuk Sırlar', 'TR', now()), +(34435, 'Истории российского юмора', 'RU', now()), +(34436, 'Delirium', 'US', now()), +(34437, 'NFL Characters Unite', 'US', now()), +(34438, 'Chiller 13', 'US', now()), +(34439, 'Second Sight (USA)', 'US', now()), +(34440, 'King Tut', 'US', now()), +(34441, 'Big Easy Express', 'US', now()), +(34442, 'History of the Eagles', 'US', now()), +(34443, 'Alaska Fish Wars', 'US', now()), +(34444, 'Something Borrowed, Something New', 'US', now()), +(34445, 'Ironside (2013)', 'US', now()), +(34446, 'TeenNick Top 10', 'US', now()), +(34447, 'Freakshow', 'US', now()), +(34448, 'Zeke''s Pad', 'AU', now()), +(34449, 'The DaVincibles', 'AU', now()), +(34450, 'A Place To Call Home', 'AU', now()), +(34451, 'Big Rig Bounty Hunters', 'US', now()), +(34452, 'The Radio', 'NZ', now()), +(34453, 'The Onion Presents: The News', 'US', now()), +(34454, 'Alpha House', 'US', now()), +(34455, 'Browsers', 'US', now()), +(34456, 'Those Who Can''t', 'US', now()), +(34457, 'Support', 'US', now()), +(34458, 'Magic Monkey Billionaire', 'US', now()), +(34459, 'Mort Grimley', 'US', now()), +(34460, 'TGIF', 'US', now()), +(34461, 'Subbin''', 'US', now()), +(34462, 'California Kidds', 'US', now()), +(34463, 'Mansitters', 'US', now()), +(34464, 'Kings of Van Nuys', 'US', now()), +(34465, 'TOOTH', 'US', now()), +(34466, 'My Three Boyfriends', 'US', now()), +(34467, 'Crazy Ones', 'US', now()), +(34468, 'Anatomy of Violence', 'US', now()), +(34469, 'Intelligence (US)', 'US', now()), +(34470, 'Miles', 'US', now()), +(34471, 'Police Drama', 'US', now()), +(34472, 'Jacked Up', 'US', now()), +(34473, 'The Bible', 'US', now()), +(34474, 'The Agony Of Life', 'AU', now()), +(34475, 'A láthatatlan madárfotós', 'HU', now()), +(34476, 'Állomás', 'HU', now()), +(34477, 'Countdown To The Red Carpet', 'US', now()), +(34478, 'The Apprentice (NZ)', 'NZ', now()), +(34479, 'Fame in the Family', 'US', now()), +(34480, 'Inside: 21st Century Warship', 'US', now()), +(34481, 'TVGuide Grammy Awards Pre-Show', 'US', now()), +(34482, 'Граница: Таежный роман', 'RU', now()), +(34483, 'Моими глазами', 'RU', now()), +(34484, 'Chivalry and Betrayal: The Hundred Years War', 'UK', now()), +(34485, 'The Sound and the Fury: A Century of Music', 'UK', now()), +(34486, 'The Beatles'' Please Please Please Me: Remaking A Classic', 'UK', now()), +(34487, 'The Holocaust and My Father: Six Million and One', 'UK', now()), +(34488, 'Plane Crash', 'UK', now()), +(34489, 'The Dare Devil', 'UK', now()), +(34490, 'My Life', 'UK', now()), +(34491, 'The Real Abraham Lincoln: Revealed', 'US', now()), +(34492, 'Lincoln''s Secret Killer: Revealed', 'US', now()), +(34493, 'Top Secrets', 'US', now()), +(34494, 'The Real George Washington: Revealed', 'US', now()), +(34495, 'Big Deal', 'UK', now()), +(34496, 'Wild West Alaska', 'US', now()), +(34497, 'Ching''s Chinese New Year', 'US', now()), +(34498, 'NCIS: Red', 'US', now()), +(34499, 'From The Basement (US)', 'US', now()), +(34500, 'A nagyeszű sündisznócska', 'HU', now()), +(34501, 'Szeszélyes', 'HU', now()), +(34502, 'Kings of Crash', 'US', now()), +(34503, 'Island Practice', 'US', now()), +(34504, 'Emperatriz', 'MX', now()), +(34506, 'The Leftovers', 'US', now()), +(34507, 'Peter Rabbit', 'US', now()), +(34508, 'One Life To Live (2013)', 'US', now()), +(34509, 'All My Children (2013)', 'US', now()), +(34510, 'Shining Inheritance', 'KR', now()), +(34511, '9 End 2 Outs', 'KR', now()), +(34512, 'A YoungArts Masterclass', 'US', now()), +(34513, '50 Ways to Leave Your Lover', 'US', now()), +(34514, 'March to Justice', 'US', now()), +(34515, 'I Got Away', 'US', now()), +(34516, 'Melanie Comarcho: Hello!', 'US', now()), +(34517, 'Bill Bellamy''s Ladies Night Out Comedy Tour', 'US', now()), +(34518, 'Failosophy', 'US', now()), +(34519, 'TVGuide Academy Awards Pre-Show', 'US', now()), +(34520, 'Schafkopf', 'DE', now()), +(34521, 'My Dirty Little Secret', 'US', now()), +(34522, 'Beat The Star (AU)', 'AU', now()), +(34523, 'Monstresses', 'US', now()), +(34524, 'NBA All-Star Celebrity Game', 'US', now()), +(34525, 'Spontaneous Construction', 'US', now()), +(34526, 'Stories from the Road to Freedom', 'US', now()), +(34527, 'Miracle Rising', 'US', now()), +(34528, 'Beyoncé: Life Is But a Dream', 'US', now()), +(34529, 'The Paranormal Project', 'US', now()), +(34530, 'Hidden in America', 'US', now()), +(34531, 'Roque Santeiro', 'BR', now()), +(34532, 'Lalaloopsy', 'US', now()), +(34533, 'Get Squiggling!', 'UK', now()), +(34534, 'Food Glorious Food', 'UK', now()), +(34535, 'The Wedding Shop', 'UK', now()), +(34536, 'Mary And Martha', 'UK', now()), +(34537, 'Un medico in famiglia', 'ES', now()), +(34538, 'Ninas Mal', 'CO', now()), +(34539, 'A Town & Country Murder', 'UK', now()), +(34540, 'Kimora: House of Fab', 'US', now()), +(34541, 'Chrissy Teigen: So Delushious!', 'US', now()), +(34542, 'Street Eats (US)', 'US', now()), +(34543, 'Alien Dawn', 'US', now()), +(34544, 'Model Killers', 'US', now()), +(34545, 'Wicked Single', 'US', now()), +(34546, 'Ottolenghi''s Mediterranean Feast', 'UK', now()), +(34547, 'Jack Taylor', 'UK', now()), +(34548, 'Lifestyles of the Rich and Famous (2013)', 'US', now()), +(34549, 'My Little Princess', 'UK', now()), +(34550, 'Lightfields', 'UK', now()), +(34551, 'Sila', 'TR', now()), +(34552, 'Sirius', 'KR', now()), +(34553, 'Vicious', 'UK', now()), +(34554, 'Склифосовский', 'RU', now()), +(34555, 'Шальной ангел', 'RU', now()), +(34556, 'Big Brother Canada', 'CA', now()), +(34557, 'Non smettere di sognare', 'IT', now()), +(34558, 'Sam Fox: Extreme Adventures', 'AU', now()), +(34559, 'Dancing Fools', 'US', now()), +(34560, 'The Vineyard', 'US', now()), +(34561, 'Mayday', 'UK', now()), +(34562, 'Bluestone 42', 'UK', now()), +(34563, 'Oxygen', 'US', now()), +(34564, 'Единственный мой грех', 'RU', now()), +(34565, 'Анжелика', 'RU', now()), +(34566, 'Проклятый рай', 'RU', now()), +(34567, 'The Surgeon General', 'US', now()), +(34568, 'Friends & Family (US)', 'US', now()), +(34569, 'The Terror', 'US', now()), +(34570, 'Montecito', 'US', now()), +(34571, 'The Wanted Life', 'US', now()), +(34572, 'Robber', 'KR', now()), +(34573, 'Dads (2013)', 'US', now()), +(34574, 'Pop Style', 'US', now()), +(34575, 'Luxe Life Miami', 'US', now()), +(34576, 'Mountain Movers', 'US', now()), +(34577, 'Man In The High Castle', 'US', now()), +(34578, 'NBA Rising Stars Challenge', 'US', now()), +(34579, 'Blackboard Wars', 'US', now()), +(34580, 'Спасти босса', 'RU', now()), +(34581, 'Girlfriend in a Coma', 'US', now()), +(34582, 'Blink (2013)', 'US', now()), +(34583, 'City Hall', 'US', now()), +(34584, 'Inside Combat Rescue', 'US', now()), +(34585, 'Lorimer', 'US', now()), +(34586, 'My Korean Deli', 'US', now()), +(34587, 'Ran Quartet', 'US', now()), +(34588, 'Assistance', 'US', now()), +(34589, 'The McCarthys', 'US', now()), +(34590, 'Reign', 'US', now()), +(34591, 'Reckless (US)', 'US', now()), +(34592, 'Wonderland (2013)', 'US', now()), +(34593, 'Bloodlines', 'US', now()), +(34594, 'Mourinho', 'UK', now()), +(34595, 'Top Model PL', 'PL', now()), +(34596, 'IRIS 2', 'KR', now()), +(34597, 'It''s Alright, Daddy''s Daughter', 'KR', now()), +(34598, 'Ben Fogle''s Year Of Adventure', 'UK', now()), +(34599, 'Celebrity Dish', 'US', now()), +(34600, 'Sports Illustrated: The Making of Swimsuit ''13', 'US', now()), +(34601, 'Best Ed', 'CA', now()), +(34602, 'Catch My Killer', 'US', now()), +(34603, 'Ladrón de Corazones', 'MX', now()), +(34604, 'Prince turn into Frog', 'TW', now()), +(34605, 'Silence', 'TW', now()), +(34606, 'Crazy Land', 'US', now()), +(34607, 'Seragoon Road', 'AU', now()), +(34608, 'What''s Cooking?', 'UK', now()), +(34609, 'Города и веси', 'RU', now()), +(34610, 'Freak', 'UK', now()), +(34611, 'Whaam! Roy Lichtenstein at the Tate Modern', 'UK', now()), +(34612, 'Madness in the Desert: Paris to Dakar', 'UK', now()), +(34613, 'Good Italy, Bad Italy: Girlfriend in a Coma', 'UK', now()), +(34614, 'Johnny Kingdom and the Bears of Alaska', 'UK', now()), +(34615, 'DNA (UK)', 'UK', now()), +(34616, 'How To Be Epic @ Everything', 'UK', now()), +(34617, 'All Over the Place', 'UK', now()), +(34618, 'VIP People', 'UK', now()), +(34619, 'In Time With You', 'TW', now()), +(34620, 'Biology Of Dads', 'UK', now()), +(34621, 'Underholdningsavdelingen', 'NO', now()), +(34622, 'Family Honor', 'KR', now()), +(34623, 'Iconic Movie Looks', 'US', now()), +(34624, 'Молодые и злые', 'RU', now()), +(34625, 'Richard III: The King in the Car Park', 'UK', now()), +(34626, 'The Tomorrow People (US)', 'US', now()), +(34627, 'Guns In America', 'US', now()), +(34628, 'The Path to Violence', 'US', now()), +(34629, 'A 60s Pop Flashback: Hullabaloo', 'US', now()), +(34630, 'The Piano Guys Live at Red Butte Garden', 'US', now()), +(34631, 'Love for Levon', 'US', now()), +(34632, 'Bear Grylls'' Wild Adventures', 'US', now()), +(34634, 'Wild Appalachia', 'US', now()), +(34635, 'Polar Bears: Edge of Existence', 'US', now()), +(34636, 'Tim Minchin & the Heritage Orchestra Live', 'US', now()), +(34637, 'Tropika Island of Treasure', 'ZA', now()), +(34638, 'War and Peace (2015)', 'UK', now()), +(34639, 'Weed Country', 'US', now()), +(34640, 'История российского юмора', 'RU', now()), +(34641, 'Нереальная история', 'RU', now()), +(34642, 'Power Rangers RPM', 'US', now()), +(34643, 'I Didn''t Know That', 'UK', now()), +(34644, 'The World According To Dick Cheney', 'US', now()), +(34645, 'Betrayal', 'US', now()), +(34646, 'Doubt', 'US', now()), +(34647, 'Lucky 7', 'US', now()), +(34648, 'Murder in Manhattan', 'US', now()), +(34649, 'Ask-i memnu', 'TR', now()), +(34650, 'Dog and Beth: On the Hunt', 'US', now()), +(34651, 'Freud', 'UK', now()), +(34652, 'City Lovers', 'KR', now()), +(34653, 'Sawan Biang', 'TH', now()), +(34654, 'Ying Ye 3 Jia 1', 'TW', now()), +(34655, 'The Magicians of Love', 'TW', now()), +(34656, 'The Seventh Day', 'HK', now()), +(34657, 'Love Storm', 'TW', now()), +(34658, 'Grave Trade', 'UK', now()), +(34659, 'Beat The Pack', 'UK', now()), +(34660, 'Venice', 'US', now()), +(34661, 'Divorce: A Love Story', 'US', now()), +(34662, 'Middle Age Rage', 'US', now()), +(34663, 'Crazy Gene', 'US', now()), +(34664, 'The Advocates', 'US', now()), +(34665, 'The Ordained', 'US', now()), +(34666, 'Friends with Better Lives', 'US', now()), +(34667, 'Capturing Crazy', 'US', now()), +(34668, 'Gaffigan', 'US', now()), +(34669, 'Mother''s Day (2013)', 'US', now()), +(34670, 'Shetland', 'UK', now()), +(34671, 'Dude, That''s My Ghost!', 'UK', now()), +(34672, 'Gogglebox', 'UK', now()), +(34673, 'Anna and Katy', 'UK', now()), +(34674, 'School 13 - Игрооргии', 'RU', now()), +(34675, 'West End Salvage', 'US', now()), +(34676, 'Литейный', 'RU', now()), +(34677, 'The World According to Anish Kapoor', 'UK', now()), +(34678, 'Glamour', 'UK', now()), +(34679, 'The Crash', 'UK', now()), +(34680, '16 Kids and Counting', 'UK', now()), +(34681, 'Gang Related', 'US', now()), +(34682, 'Being Mandela', 'US', now()), +(34683, '50 Ridiculously Rich People in Music', 'US', now()), +(34684, 'The Next Knuckler', 'US', now()), +(34685, 'Inspector De Luca', 'US', now()), +(34686, 'Blood of the Vine', 'US', now()), +(34687, 'I Solved a Murder', 'US', now()), +(34688, 'A Bryk at a Time', 'US', now()), +(34689, 'Insect Dissection: How Insects Work', 'UK', now()), +(34690, 'Planet Ant: Life Inside the Colony', 'UK', now()), +(34691, 'The Great British Winter', 'UK', now()), +(34692, 'Can Eating Insects Save the World?', 'UK', now()), +(34693, 'Derksen & ...', 'NL', now()), +(34694, 'No. One Son', 'US', now()), +(34695, 'American Cougar: Revealed', 'US', now()), +(34696, 'Cat Wars: Lion vs. Cheetah: Revealed', 'US', now()), +(34697, 'Alaska Pickers', 'US', now()), +(34698, 'Ancient Egypt: Life and Death in the Valley of the Kings', 'UK', now()), +(34699, 'The Ottomans: Europe''s Muslim Emperors', 'UK', now()), +(34700, 'To My Future Assistant', 'US', now()), +(34701, 'A Very British Wedding', 'UK', now()), +(34702, 'War and Empire: The Battle for Syria with Dan Snow', 'UK', now()), +(34703, 'Pagans and Pilgrims: Britain''s Holiest Places', 'UK', now()), +(34704, 'Six Nations Rugby', 'UK', now()), +(34705, 'The Marriage of Figaro', 'UK', now()), +(34706, 'The Classic Rock ''n'' Roll of Honour Awards', 'UK', now()), +(34707, 'Blur: Parklive', 'UK', now()), +(34708, 'Sculpting Life', 'UK', now()), +(34709, 'Tchaikovsky: Pique Dame', 'UK', now()), +(34710, 'Lakme', 'UK', now()), +(34711, 'In Mondrian''s Studio', 'UK', now()), +(34712, 'Mistérios de Lisboa', 'PT', now()), +(34713, 'Discovering: Cash', 'UK', now()), +(34714, 'La Boheme', 'UK', now()), +(34715, 'Andy Warhol: A Documentary Film', 'UK', now()), +(34716, 'Cinema Komunisto', 'UK', now()), +(34717, 'The Mikado', 'UK', now()), +(34718, 'Casanova Killers', 'US', now()), +(34719, 'Jam Leuy Ruk', 'TH', now()), +(34720, 'Na krawędzi', 'PL', now()), +(34721, 'R U Faster Than a Redneck?', 'US', now()), +(34722, 'Heartbeat Love', 'TW', now()), +(34723, 'Armed & Ready', 'US', now()), +(34724, 'Mac Miller and the Most Dope Family', 'US', now()), +(34725, 'Rescue My Renovation', 'US', now()), +(34726, 'Sleepy Hollow', 'US', now()), +(34727, 'The Gossip Game', 'US', now()), +(34728, '100 Sexiest Artists', 'US', now()), +(34729, 'Glam & Gold', 'US', now()), +(34730, 'You''re Whole', 'US', now()), +(34731, 'The Greatest Event in Television History', 'US', now()), +(34732, 'How to Get to Heaven with the Hutterites', 'UK', now()), +(34733, 'Kings of the Ring', 'UK', now()), +(34734, 'Secret Knowledge', 'UK', now()), +(34735, 'Treasures of the Louvre', 'UK', now()), +(34736, 'Russell Brand''s Give it Up Gig for Comic Relief', 'UK', now()), +(34737, 'Michael Grade and the World''s Oldest Joke', 'UK', now()), +(34738, 'Off the Air', 'US', now()), +(34739, 'Comic Relief''s Big Chat with Graham Norton', 'UK', now()), +(34740, 'Ross Noble Freewheeling', 'UK', now()), +(34742, 'Stevie Wonder with Friends: Celebrating a Message of Peace', 'US', now()), +(34743, 'Personal Taste', 'KR', now()), +(34744, 'Legend of Star Apple', 'TW', now()), +(34745, 'Hateful But Once Again', 'KR', now()), +(34746, 'Love Keeps Going', 'CN', now()), +(34747, 'In The Flesh', 'UK', now()), +(34748, 'Breathless (UK)', 'UK', now()), +(34749, 'Heritage! The Battle for Britain''s Past', 'UK', now()), +(34750, 'American Master: A Portrait of John Adams', 'UK', now()), +(34751, 'Totally British: 70s Rock N Roll', 'UK', now()), +(34752, 'The Ballad of Mott the Hoople', 'UK', now()), +(34753, 'Crufts (2010)', 'UK', now()), +(34754, 'ARGO: Inside Story', 'US', now()), +(34755, 'Everybody Dance Now (NL)', 'AU', now()), +(34757, 'Torranee Ni Nee Krai Kron', 'TH', now()), +(34758, 'CTV at the Oscars', 'CA', now()), +(34759, 'E! Live from the Red Carpet', 'CA', now()), +(34760, 'Fated to love you', 'TW', now()), +(34761, 'Last Scandal', 'KR', now()), +(34762, 'Me Too, Flower', 'KR', now()), +(34763, 'SportsCentre', 'CA', now()), +(34764, 'Hollywood Game Night', 'US', now()), +(34765, 'Bellicher: Cel', 'NL', now()), +(34766, 'Curling', 'CA', now()), +(34767, 'NHL on TSN', 'CA', now()), +(34768, 'Boxing', 'CA', now()), +(34769, 'Yu-Gi-Oh! Zexal II', 'JP', now()), +(34770, 'The Hundred', 'US', now()), +(34771, 'Togetherness', 'US', now()), +(34772, 'Enlisted', 'US', now()), +(34773, 'Gong', 'CN', now()), +(34774, 'Imagination Unleashed: An Artisan''s Journey', 'US', now()), +(34775, 'Sportsnet Connected', 'CA', now()), +(34776, 'E! After Party', 'CA', now()), +(34777, 'Deep South Paranormal', 'US', now()), +(34780, 'That''s Hockey 2nite', 'CA', now()); + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/start.sh b/start.sh index b9f853e12..3bf6886e8 100755 --- a/start.sh +++ b/start.sh @@ -38,7 +38,7 @@ if $TMUXCMD -q has-session -t $TMUX_SESSION; then else printf "The above is just a TMUX notice, it is saying TMUX, that you do not have a TMUX session currently running. It is not an error. It is TMUX" printf "\033]0; $TMUX_SESSION\007\003\n" - $TMUXCMD -f $TMUX_CONF new-session -d -s $TMUX_SESSION -n Monitor 'cd bin && echo "Monitor Started" && echo "It might take a minute for everything to spinup......" && $NICE -n 19 $PHP monitor.php' + $TMUXCMD -f $TMUX_CONF new-session -d -s $TMUX_SESSION -n Monitor 'printf "\033]2;Monitor\033\\" && cd bin && echo "Monitor Started" && echo "It might take a minute for everything to spinup......" && $NICE -n 19 $PHP monitor.php' if [ ! -f $NEWZPATH/www/lib/postprocess.php.orig ]; then cp $NEWZPATH/www/lib/postprocess.php $NEWZPATH/www/lib/postprocess.php.orig @@ -141,91 +141,75 @@ else #printf "\033]0; $TMUX_SESSION\007\003\n" #$TMUXCMD -f $TMUX_CONF attach-session - $TMUX_SESSION || new-session -d -s $TMUX_SESSION -n $TMUX_SESSION 'cd bin && echo "Monitor Started" && echo "It might take a minute for everything to spinup......" && $NICE -n 19 $PHP monitor.php' $TMUXCMD selectp -t 0 - $TMUXCMD splitw -h -p 67 'echo "..."' + $TMUXCMD splitw -h -p 67 'printf "\033]2;update_binaries\033\\"' $TMUXCMD selectp -t 0 - $TMUXCMD splitw -v -p 33 'echo "..."' + $TMUXCMD splitw -v -p 33 'printf "\033]2;nzbcount\033\\"' $TMUXCMD selectp -t 2 - $TMUXCMD splitw -v -p 75 'echo "..."' - $TMUXCMD splitw -v -p 67 'echo "..."' - $TMUXCMD splitw -v -p 50 'echo "..."' + $TMUXCMD splitw -v -p 75 'printf "\033]2;backfill\033\\"' + $TMUXCMD splitw -v -p 67 'printf "\033]2;import-nzb\033\\"' + $TMUXCMD splitw -v -p 50 'printf "\033]2;update_releases\033\\"' - $TMUXCMD new-window -n other 'echo "..."' - $TMUXCMD splitw -h -p 50 'echo "..."' + $TMUXCMD new-window -n other 'printf "\033]2;update_predb\033\\"' + $TMUXCMD splitw -h -p 50 'printf "\033]2;optimise\033\\"' $TMUXCMD selectp -t 0 - $TMUXCMD splitw -v -p 75 'echo "..."' - $TMUXCMD splitw -v -p 67 'echo "..."' - $TMUXCMD splitw -v -p 50 'echo "..."' + $TMUXCMD splitw -v -p 75 'printf "\033]2;update_parsing\033\\"' + $TMUXCMD splitw -v -p 67 'printf "\033]2;update_cleanup\033\\"' + $TMUXCMD splitw -v -p 50 'printf "\033]2;update_tv\033\\"' $TMUXCMD selectp -t 4 - $TMUXCMD splitw -v -p 75 'echo "..."' - $TMUXCMD splitw -v -p 67 'echo "..."' - $TMUXCMD splitw -v -p 50 'echo "..."' + $TMUXCMD splitw -v -p 75 'printf "\033]2;sphinx\033\\"' + $TMUXCMD splitw -v -p 67 'printf "\033]2;delete_parts\033\\"' + $TMUXCMD splitw -v -p 50 'printf "\033]2;update_missing_movie_info\033\\"' - $TMUXCMD new-window -n post1 'echo "..."' + $TMUXCMD new-window -n post1 'printf "\033]2;postprocessing[1]\033\\"' $TMUXCMD selectp -t 0 - $TMUXCMD splitw -v -p 75 'echo "..."' - $TMUXCMD splitw -v -p 67 'echo "..."' - $TMUXCMD splitw -v -p 50 'echo "..."' + $TMUXCMD splitw -v -p 75 'printf "\033]2;postprocessing[9]\033\\"' + $TMUXCMD splitw -v -p 67 'printf "\033]2;postprocessing[17]\033\\"' + $TMUXCMD splitw -v -p 50 'printf "\033]2;postprocessing[25]\033\\"' $TMUXCMD selectp -t 0 - $TMUXCMD splitw -h -p 88 'echo "..."' - $TMUXCMD splitw -h -p 85 'echo "..."' - $TMUXCMD splitw -h -p 83 'echo "..."' - $TMUXCMD splitw -h -p 80 'echo "..."' - $TMUXCMD splitw -h -p 75 'echo "..."' - $TMUXCMD splitw -h -p 67 'echo "..."' - $TMUXCMD splitw -h -p 50 'echo "..."' + $TMUXCMD splitw -h -p 88 'printf "\033]2;postprocessing[2]\033\\"' + $TMUXCMD splitw -h -p 85 'printf "\033]2;postprocessing[3]\033\\"' + $TMUXCMD splitw -h -p 83 'printf "\033]2;postprocessing[4]\033\\"' + $TMUXCMD splitw -h -p 80 'printf "\033]2;postprocessing[5]\033\\"' + $TMUXCMD splitw -h -p 75 'printf "\033]2;postprocessing[6]\033\\"' + $TMUXCMD splitw -h -p 67 'printf "\033]2;postprocessing[7]\033\\"' + $TMUXCMD splitw -h -p 50 'printf "\033]2;postprocessing[8]\033\\"' $TMUXCMD selectp -t 8 - $TMUXCMD splitw -h -p 88 'echo "..."' - $TMUXCMD splitw -h -p 85 'echo "..."' - $TMUXCMD splitw -h -p 83 'echo "..."' - $TMUXCMD splitw -h -p 80 'echo "..."' - $TMUXCMD splitw -h -p 75 'echo "..."' - $TMUXCMD splitw -h -p 67 'echo "..."' - $TMUXCMD splitw -h -p 50 'echo "..."' + $TMUXCMD splitw -h -p 88 'printf "\033]2;postprocessing[10]\033\\"' + $TMUXCMD splitw -h -p 85 'printf "\033]2;postprocessing[11]\033\\"' + $TMUXCMD splitw -h -p 83 'printf "\033]2;postprocessing[12]\033\\"' + $TMUXCMD splitw -h -p 80 'printf "\033]2;postprocessing[13]\033\\"' + $TMUXCMD splitw -h -p 75 'printf "\033]2;postprocessing[14]\033\\"' + $TMUXCMD splitw -h -p 67 'printf "\033]2;postprocessing[15]\033\\"' + $TMUXCMD splitw -h -p 50 'printf "\033]2;postprocessing[16]\033\\"' $TMUXCMD selectp -t 16 - $TMUXCMD splitw -h -p 88 'echo "..."' - $TMUXCMD splitw -h -p 85 'echo "..."' - $TMUXCMD splitw -h -p 83 'echo "..."' - $TMUXCMD splitw -h -p 80 'echo "..."' - $TMUXCMD splitw -h -p 75 'echo "..."' - $TMUXCMD splitw -h -p 67 'echo "..."' - $TMUXCMD splitw -h -p 50 'echo "..."' + $TMUXCMD splitw -h -p 88 'printf "\033]2;postprocessing[18]\033\\"' + $TMUXCMD splitw -h -p 85 'printf "\033]2;postprocessing[19]\033\\"' + $TMUXCMD splitw -h -p 83 'printf "\033]2;postprocessing[20]\033\\"' + $TMUXCMD splitw -h -p 80 'printf "\033]2;postprocessing[21]\033\\"' + $TMUXCMD splitw -h -p 75 'printf "\033]2;postprocessing[22]\033\\"' + $TMUXCMD splitw -h -p 67 'printf "\033]2;postprocessing[23]\033\\"' + $TMUXCMD splitw -h -p 50 'printf "\033]2;postprocessing[24]\033\\"' $TMUXCMD selectp -t 24 - $TMUXCMD splitw -h -p 88 'echo "..."' - $TMUXCMD splitw -h -p 85 'echo "..."' - $TMUXCMD splitw -h -p 83 'echo "..."' - $TMUXCMD splitw -h -p 80 'echo "..."' - $TMUXCMD splitw -h -p 75 'echo "..."' - $TMUXCMD splitw -h -p 67 'echo "..."' - $TMUXCMD splitw -h -p 50 'echo "..."' + $TMUXCMD splitw -h -p 88 'printf "\033]2;postprocessing[26]\033\\"' + $TMUXCMD splitw -h -p 85 'printf "\033]2;postprocessing[27]\033\\"' + $TMUXCMD splitw -h -p 83 'printf "\033]2;postprocessing[28]\033\\"' + $TMUXCMD splitw -h -p 80 'printf "\033]2;postprocessing[29]\033\\"' + $TMUXCMD splitw -h -p 75 'printf "\033]2;postprocessing[30]\033\\"' + $TMUXCMD splitw -h -p 67 'printf "\033]2;postprocessing[31]\033\\"' + $TMUXCMD splitw -h -p 50 'printf "\033]2;postprocessing[32]\033\\"' - $TMUXCMD new-window -n post2 'echo "..."' - $TMUXCMD splitw -h -p 50 'echo "..."' + $TMUXCMD new-window -n post2 'printf "\033]2;processNfos\033\\"' + $TMUXCMD splitw -h -p 50 'printf "\033]2;processTv\033\\"' $TMUXCMD selectp -t 0 - $TMUXCMD splitw -v -p 75 'echo "..."' - $TMUXCMD splitw -v -p 67 'echo "..."' - $TMUXCMD splitw -v -p 50 'echo "..."' + $TMUXCMD splitw -v -p 75 'printf "\033]2;processGames\033\\"' + $TMUXCMD splitw -v -p 67 'printf "\033]2;processMovies\033\\"' + $TMUXCMD splitw -v -p 50 'printf "\033]2;processMusic\033\\"' $TMUXCMD selectp -t 4 - $TMUXCMD splitw -v -p 75 'echo "..."' - $TMUXCMD splitw -v -p 67 'echo "..."' - $TMUXCMD splitw -v -p 50 'echo "..."' - -# $TMUXCMD new-window -n binaries_threaded 'echo "..."' -# $TMUXCMD splitw -v -p 83 'echo "..."' -# $TMUXCMD splitw -v -p 75 'echo "..."' -# $TMUXCMD splitw -v -p 67 'echo "..."' -# $TMUXCMD splitw -v -p 50 'echo "..."' -# $TMUXCMD selectp -t 0 -# $TMUXCMD splitw -h -p 50 'echo "..."' -# $TMUXCMD selectp -t 2 -# $TMUXCMD splitw -h -p 50 'echo "..."' -# $TMUXCMD selectp -t 4 -# $TMUXCMD splitw -h -p 50 'echo "..."' -# $TMUXCMD selectp -t 6 -# $TMUXCMD splitw -h -p 50 'echo "..."' -# $TMUXCMD selectp -t 8 -# $TMUXCMD splitw -h -p 50 'echo "..."' + $TMUXCMD splitw -v -p 75 'printf "\033]2;processBooks\033\\"' + $TMUXCMD splitw -v -p 67 'printf "\033]2;processOther\033\\"' + $TMUXCMD splitw -v -p 50 'printf "\033]2;processUnwanted\033\\"' if [[ $USE_HTOP == "true" ]]; then $TMUXCMD new-window -n htop '$HTOP'