create database test; use test; drop table if exists checksum_test, checksum, fl_test; create table checksum_test( a int not null primary key ); insert into checksum_test(a) values (1); CREATE TABLE checksum ( db char(64) NOT NULL, tbl char(64) NOT NULL, chunk int NOT NULL, boundaries char(64) NOT NULL, this_crc char(40) NOT NULL, this_cnt int NOT NULL, master_crc char(40) NULL, master_cnt int NULL, ts timestamp NOT NULL, PRIMARY KEY (db, tbl, chunk) ); create table fl_test(a float not null primary key, b double); CREATE FUNCTION fnv_64 RETURNS INTEGER SONAME 'fnv_udf.so'; DROP TABLE IF EXISTS `chunk`; CREATE TABLE `chunk` ( `film_id` smallint(5) unsigned NOT NULL auto_increment, `title` varchar(255) NOT NULL, `description` text, `release_year` year(4) default NULL, `language_id` tinyint(3) unsigned NOT NULL, `original_language_id` tinyint(3) unsigned default NULL, `rental_duration` tinyint(3) unsigned NOT NULL default '3', `rental_rate` decimal(4,2) NOT NULL default '4.99', `length` smallint(5) unsigned default NULL, `replacement_cost` decimal(5,2) NOT NULL default '19.99', `rating` enum('G','PG','PG-13','R','NC-17') default 'G', `special_features` set('Trailers','Commentaries','Deleted Scenes','Behind the Scenes') default NULL, `last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, PRIMARY KEY (`film_id`), KEY `idx_title` (`title`), KEY `idx_fk_language_id` (`language_id`), KEY `idx_fk_original_language_id` (`original_language_id`) ); INSERT INTO `chunk` VALUES (1,'ACADEMY DI','A Epic Dra',2006,1,NULL,6,'0.99',86,'20.99','PG','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(2,'ACE GOLDFI','A Astoundi',2006,1,NULL,3,'4.99',48,'12.99','G','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(3,'ADAPTATION','A Astoundi',2006,1,NULL,7,'2.99',50,'18.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(4,'AFFAIR PRE','A Fanciful',2006,1,NULL,5,'2.99',117,'26.99','G','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(5,'AFRICAN EG','A Fast-Pac',2006,1,NULL,6,'2.99',130,'22.99','G','Deleted Scenes','2008-03-01 21:06:45'),(6,'AGENT TRUM','A Intrepid',2006,1,NULL,3,'2.99',169,'17.99','PG','Deleted Scenes','2008-03-01 21:06:45'),(7,'AIRPLANE S','A Touching',2006,1,NULL,6,'4.99',62,'28.99','PG-13','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(8,'AIRPORT PO','A Epic Tal',2006,1,NULL,6,'4.99',54,'15.99','R','Trailers','2008-03-01 21:06:45'),(9,'ALABAMA DE','A Thoughtf',2006,1,NULL,3,'2.99',114,'21.99','PG-13','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(10,'ALADDIN CA','A Action-P',2006,1,NULL,6,'4.99',63,'24.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(11,'ALAMO VIDE','A Boring E',2006,1,NULL,6,'0.99',126,'16.99','G','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(12,'ALASKA PHA','A Fanciful',2006,1,NULL,6,'0.99',136,'22.99','PG','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(13,'ALI FOREVE','A Action-P',2006,1,NULL,4,'4.99',150,'21.99','PG','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(14,'ALICE FANT','A Emotiona',2006,1,NULL,6,'0.99',94,'23.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(15,'ALIEN CENT','A Brillian',2006,1,NULL,5,'2.99',46,'10.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(16,'ALLEY EVOL','A Fast-Pac',2006,1,NULL,6,'2.99',180,'23.99','NC-17','Trailers,Commentaries','2008-03-01 21:06:45'),(17,'ALONE TRIP','A Fast-Pac',2006,1,NULL,3,'0.99',82,'14.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(18,'ALTER VICT','A Thoughtf',2006,1,NULL,6,'0.99',57,'27.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(19,'AMADEUS HO','A Emotiona',2006,1,NULL,6,'0.99',113,'20.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(20,'AMELIE HEL','A Boring D',2006,1,NULL,4,'4.99',79,'23.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(21,'AMERICAN C','A Insightf',2006,1,NULL,3,'4.99',129,'17.99','R','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(22,'AMISTAD MI','A Emotiona',2006,1,NULL,6,'2.99',85,'10.99','G','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(23,'ANACONDA C','A Lacklust',2006,1,NULL,3,'0.99',92,'9.99','R','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(24,'ANALYZE HO','A Thoughtf',2006,1,NULL,6,'2.99',181,'19.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(25,'ANGELS LIF','A Thoughtf',2006,1,NULL,3,'2.99',74,'15.99','G','Trailers','2008-03-01 21:06:45'),(26,'ANNIE IDEN','A Amazing ',2006,1,NULL,3,'0.99',86,'15.99','G','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(27,'ANONYMOUS ','A Amazing ',2006,1,NULL,7,'0.99',179,'12.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(28,'ANTHEM LUK','A Touching',2006,1,NULL,5,'4.99',91,'16.99','PG-13','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(29,'ANTITRUST ','A Fateful ',2006,1,NULL,5,'2.99',168,'11.99','NC-17','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(30,'ANYTHING S','A Epic Sto',2006,1,NULL,4,'2.99',82,'27.99','R','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(31,'APACHE DIV','A Awe-Insp',2006,1,NULL,5,'4.99',92,'16.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(32,'APOCALYPSE','A Astoundi',2006,1,NULL,6,'4.99',119,'11.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(33,'APOLLO TEE','A Action-P',2006,1,NULL,5,'2.99',153,'15.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(34,'ARABIA DOG','A Touching',2006,1,NULL,6,'0.99',62,'29.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(35,'ARACHNOPHO','A Action-P',2006,1,NULL,4,'2.99',147,'24.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(36,'ARGONAUTS ','A Emotiona',2006,1,NULL,7,'0.99',127,'12.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(37,'ARIZONA BA','A Brillian',2006,1,NULL,3,'2.99',121,'28.99','PG','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(38,'ARK RIDGEM','A Beautifu',2006,1,NULL,6,'0.99',68,'25.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(39,'ARMAGEDDON','A Fast-Pac',2006,1,NULL,5,'0.99',99,'10.99','G','Trailers','2008-03-01 21:06:45'),(40,'ARMY FLINT','A Boring S',2006,1,NULL,4,'0.99',148,'22.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(41,'ARSENIC IN','A Fanciful',2006,1,NULL,4,'0.99',137,'17.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(42,'ARTIST COL','A Stunning',2006,1,NULL,5,'2.99',170,'10.99','NC-17','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(43,'ATLANTIS C','A Thrillin',2006,1,NULL,6,'2.99',170,'15.99','G','Behind the Scenes','2008-03-01 21:06:45'),(44,'ATTACKS HA','A Fast-Pac',2006,1,NULL,5,'4.99',113,'21.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(45,'ATTRACTION','A Astoundi',2006,1,NULL,5,'4.99',83,'14.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(46,'AUTUMN CRO','A Beautifu',2006,1,NULL,3,'4.99',108,'13.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(47,'BABY HALL','A Boring C',2006,1,NULL,5,'4.99',153,'23.99','NC-17','Commentaries','2008-03-01 21:06:45'),(48,'BACKLASH U','A Stunning',2006,1,NULL,3,'4.99',118,'24.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(49,'BADMAN DAW','A Emotiona',2006,1,NULL,6,'2.99',162,'22.99','R','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(50,'BAKED CLEO','A Stunning',2006,1,NULL,3,'2.99',182,'20.99','G','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(51,'BALLOON HO','A Insightf',2006,1,NULL,5,'2.99',75,'10.99','NC-17','Deleted Scenes','2008-03-01 21:06:45'),(52,'BALLROOM M','A Thrillin',2006,1,NULL,6,'0.99',173,'29.99','G','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(53,'BANG KWAI','A Epic Dra',2006,1,NULL,5,'2.99',87,'25.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(54,'BANGER PIN','A Awe-Insp',2006,1,NULL,5,'0.99',113,'15.99','R','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(55,'BARBARELLA','A Awe-Insp',2006,1,NULL,6,'2.99',65,'27.99','G','Behind the Scenes','2008-03-01 21:06:45'),(56,'BAREFOOT M','A Intrepid',2006,1,NULL,6,'2.99',129,'15.99','G','Trailers,Commentaries','2008-03-01 21:06:45'),(57,'BASIC EASY','A Stunning',2006,1,NULL,4,'2.99',90,'18.99','PG-13','Deleted Scenes','2008-03-01 21:06:45'),(58,'BEACH HEAR','A Fateful ',2006,1,NULL,6,'2.99',122,'16.99','G','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(59,'BEAR GRACE','A Astoundi',2006,1,NULL,4,'2.99',160,'20.99','R','Deleted Scenes','2008-03-01 21:06:45'),(60,'BEAST HUNC','A Awe-Insp',2006,1,NULL,3,'4.99',89,'22.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(61,'BEAUTY GRE','A Fast-Pac',2006,1,NULL,5,'4.99',175,'28.99','G','Trailers,Commentaries','2008-03-01 21:06:45'),(62,'BED HIGHBA','A Astoundi',2006,1,NULL,5,'2.99',106,'23.99','NC-17','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(63,'BEDAZZLED ','A Astoundi',2006,1,NULL,6,'0.99',73,'21.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(64,'BEETHOVEN ','A Epic Dis',2006,1,NULL,6,'0.99',151,'26.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(65,'BEHAVIOR R','A Unbeliev',2006,1,NULL,3,'4.99',100,'20.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(66,'BENEATH RU','A Astoundi',2006,1,NULL,6,'0.99',53,'27.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(67,'BERETS AGE','A Taut Sag',2006,1,NULL,5,'2.99',77,'24.99','PG-13','Deleted Scenes','2008-03-01 21:06:45'),(68,'BETRAYED R','A Emotiona',2006,1,NULL,5,'4.99',122,'26.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(69,'BEVERLY OU','A Fanciful',2006,1,NULL,3,'2.99',85,'21.99','R','Trailers','2008-03-01 21:06:45'),(70,'BIKINI BOR','A Astoundi',2006,1,NULL,7,'4.99',142,'26.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(71,'BILKO ANON','A Emotiona',2006,1,NULL,3,'4.99',100,'25.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(72,'BILL OTHER','A Stunning',2006,1,NULL,6,'2.99',93,'12.99','PG','Trailers,Commentaries','2008-03-01 21:06:45'),(73,'BINGO TALE','A Touching',2006,1,NULL,5,'2.99',150,'22.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(74,'BIRCH ANTI','A Fanciful',2006,1,NULL,4,'4.99',162,'18.99','PG','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(75,'BIRD INDEP','A Thrillin',2006,1,NULL,6,'4.99',163,'14.99','G','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(76,'BIRDCAGE C','A Fast-Pac',2006,1,NULL,4,'0.99',103,'23.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(77,'BIRDS PERD','A Boring S',2006,1,NULL,5,'4.99',61,'15.99','G','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(78,'BLACKOUT P','A Intrepid',2006,1,NULL,7,'2.99',85,'12.99','PG','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(79,'BLADE POLI','A Thoughtf',2006,1,NULL,5,'0.99',114,'10.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(80,'BLANKET BE','A Emotiona',2006,1,NULL,7,'2.99',148,'21.99','G','Trailers','2008-03-01 21:06:45'),(81,'BLINDNESS ','A Touching',2006,1,NULL,6,'4.99',103,'29.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(82,'BLOOD ARGO','A Boring D',2006,1,NULL,3,'0.99',71,'13.99','G','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(83,'BLUES INST','A Insightf',2006,1,NULL,5,'2.99',50,'18.99','G','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(84,'BOILED DAR','A Awe-Insp',2006,1,NULL,7,'4.99',102,'13.99','PG','Trailers,Commentaries','2008-03-01 21:06:45'),(85,'BONNIE HOL','A Fast-Pac',2006,1,NULL,4,'0.99',63,'29.99','G','Deleted Scenes','2008-03-01 21:06:45'),(86,'BOOGIE AME','A Lacklust',2006,1,NULL,6,'4.99',121,'11.99','R','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(87,'BOONDOCK B','A Fateful ',2006,1,NULL,7,'0.99',76,'14.99','NC-17','Behind the Scenes','2008-03-01 21:06:45'),(88,'BORN SPINA','A Touching',2006,1,NULL,7,'4.99',179,'17.99','PG','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(89,'BORROWERS ','A Brillian',2006,1,NULL,7,'0.99',63,'22.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(90,'BOULEVARD ','A Fateful ',2006,1,NULL,3,'0.99',63,'11.99','R','Trailers','2008-03-01 21:06:45'),(91,'BOUND CHEA','A Thrillin',2006,1,NULL,5,'0.99',98,'17.99','PG','Behind the Scenes','2008-03-01 21:06:45'),(92,'BOWFINGER ','A Fast-Pac',2006,1,NULL,7,'4.99',72,'19.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(93,'BRANNIGAN ','A Amazing ',2006,1,NULL,4,'4.99',121,'27.99','PG','Trailers','2008-03-01 21:06:45'),(94,'BRAVEHEART','A Insightf',2006,1,NULL,7,'2.99',176,'14.99','PG-13','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(95,'BREAKFAST ','A Beautifu',2006,1,NULL,5,'4.99',123,'18.99','G','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(96,'BREAKING H','A Beautifu',2006,1,NULL,4,'2.99',169,'21.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(97,'BRIDE INTR','A Epic Tal',2006,1,NULL,7,'0.99',56,'24.99','G','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(98,'BRIGHT ENC','A Fateful ',2006,1,NULL,4,'4.99',73,'12.99','PG-13','Trailers','2008-03-01 21:06:45'),(99,'BRINGING H','A Fateful ',2006,1,NULL,7,'2.99',136,'14.99','PG','Trailers','2008-03-01 21:06:45'),(100,'BROOKLYN D','A Beautifu',2006,1,NULL,7,'4.99',161,'21.99','R','Commentaries','2008-03-01 21:06:45'),(101,'BROTHERHOO','A Fateful ',2006,1,NULL,3,'0.99',73,'26.99','R','Behind the Scenes','2008-03-01 21:06:45'),(102,'BUBBLE GRO','A Awe-Insp',2006,1,NULL,4,'4.99',60,'20.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(103,'BUCKET BRO','A Amazing ',2006,1,NULL,7,'4.99',133,'27.99','PG','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(104,'BUGSY SONG','A Awe-Insp',2006,1,NULL,4,'2.99',119,'17.99','G','Commentaries','2008-03-01 21:06:45'),(105,'BULL SHAWS','A Fanciful',2006,1,NULL,6,'0.99',125,'21.99','NC-17','Deleted Scenes','2008-03-01 21:06:45'),(106,'BULWORTH C','A Amazing ',2006,1,NULL,4,'2.99',61,'14.99','G','Trailers','2008-03-01 21:06:45'),(107,'BUNCH MIND','A Emotiona',2006,1,NULL,4,'2.99',63,'13.99','G','Behind the Scenes','2008-03-01 21:06:45'),(108,'BUTCH PANT','A Lacklust',2006,1,NULL,6,'0.99',67,'19.99','PG-13','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(109,'BUTTERFLY ','A Fateful ',2006,1,NULL,3,'0.99',89,'17.99','G','Behind the Scenes','2008-03-01 21:06:45'),(110,'CABIN FLAS','A Stunning',2006,1,NULL,4,'0.99',53,'25.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(111,'CADDYSHACK','A Awe-Insp',2006,1,NULL,3,'0.99',52,'17.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(112,'CALENDAR G','A Thrillin',2006,1,NULL,4,'4.99',120,'22.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(113,'CALIFORNIA','A Thrillin',2006,1,NULL,4,'4.99',75,'19.99','NC-17','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(114,'CAMELOT VA','A Touching',2006,1,NULL,3,'0.99',61,'26.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(115,'CAMPUS REM','A Astoundi',2006,1,NULL,5,'2.99',167,'27.99','R','Behind the Scenes','2008-03-01 21:06:45'),(116,'CANDIDATE ','A Brillian',2006,1,NULL,4,'2.99',70,'10.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(117,'CANDLES GR','A Fanciful',2006,1,NULL,6,'4.99',135,'15.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(118,'CANYON STO','A Thoughtf',2006,1,NULL,7,'0.99',85,'26.99','R','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(119,'CAPER MOTI','A Fateful ',2006,1,NULL,6,'0.99',176,'22.99','G','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(120,'CARIBBEAN ','A Fanciful',2006,1,NULL,3,'4.99',92,'16.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(121,'CAROL TEXA','A Astoundi',2006,1,NULL,4,'2.99',151,'15.99','PG','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(122,'CARRIE BUN','A Amazing ',2006,1,NULL,7,'0.99',114,'11.99','PG','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(123,'CASABLANCA','A Amazing ',2006,1,NULL,6,'4.99',85,'22.99','G','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(124,'CASPER DRA','A Intrepid',2006,1,NULL,3,'4.99',163,'16.99','PG-13','Trailers','2008-03-01 21:06:45'),(125,'CASSIDY WY','A Intrepid',2006,1,NULL,5,'2.99',61,'19.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(126,'CASUALTIES','A Insightf',2006,1,NULL,3,'4.99',179,'16.99','G','Trailers','2008-03-01 21:06:45'),(127,'CAT CONEHE','A Fast-Pac',2006,1,NULL,5,'4.99',112,'14.99','G','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(128,'CATCH AMIS','A Boring R',2006,1,NULL,7,'0.99',183,'10.99','G','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(129,'CAUSE DATE','A Taut Tal',2006,1,NULL,3,'2.99',179,'16.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(130,'CELEBRITY ','A Amazing ',2006,1,NULL,7,'0.99',110,'24.99','PG-13','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(131,'CENTER DIN','A Beautifu',2006,1,NULL,5,'4.99',152,'12.99','PG','Deleted Scenes','2008-03-01 21:06:45'),(132,'CHAINSAW U','A Beautifu',2006,1,NULL,6,'0.99',114,'25.99','PG','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(133,'CHAMBER IT','A Fateful ',2006,1,NULL,7,'4.99',117,'14.99','NC-17','Trailers','2008-03-01 21:06:45'),(134,'CHAMPION F','A Amazing ',2006,1,NULL,4,'4.99',51,'21.99','PG','Trailers','2008-03-01 21:06:45'),(135,'CHANCE RES','A Astoundi',2006,1,NULL,3,'2.99',70,'22.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(136,'CHAPLIN LI','A Boring D',2006,1,NULL,7,'2.99',146,'26.99','NC-17','Behind the Scenes','2008-03-01 21:06:45'),(137,'CHARADE DU','A Action-P',2006,1,NULL,3,'2.99',66,'21.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(138,'CHARIOTS C','A Unbeliev',2006,1,NULL,5,'2.99',71,'29.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(139,'CHASING FI','A Astoundi',2006,1,NULL,7,'4.99',114,'21.99','PG','Trailers,Commentaries','2008-03-01 21:06:45'),(140,'CHEAPER CL','A Emotiona',2006,1,NULL,6,'0.99',87,'23.99','G','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(141,'CHICAGO NO','A Fateful ',2006,1,NULL,6,'4.99',185,'11.99','PG-13','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(142,'CHICKEN HE','A Emotiona',2006,1,NULL,3,'0.99',122,'24.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(143,'CHILL LUCK','A Lacklust',2006,1,NULL,6,'0.99',142,'17.99','PG','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(144,'CHINATOWN ','A Brillian',2006,1,NULL,7,'4.99',61,'24.99','PG','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(145,'CHISUM BEH','A Epic Doc',2006,1,NULL,5,'4.99',124,'25.99','G','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(146,'CHITTY LOC','A Boring E',2006,1,NULL,6,'2.99',107,'24.99','G','Commentaries','2008-03-01 21:06:45'),(147,'CHOCOLAT H','A Action-P',2006,1,NULL,5,'0.99',101,'16.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(148,'CHOCOLATE ','A Unbeliev',2006,1,NULL,3,'2.99',132,'13.99','R','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(149,'CHRISTMAS ','A Action-P',2006,1,NULL,7,'0.99',150,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(150,'CIDER DESI','A Stunning',2006,1,NULL,7,'2.99',101,'9.99','PG','Behind the Scenes','2008-03-01 21:06:45'),(151,'CINCINATTI','A Brillian',2006,1,NULL,5,'4.99',143,'26.99','NC-17','Deleted Scenes','2008-03-01 21:06:45'),(152,'CIRCUS YOU','A Thoughtf',2006,1,NULL,5,'2.99',90,'13.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(153,'CITIZEN SH','A Fanciful',2006,1,NULL,7,'0.99',165,'18.99','G','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(154,'CLASH FRED','A Amazing ',2006,1,NULL,6,'2.99',81,'12.99','G','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(155,'CLEOPATRA ','A Fanciful',2006,1,NULL,6,'0.99',150,'26.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(156,'CLERKS ANG','A Thrillin',2006,1,NULL,3,'4.99',164,'15.99','G','Commentaries','2008-03-01 21:06:45'),(157,'CLOCKWORK ','A Insightf',2006,1,NULL,7,'0.99',143,'29.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(158,'CLONES PIN','A Amazing ',2006,1,NULL,6,'2.99',124,'16.99','R','Behind the Scenes','2008-03-01 21:06:45'),(159,'CLOSER BAN','A Unbeliev',2006,1,NULL,5,'4.99',58,'12.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(160,'CLUB GRAFF','A Epic Tal',2006,1,NULL,4,'0.99',65,'12.99','PG-13','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(161,'CLUE GRAIL','A Taut Tal',2006,1,NULL,6,'4.99',70,'27.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(162,'CLUELESS B','A Taut Tal',2006,1,NULL,4,'2.99',95,'13.99','R','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(163,'CLYDE THEO','A Beautifu',2006,1,NULL,4,'0.99',139,'29.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(164,'COAST RAIN','A Astoundi',2006,1,NULL,4,'0.99',55,'20.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(165,'COLDBLOODE','A Brillian',2006,1,NULL,7,'4.99',70,'27.99','G','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(166,'COLOR PHIL','A Thoughtf',2006,1,NULL,6,'2.99',149,'19.99','G','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(167,'COMA HEAD','A Awe-Insp',2006,1,NULL,6,'4.99',109,'10.99','NC-17','Commentaries','2008-03-01 21:06:45'),(168,'COMANCHERO','A Boring S',2006,1,NULL,5,'0.99',67,'23.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(169,'COMFORTS R','A Unbeliev',2006,1,NULL,3,'2.99',76,'19.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(170,'COMMAND DA','A Awe-Insp',2006,1,NULL,5,'4.99',120,'28.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(171,'COMMANDMEN','A Fanciful',2006,1,NULL,6,'4.99',59,'13.99','R','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(172,'CONEHEADS ','A Touching',2006,1,NULL,7,'4.99',112,'12.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(173,'CONFESSION','A Insightf',2006,1,NULL,7,'4.99',65,'25.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(174,'CONFIDENTI','A Stunning',2006,1,NULL,6,'4.99',180,'13.99','NC-17','Commentaries','2008-03-01 21:06:45'),(175,'CONFUSED C','A Stunning',2006,1,NULL,3,'2.99',122,'27.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(176,'CONGENIALI','A Touching',2006,1,NULL,6,'0.99',87,'21.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(177,'CONNECTICU','A Unbeliev',2006,1,NULL,4,'4.99',172,'20.99','R','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(178,'CONNECTION','A Fateful ',2006,1,NULL,6,'0.99',115,'25.99','G','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(179,'CONQUERER ','A Taut Dra',2006,1,NULL,4,'4.99',173,'14.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(180,'CONSPIRACY','A Awe-Insp',2006,1,NULL,4,'2.99',184,'27.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(181,'CONTACT AN','A Insightf',2006,1,NULL,7,'2.99',166,'10.99','PG-13','Commentaries','2008-03-01 21:06:45'),(182,'CONTROL AN','A Fateful ',2006,1,NULL,7,'4.99',185,'9.99','G','Commentaries','2008-03-01 21:06:45'),(183,'CONVERSATI','A Taut Cha',2006,1,NULL,4,'4.99',112,'14.99','R','Commentaries','2008-03-01 21:06:45'),(184,'CORE SUIT','A Unbeliev',2006,1,NULL,3,'2.99',92,'24.99','PG-13','Deleted Scenes','2008-03-01 21:06:45'),(185,'COWBOY DOO','A Astoundi',2006,1,NULL,3,'2.99',146,'10.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(186,'CRAFT OUTF','A Lacklust',2006,1,NULL,6,'0.99',64,'17.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(187,'CRANES RES','A Fanciful',2006,1,NULL,5,'2.99',57,'12.99','NC-17','Commentaries','2008-03-01 21:06:45'),(188,'CRAZY HOME','A Fanciful',2006,1,NULL,7,'2.99',136,'24.99','PG','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(189,'CREATURES ','A Emotiona',2006,1,NULL,3,'0.99',139,'23.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(190,'CREEPERS K','A Awe-Insp',2006,1,NULL,5,'4.99',172,'23.99','NC-17','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(191,'CROOKED FR','A Unbeliev',2006,1,NULL,6,'0.99',143,'27.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(192,'CROSSING D','A Beautifu',2006,1,NULL,4,'4.99',50,'19.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(193,'CROSSROADS','A Intrepid',2006,1,NULL,5,'2.99',153,'20.99','G','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(194,'CROW GREAS','A Awe-Insp',2006,1,NULL,6,'0.99',104,'22.99','PG','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(195,'CROWDS TEL','A Intrepid',2006,1,NULL,3,'4.99',112,'16.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(196,'CRUELTY UN','A Brillian',2006,1,NULL,7,'0.99',69,'29.99','G','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(197,'CRUSADE HO','A Fast-Pac',2006,1,NULL,4,'2.99',112,'27.99','R','Commentaries','2008-03-01 21:06:45'),(198,'CRYSTAL BR','A Fast-Pac',2006,1,NULL,6,'2.99',184,'22.99','NC-17','Trailers,Commentaries','2008-03-01 21:06:45'),(199,'CUPBOARD S','A Emotiona',2006,1,NULL,4,'2.99',56,'29.99','R','Behind the Scenes','2008-03-01 21:06:45'),(200,'CURTAIN VI','A Boring R',2006,1,NULL,7,'0.99',133,'27.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(201,'CYCLONE FA','A Lacklust',2006,1,NULL,7,'2.99',176,'18.99','PG','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(202,'DADDY PITT','A Epic Sto',2006,1,NULL,5,'4.99',161,'26.99','G','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(203,'DAISY MENA','A Fast-Pac',2006,1,NULL,5,'4.99',84,'9.99','G','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(204,'DALMATIONS','A Emotiona',2006,1,NULL,4,'0.99',106,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(205,'DANCES NON','A Insightf',2006,1,NULL,3,'0.99',58,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(206,'DANCING FE','A Stunning',2006,1,NULL,6,'0.99',144,'25.99','G','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(207,'DANGEROUS ','A Unbeliev',2006,1,NULL,7,'4.99',121,'26.99','PG','Commentaries','2008-03-01 21:06:45'),(208,'DARES PLUT','A Fateful ',2006,1,NULL,7,'2.99',89,'16.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(209,'DARKNESS W','A Touching',2006,1,NULL,6,'2.99',99,'24.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(210,'DARKO DORA','A Stunning',2006,1,NULL,3,'4.99',130,'13.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(211,'DARLING BR','A Brillian',2006,1,NULL,7,'4.99',165,'20.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(212,'DARN FORRE','A Fateful ',2006,1,NULL,7,'4.99',185,'14.99','G','Deleted Scenes','2008-03-01 21:06:45'),(213,'DATE SPEED','A Touching',2006,1,NULL,4,'0.99',104,'19.99','R','Commentaries','2008-03-01 21:06:45'),(214,'DAUGHTER M','A Beautifu',2006,1,NULL,3,'4.99',59,'13.99','PG-13','Trailers','2008-03-01 21:06:45'),(215,'DAWN POND','A Thoughtf',2006,1,NULL,4,'4.99',57,'27.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(216,'DAY UNFAIT','A Stunning',2006,1,NULL,3,'4.99',113,'16.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(217,'DAZED PUNK','A Action-P',2006,1,NULL,6,'4.99',120,'20.99','G','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(218,'DECEIVER B','A Taut Sto',2006,1,NULL,7,'0.99',122,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(219,'DEEP CRUSA','A Amazing ',2006,1,NULL,6,'4.99',51,'20.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(220,'DEER VIRGI','A Thoughtf',2006,1,NULL,7,'2.99',106,'13.99','NC-17','Deleted Scenes','2008-03-01 21:06:45'),(221,'DELIVERANC','A Astoundi',2006,1,NULL,4,'0.99',100,'9.99','R','Deleted Scenes','2008-03-01 21:06:45'),(222,'DESERT POS','A Brillian',2006,1,NULL,4,'4.99',64,'27.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(223,'DESIRE ALI','A Fast-Pac',2006,1,NULL,7,'2.99',76,'24.99','NC-17','Deleted Scenes','2008-03-01 21:06:45'),(224,'DESPERATE ','A Epic Yar',2006,1,NULL,7,'4.99',81,'29.99','G','Deleted Scenes','2008-03-01 21:06:45'),(225,'DESTINATIO','A Beautifu',2006,1,NULL,3,'0.99',76,'19.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(226,'DESTINY SA','A Touching',2006,1,NULL,4,'4.99',56,'20.99','G','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(227,'DETAILS PA','A Epic Sag',2006,1,NULL,4,'4.99',88,'17.99','R','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(228,'DETECTIVE ','A Fanciful',2006,1,NULL,4,'0.99',143,'16.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(229,'DEVIL DESI','A Beautifu',2006,1,NULL,6,'4.99',87,'12.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(230,'DIARY PANI','A Thoughtf',2006,1,NULL,7,'2.99',107,'20.99','G','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(231,'DINOSAUR S','A Action-P',2006,1,NULL,7,'2.99',63,'27.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(232,'DIRTY ACE','A Action-P',2006,1,NULL,7,'2.99',147,'29.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(233,'DISCIPLE M','A Touching',2006,1,NULL,3,'0.99',141,'17.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(234,'DISTURBING','A Lacklust',2006,1,NULL,6,'2.99',94,'27.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(235,'DIVIDE MON','A Intrepid',2006,1,NULL,6,'2.99',68,'13.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(236,'DIVINE RES','A Boring C',2006,1,NULL,4,'2.99',100,'19.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(237,'DIVORCE SH','A Unbeliev',2006,1,NULL,3,'2.99',47,'21.99','G','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(238,'DOCTOR GRA','A Insightf',2006,1,NULL,4,'2.99',57,'29.99','G','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(239,'DOGMA FAMI','A Brillian',2006,1,NULL,5,'4.99',122,'16.99','G','Commentaries','2008-03-01 21:06:45'),(240,'DOLLS RAGE','A Thrillin',2006,1,NULL,7,'2.99',120,'10.99','PG-13','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(241,'DONNIE ALL','A Awe-Insp',2006,1,NULL,4,'0.99',125,'20.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(242,'DOOM DANCI','A Astoundi',2006,1,NULL,4,'0.99',68,'13.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(243,'DOORS PRES','A Awe-Insp',2006,1,NULL,3,'4.99',49,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(244,'DORADO NOT','A Action-P',2006,1,NULL,5,'4.99',139,'26.99','NC-17','Commentaries','2008-03-01 21:06:45'),(245,'DOUBLE WRA','A Thoughtf',2006,1,NULL,4,'0.99',177,'28.99','R','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(246,'DOUBTFIRE ','A Intrepid',2006,1,NULL,5,'4.99',154,'16.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(247,'DOWNHILL E','A Emotiona',2006,1,NULL,3,'0.99',47,'19.99','G','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(248,'DOZEN LION','A Taut Dra',2006,1,NULL,6,'4.99',177,'20.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(249,'DRACULA CR','A Thrillin',2006,1,NULL,7,'0.99',176,'26.99','G','Commentaries','2008-03-01 21:06:45'),(250,'DRAGON SQU','A Taut Ref',2006,1,NULL,4,'0.99',170,'26.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(251,'DRAGONFLY ','A Boring D',2006,1,NULL,6,'4.99',133,'19.99','NC-17','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(252,'DREAM PICK','A Epic Dis',2006,1,NULL,6,'2.99',135,'18.99','PG','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(253,'DRIFTER CO','A Epic Ref',2006,1,NULL,5,'4.99',61,'18.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(254,'DRIVER ANN','A Lacklust',2006,1,NULL,4,'2.99',159,'11.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(255,'DRIVING PO','A Action-P',2006,1,NULL,6,'4.99',175,'21.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(256,'DROP WATER','A Fanciful',2006,1,NULL,6,'4.99',178,'20.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(257,'DRUMLINE C','A Insightf',2006,1,NULL,3,'0.99',110,'14.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(258,'DRUMS DYNA','A Epic Dis',2006,1,NULL,6,'0.99',96,'11.99','PG','Trailers','2008-03-01 21:06:45'),(259,'DUCK RACER','A Lacklust',2006,1,NULL,4,'2.99',116,'15.99','NC-17','Behind the Scenes','2008-03-01 21:06:45'),(260,'DUDE BLIND','A Stunning',2006,1,NULL,3,'4.99',132,'9.99','G','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(261,'DUFFEL APO','A Emotiona',2006,1,NULL,5,'0.99',171,'13.99','G','Commentaries','2008-03-01 21:06:45'),(262,'DUMBO LUST','A Touching',2006,1,NULL,5,'0.99',119,'17.99','NC-17','Behind the Scenes','2008-03-01 21:06:45'),(263,'DURHAM PAN','A Brillian',2006,1,NULL,6,'4.99',154,'14.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(264,'DWARFS ALT','A Emotiona',2006,1,NULL,6,'2.99',101,'13.99','G','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(265,'DYING MAKE','A Intrepid',2006,1,NULL,5,'4.99',168,'28.99','PG','Behind the Scenes','2008-03-01 21:06:45'),(266,'DYNAMITE T','A Intrepid',2006,1,NULL,4,'0.99',141,'27.99','PG-13','Deleted Scenes','2008-03-01 21:06:45'),(267,'EAGLES PAN','A Thoughtf',2006,1,NULL,4,'4.99',140,'14.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(268,'EARLY HOME','A Amazing ',2006,1,NULL,6,'4.99',96,'27.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(269,'EARRING IN','A Stunning',2006,1,NULL,3,'0.99',98,'22.99','R','Behind the Scenes','2008-03-01 21:06:45'),(270,'EARTH VISI','A Stunning',2006,1,NULL,7,'0.99',85,'29.99','NC-17','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(271,'EASY GLADI','A Fateful ',2006,1,NULL,5,'4.99',148,'12.99','G','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(272,'EDGE KISSI','A Beautifu',2006,1,NULL,5,'4.99',153,'9.99','NC-17','Deleted Scenes','2008-03-01 21:06:45'),(273,'EFFECT GLA','A Beautifu',2006,1,NULL,6,'0.99',107,'14.99','PG','Commentaries','2008-03-01 21:06:45'),(274,'EGG IGBY','A Beautifu',2006,1,NULL,4,'2.99',67,'20.99','PG','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(275,'EGYPT TENE','A Intrepid',2006,1,NULL,3,'0.99',85,'11.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(276,'ELEMENT FR','A Awe-Insp',2006,1,NULL,6,'4.99',115,'28.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(277,'ELEPHANT T','A Beautifu',2006,1,NULL,4,'4.99',126,'24.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(278,'ELF MURDER','A Action-P',2006,1,NULL,4,'4.99',155,'19.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(279,'ELIZABETH ','A Lacklust',2006,1,NULL,7,'4.99',152,'11.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(280,'EMPIRE MAL','A Amazing ',2006,1,NULL,7,'0.99',177,'26.99','G','Deleted Scenes','2008-03-01 21:06:45'),(281,'ENCINO ELF','A Astoundi',2006,1,NULL,6,'0.99',143,'9.99','G','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(282,'ENCOUNTERS','A Insightf',2006,1,NULL,5,'0.99',92,'20.99','NC-17','Trailers','2008-03-01 21:06:45'),(283,'ENDING CRO','A Unbeliev',2006,1,NULL,6,'0.99',85,'10.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(284,'ENEMY ODDS','A Fanciful',2006,1,NULL,5,'4.99',77,'23.99','NC-17','Trailers','2008-03-01 21:06:45'),(285,'ENGLISH BU','A Intrepid',2006,1,NULL,3,'0.99',51,'18.99','PG-13','Deleted Scenes','2008-03-01 21:06:45'),(286,'ENOUGH RAG','A Astoundi',2006,1,NULL,7,'2.99',158,'16.99','NC-17','Commentaries','2008-03-01 21:06:45'),(287,'ENTRAPMENT','A Thoughtf',2006,1,NULL,5,'0.99',176,'19.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(288,'ESCAPE MET','A Taut Yar',2006,1,NULL,7,'2.99',167,'20.99','R','Trailers','2008-03-01 21:06:45'),(289,'EVE RESURR','A Awe-Insp',2006,1,NULL,5,'4.99',66,'25.99','G','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(290,'EVERYONE C','A Fateful ',2006,1,NULL,4,'0.99',163,'29.99','PG','Trailers,Commentaries','2008-03-01 21:06:45'),(291,'EVOLUTION ','A Fanciful',2006,1,NULL,5,'0.99',174,'10.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(292,'EXCITEMENT','A Brillian',2006,1,NULL,3,'0.99',51,'20.99','G','Commentaries','2008-03-01 21:06:45'),(293,'EXORCIST S','A Touching',2006,1,NULL,6,'2.99',167,'17.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(294,'EXPECATION','A Amazing ',2006,1,NULL,5,'4.99',138,'26.99','PG-13','Deleted Scenes','2008-03-01 21:06:45'),(295,'EXPENDABLE','A Amazing ',2006,1,NULL,3,'0.99',97,'14.99','PG','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(296,'EXPRESS LO','A Boring D',2006,1,NULL,5,'2.99',178,'23.99','R','Trailers','2008-03-01 21:06:45'),(297,'EXTRAORDIN','A Stunning',2006,1,NULL,6,'2.99',122,'29.99','G','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(298,'EYES DRIVI','A Thrillin',2006,1,NULL,4,'2.99',172,'13.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(299,'FACTORY DR','A Action-P',2006,1,NULL,4,'0.99',144,'9.99','PG-13','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(300,'FALCON VOL','A Fateful ',2006,1,NULL,5,'4.99',102,'21.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(301,'FAMILY SWE','A Epic Doc',2006,1,NULL,4,'0.99',155,'24.99','R','Trailers','2008-03-01 21:06:45'),(302,'FANTASIA P','A Thoughtf',2006,1,NULL,5,'2.99',131,'29.99','G','Commentaries','2008-03-01 21:06:45'),(303,'FANTASY TR','A Touching',2006,1,NULL,6,'0.99',58,'27.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(304,'FARGO GAND','A Thrillin',2006,1,NULL,3,'2.99',130,'28.99','G','Deleted Scenes','2008-03-01 21:06:45'),(305,'FATAL HAUN','A Beautifu',2006,1,NULL,6,'2.99',91,'24.99','PG','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(306,'FEATHERS M','A Thoughtf',2006,1,NULL,3,'0.99',104,'12.99','PG-13','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(307,'FELLOWSHIP','A Lacklust',2006,1,NULL,6,'4.99',77,'9.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(308,'FERRIS MOT','A Touching',2006,1,NULL,3,'2.99',142,'13.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(309,'FEUD FROGM','A Brillian',2006,1,NULL,6,'0.99',98,'29.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(310,'FEVER EMPI','A Insightf',2006,1,NULL,5,'4.99',158,'20.99','R','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(311,'FICTION CH','A Emotiona',2006,1,NULL,4,'0.99',72,'14.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(312,'FIDDLER LO','A Boring T',2006,1,NULL,4,'4.99',75,'20.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(313,'FIDELITY D','A Awe-Insp',2006,1,NULL,5,'4.99',118,'11.99','G','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(314,'FIGHT JAWB','A Intrepid',2006,1,NULL,3,'0.99',91,'13.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(315,'FINDING AN','A Fateful ',2006,1,NULL,4,'0.99',156,'10.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(316,'FIRE WOLVE','A Intrepid',2006,1,NULL,5,'4.99',173,'18.99','R','Trailers','2008-03-01 21:06:45'),(317,'FIREBALL P','A Amazing ',2006,1,NULL,4,'0.99',148,'25.99','PG','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(318,'FIREHOUSE ','A Awe-Insp',2006,1,NULL,7,'0.99',103,'14.99','G','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(319,'FISH OPUS','A Touching',2006,1,NULL,4,'2.99',125,'22.99','R','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(320,'FLAMINGOS ','A Fast-Pac',2006,1,NULL,4,'4.99',80,'28.99','PG-13','Trailers','2008-03-01 21:06:45'),(321,'FLASH WARS','A Astoundi',2006,1,NULL,3,'4.99',123,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(322,'FLATLINERS','A Taut Dis',2006,1,NULL,5,'2.99',100,'29.99','G','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(323,'FLIGHT LIE','A Stunning',2006,1,NULL,7,'4.99',179,'22.99','R','Trailers','2008-03-01 21:06:45'),(324,'FLINTSTONE','A Fateful ',2006,1,NULL,3,'4.99',148,'11.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(325,'FLOATS GAR','A Action-P',2006,1,NULL,6,'2.99',145,'29.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(326,'FLYING HOO','A Thrillin',2006,1,NULL,6,'2.99',69,'18.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(327,'FOOL MOCKI','A Lacklust',2006,1,NULL,3,'4.99',158,'24.99','PG','Trailers,Commentaries','2008-03-01 21:06:45'),(328,'FOREVER CA','A Unbeliev',2006,1,NULL,7,'2.99',131,'28.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(329,'FORREST SO','A Thrillin',2006,1,NULL,4,'2.99',63,'15.99','R','Commentaries','2008-03-01 21:06:45'),(330,'FORRESTER ','A Fateful ',2006,1,NULL,7,'4.99',112,'22.99','NC-17','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(331,'FORWARD TE','A Astoundi',2006,1,NULL,6,'2.99',90,'25.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(332,'FRANKENSTE','A Insightf',2006,1,NULL,7,'0.99',159,'16.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(333,'FREAKY POC','A Fast-Pac',2006,1,NULL,7,'2.99',126,'16.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(334,'FREDDY STO','A Intrepid',2006,1,NULL,6,'4.99',65,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(335,'FREEDOM CL','A Emotiona',2006,1,NULL,5,'0.99',133,'23.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(336,'FRENCH HOL','A Thrillin',2006,1,NULL,5,'4.99',99,'22.99','PG','Behind the Scenes','2008-03-01 21:06:45'),(337,'FRIDA SLIP','A Fateful ',2006,1,NULL,6,'2.99',73,'11.99','R','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(338,'FRISCO FOR','A Beautifu',2006,1,NULL,6,'4.99',51,'23.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(339,'FROGMEN BR','A Unbeliev',2006,1,NULL,5,'0.99',111,'17.99','R','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(340,'FRONTIER C','A Emotiona',2006,1,NULL,6,'4.99',183,'14.99','PG-13','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(341,'FROST HEAD','A Amazing ',2006,1,NULL,5,'0.99',82,'13.99','PG','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(342,'FUGITIVE M','A Taut Epi',2006,1,NULL,7,'4.99',83,'28.99','R','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(343,'FULL FLATL','A Beautifu',2006,1,NULL,6,'2.99',94,'14.99','PG','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(344,'FURY MURDE','A Lacklust',2006,1,NULL,3,'0.99',178,'28.99','PG-13','Deleted Scenes','2008-03-01 21:06:45'),(345,'GABLES MET','A Fateful ',2006,1,NULL,3,'0.99',161,'17.99','PG','Trailers,Commentaries','2008-03-01 21:06:45'),(346,'GALAXY SWE','A Emotiona',2006,1,NULL,4,'4.99',128,'13.99','R','Deleted Scenes','2008-03-01 21:06:45'),(347,'GAMES BOWF','A Astoundi',2006,1,NULL,7,'4.99',119,'17.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(348,'GANDHI KWA','A Thoughtf',2006,1,NULL,7,'0.99',86,'9.99','PG-13','Trailers','2008-03-01 21:06:45'),(349,'GANGS PRID','A Taut Cha',2006,1,NULL,4,'2.99',185,'27.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(350,'GARDEN ISL','A Unbeliev',2006,1,NULL,3,'4.99',80,'21.99','G','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(351,'GASLIGHT C','A Amazing ',2006,1,NULL,4,'2.99',106,'10.99','PG','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(352,'GATHERING ','A Intrepid',2006,1,NULL,4,'0.99',176,'22.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(353,'GENTLEMEN ','A Awe-Insp',2006,1,NULL,6,'2.99',125,'22.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(354,'GHOST GROU','A Brillian',2006,1,NULL,6,'4.99',85,'18.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(355,'GHOSTBUSTE','A Thoughtf',2006,1,NULL,7,'0.99',101,'18.99','R','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(356,'GIANT TROO','A Fateful ',2006,1,NULL,5,'2.99',102,'10.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(357,'GILBERT PE','A Fateful ',2006,1,NULL,7,'0.99',114,'13.99','G','Trailers,Commentaries','2008-03-01 21:06:45'),(358,'GILMORE BO','A Unbeliev',2006,1,NULL,5,'0.99',163,'29.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(359,'GLADIATOR ','A Astoundi',2006,1,NULL,6,'4.99',173,'20.99','PG','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(360,'GLASS DYIN','A Astoundi',2006,1,NULL,4,'0.99',103,'24.99','G','Trailers','2008-03-01 21:06:45'),(361,'GLEAMING J','A Amazing ',2006,1,NULL,5,'2.99',89,'25.99','NC-17','Trailers,Commentaries','2008-03-01 21:06:45'),(362,'GLORY TRAC','A Amazing ',2006,1,NULL,7,'2.99',115,'13.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(363,'GO PURPLE','A Fast-Pac',2006,1,NULL,3,'0.99',54,'12.99','R','Trailers','2008-03-01 21:06:45'),(364,'GODFATHER ','A Stunning',2006,1,NULL,3,'2.99',73,'14.99','NC-17','Trailers','2008-03-01 21:06:45'),(365,'GOLD RIVER','A Taut Doc',2006,1,NULL,4,'4.99',154,'21.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(366,'GOLDFINGER','A Insightf',2006,1,NULL,3,'0.99',93,'29.99','G','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(367,'GOLDMINE T','A Brillian',2006,1,NULL,6,'0.99',153,'20.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(368,'GONE TROUB','A Insightf',2006,1,NULL,7,'2.99',84,'20.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(369,'GOODFELLAS','A Unbeliev',2006,1,NULL,4,'4.99',56,'22.99','PG','Deleted Scenes','2008-03-01 21:06:45'),(370,'GORGEOUS B','A Action-P',2006,1,NULL,4,'2.99',108,'26.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(371,'GOSFORD DO','A Epic Pan',2006,1,NULL,5,'4.99',129,'17.99','G','Commentaries','2008-03-01 21:06:45'),(372,'GRACELAND ','A Taut Dis',2006,1,NULL,5,'4.99',140,'26.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(373,'GRADUATE L','A Lacklust',2006,1,NULL,7,'2.99',156,'14.99','G','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(374,'GRAFFITI L','A Unbeliev',2006,1,NULL,3,'0.99',117,'29.99','PG','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(375,'GRAIL FRAN','A Unbeliev',2006,1,NULL,4,'2.99',85,'17.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(376,'GRAPES FUR','A Boring Y',2006,1,NULL,4,'0.99',155,'20.99','G','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(377,'GREASE YOU','A Emotiona',2006,1,NULL,7,'0.99',135,'20.99','G','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(378,'GREATEST N','A Astoundi',2006,1,NULL,5,'2.99',93,'24.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(379,'GREEDY ROO','A Amazing ',2006,1,NULL,7,'0.99',166,'14.99','R','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(380,'GREEK EVER','A Stunning',2006,1,NULL,7,'2.99',176,'11.99','PG','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(381,'GRINCH MAS','A Intrepid',2006,1,NULL,7,'4.99',150,'25.99','R','Trailers','2008-03-01 21:06:45'),(382,'GRIT CLOCK','A Thoughtf',2006,1,NULL,3,'0.99',137,'21.99','PG','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(383,'GROOVE FIC','A Unbeliev',2006,1,NULL,6,'0.99',111,'13.99','NC-17','Behind the Scenes','2008-03-01 21:06:45'),(384,'GROSSE WON','A Epic Dra',2006,1,NULL,5,'4.99',49,'19.99','R','Behind the Scenes','2008-03-01 21:06:45'),(385,'GROUNDHOG ','A Brillian',2006,1,NULL,6,'4.99',139,'26.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(386,'GUMP DATE','A Intrepid',2006,1,NULL,3,'4.99',53,'12.99','NC-17','Deleted Scenes','2008-03-01 21:06:45'),(387,'GUN BONNIE','A Boring D',2006,1,NULL,7,'0.99',100,'27.99','G','Behind the Scenes','2008-03-01 21:06:45'),(388,'GUNFIGHT M','A Epic Ref',2006,1,NULL,5,'0.99',70,'16.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(389,'GUNFIGHTER','A Touching',2006,1,NULL,3,'2.99',127,'9.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(390,'GUYS FALCO','A Boring S',2006,1,NULL,4,'4.99',84,'20.99','R','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(391,'HALF OUTFI','A Epic Epi',2006,1,NULL,6,'2.99',146,'25.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(392,'HALL CASSI','A Beautifu',2006,1,NULL,5,'4.99',51,'13.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(393,'HALLOWEEN ','A Amazing ',2006,1,NULL,6,'2.99',47,'19.99','PG-13','Deleted Scenes','2008-03-01 21:06:45'),(394,'HAMLET WIS','A Touching',2006,1,NULL,7,'2.99',146,'21.99','R','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(395,'HANDICAP B','A Beautifu',2006,1,NULL,4,'0.99',108,'28.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(396,'HANGING DE','A Action-P',2006,1,NULL,5,'4.99',62,'18.99','G','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(397,'HANKY OCTO','A Boring E',2006,1,NULL,5,'2.99',107,'26.99','NC-17','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(398,'HANOVER GA','A Stunning',2006,1,NULL,5,'4.99',47,'21.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(399,'HAPPINESS ','A Action-P',2006,1,NULL,6,'2.99',100,'23.99','G','Deleted Scenes','2008-03-01 21:06:45'),(400,'HARDLY ROB','A Emotiona',2006,1,NULL,7,'2.99',72,'15.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(401,'HAROLD FRE','A Stunning',2006,1,NULL,6,'0.99',168,'10.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(402,'HARPER DYI','A Awe-Insp',2006,1,NULL,3,'0.99',52,'15.99','G','Trailers','2008-03-01 21:06:45'),(403,'HARRY IDAH','A Taut Yar',2006,1,NULL,5,'4.99',121,'18.99','PG-13','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(404,'HATE HANDI','A Intrepid',2006,1,NULL,4,'0.99',107,'26.99','PG','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(405,'HAUNTED AN','A Amazing ',2006,1,NULL,6,'4.99',76,'13.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(406,'HAUNTING P','A Fast-Pac',2006,1,NULL,5,'0.99',181,'22.99','R','Behind the Scenes','2008-03-01 21:06:45'),(407,'HAWK CHILL','A Action-P',2006,1,NULL,5,'0.99',47,'12.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(408,'HEAD STRAN','A Thoughtf',2006,1,NULL,4,'4.99',69,'28.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(409,'HEARTBREAK','A Awe-Insp',2006,1,NULL,3,'4.99',59,'9.99','G','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(410,'HEAVEN FRE','A Intrepid',2006,1,NULL,7,'2.99',48,'19.99','PG','Commentaries','2008-03-01 21:06:45'),(411,'HEAVENLY G','A Beautifu',2006,1,NULL,5,'4.99',49,'13.99','NC-17','Behind the Scenes','2008-03-01 21:06:45'),(412,'HEAVYWEIGH','A Unbeliev',2006,1,NULL,6,'4.99',102,'25.99','G','Deleted Scenes','2008-03-01 21:06:45'),(413,'HEDWIG ALT','A Action-P',2006,1,NULL,7,'2.99',169,'16.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(414,'HELLFIGHTE','A Taut Ref',2006,1,NULL,3,'2.99',75,'23.99','PG','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(415,'HIGH ENCIN','A Fateful ',2006,1,NULL,3,'2.99',84,'23.99','R','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(416,'HIGHBALL P','A Action-P',2006,1,NULL,6,'0.99',110,'10.99','R','Deleted Scenes','2008-03-01 21:06:45'),(417,'HILLS NEIG','A Epic Dis',2006,1,NULL,5,'0.99',93,'29.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(418,'HOBBIT ALI','A Emotiona',2006,1,NULL,5,'0.99',157,'27.99','PG-13','Commentaries','2008-03-01 21:06:45'),(419,'HOCUS FRID','A Awe-Insp',2006,1,NULL,4,'2.99',141,'19.99','G','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(420,'HOLES BRAN','A Fast-Pac',2006,1,NULL,7,'4.99',128,'27.99','PG','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(421,'HOLIDAY GA','A Insightf',2006,1,NULL,7,'4.99',78,'10.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(422,'HOLLOW JEO','A Beautifu',2006,1,NULL,7,'4.99',136,'25.99','NC-17','Behind the Scenes','2008-03-01 21:06:45'),(423,'HOLLYWOOD ','A Fast-Pac',2006,1,NULL,7,'0.99',69,'29.99','PG','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(424,'HOLOCAUST ','A Awe-Insp',2006,1,NULL,6,'0.99',149,'12.99','R','Deleted Scenes','2008-03-01 21:06:45'),(425,'HOLY TADPO','A Action-P',2006,1,NULL,6,'0.99',88,'20.99','R','Behind the Scenes','2008-03-01 21:06:45'),(426,'HOME PITY','A Touching',2006,1,NULL,7,'4.99',185,'15.99','R','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(427,'HOMEWARD C','A Taut Ref',2006,1,NULL,5,'0.99',103,'19.99','R','Trailers','2008-03-01 21:06:45'),(428,'HOMICIDE P','A Astoundi',2006,1,NULL,6,'2.99',141,'21.99','PG-13','Commentaries','2008-03-01 21:06:45'),(429,'HONEY TIES','A Taut Sto',2006,1,NULL,3,'0.99',84,'29.99','R','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(430,'HOOK CHARI','A Insightf',2006,1,NULL,7,'0.99',49,'23.99','G','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(431,'HOOSIERS B','A Astoundi',2006,1,NULL,3,'2.99',176,'12.99','G','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(432,'HOPE TOOTS','A Amazing ',2006,1,NULL,4,'2.99',139,'22.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(433,'HORN WORKI','A Stunning',2006,1,NULL,4,'2.99',95,'23.99','PG','Trailers','2008-03-01 21:06:45'),(434,'HORROR REI','A Touching',2006,1,NULL,3,'0.99',139,'25.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(435,'HOTEL HAPP','A Thrillin',2006,1,NULL,6,'4.99',181,'28.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(436,'HOURS RAGE','A Fateful ',2006,1,NULL,4,'0.99',122,'14.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(437,'HOUSE DYNA','A Taut Sto',2006,1,NULL,7,'2.99',109,'13.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(438,'HUMAN GRAF','A Beautifu',2006,1,NULL,3,'2.99',68,'22.99','NC-17','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(439,'HUNCHBACK ','A Touching',2006,1,NULL,4,'4.99',151,'28.99','PG-13','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(440,'HUNGER ROO','A Unbeliev',2006,1,NULL,6,'0.99',105,'21.99','G','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(441,'HUNTER ALT','A Emotiona',2006,1,NULL,5,'2.99',125,'21.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(442,'HUNTING MU','A Thrillin',2006,1,NULL,6,'2.99',65,'24.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(443,'HURRICANE ','A Lacklust',2006,1,NULL,6,'2.99',49,'11.99','PG','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(444,'HUSTLER PA','A Emotiona',2006,1,NULL,3,'4.99',83,'22.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(445,'HYDE DOCTO','A Fanciful',2006,1,NULL,5,'2.99',100,'11.99','G','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(446,'HYSTERICAL','A Amazing ',2006,1,NULL,5,'4.99',150,'19.99','PG','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(447,'ICE CROSSI','A Fast-Pac',2006,1,NULL,5,'2.99',131,'28.99','R','Deleted Scenes','2008-03-01 21:06:45'),(448,'IDAHO LOVE','A Fast-Pac',2006,1,NULL,3,'2.99',172,'25.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(449,'IDENTITY L','A Boring T',2006,1,NULL,4,'2.99',119,'12.99','PG-13','Deleted Scenes','2008-03-01 21:06:45'),(450,'IDOLS SNAT','A Insightf',2006,1,NULL,5,'2.99',84,'29.99','NC-17','Trailers','2008-03-01 21:06:45'),(451,'IGBY MAKER','A Epic Doc',2006,1,NULL,7,'4.99',160,'12.99','NC-17','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(452,'ILLUSION A','A Emotiona',2006,1,NULL,4,'0.99',122,'15.99','R','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(453,'IMAGE PRIN','A Lacklust',2006,1,NULL,3,'2.99',178,'17.99','PG-13','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(454,'IMPACT ALA','A Epic Cha',2006,1,NULL,6,'0.99',180,'20.99','PG-13','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(455,'IMPOSSIBLE','A Awe-Insp',2006,1,NULL,7,'4.99',103,'11.99','NC-17','Deleted Scenes','2008-03-01 21:06:45'),(456,'INCH JET','A Fateful ',2006,1,NULL,6,'4.99',167,'18.99','NC-17','Deleted Scenes','2008-03-01 21:06:45'),(457,'INDEPENDEN','A Thrillin',2006,1,NULL,5,'0.99',157,'21.99','NC-17','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(458,'INDIAN LOV','A Insightf',2006,1,NULL,4,'0.99',135,'26.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(459,'INFORMER D','A Action-P',2006,1,NULL,4,'4.99',74,'23.99','NC-17','Trailers,Commentaries','2008-03-01 21:06:45'),(460,'INNOCENT U','A Beautifu',2006,1,NULL,3,'4.99',178,'26.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(461,'INSECTS ST','A Epic Dis',2006,1,NULL,3,'0.99',123,'14.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(462,'INSIDER AR','A Astoundi',2006,1,NULL,5,'2.99',78,'17.99','NC-17','Commentaries','2008-03-01 21:06:45'),(463,'INSTINCT A','A Touching',2006,1,NULL,4,'2.99',116,'21.99','PG','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(464,'INTENTIONS','A Astoundi',2006,1,NULL,3,'2.99',107,'13.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(465,'INTERVIEW ','A Action-P',2006,1,NULL,4,'4.99',59,'17.99','R','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(466,'INTOLERABL','A Awe-Insp',2006,1,NULL,6,'4.99',63,'20.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(467,'INTRIGUE W','A Fanciful',2006,1,NULL,6,'0.99',181,'10.99','G','Deleted Scenes','2008-03-01 21:06:45'),(468,'INVASION C','A Lacklust',2006,1,NULL,5,'2.99',97,'12.99','PG','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(469,'IRON MOON','A Fast-Pac',2006,1,NULL,7,'4.99',46,'27.99','PG','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(470,'ISHTAR ROC','A Astoundi',2006,1,NULL,4,'4.99',79,'24.99','R','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(471,'ISLAND EXO','A Fanciful',2006,1,NULL,7,'2.99',84,'23.99','NC-17','Trailers,Commentaries','2008-03-01 21:06:45'),(472,'ITALIAN AF','A Astoundi',2006,1,NULL,3,'4.99',174,'24.99','G','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(473,'JACKET FRI','A Insightf',2006,1,NULL,5,'2.99',181,'16.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(474,'JADE BUNCH','A Insightf',2006,1,NULL,6,'2.99',174,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(475,'JAPANESE R','A Awe-Insp',2006,1,NULL,6,'0.99',135,'29.99','G','Deleted Scenes','2008-03-01 21:06:45'),(476,'JASON TRAP','A Thoughtf',2006,1,NULL,5,'2.99',130,'9.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(477,'JAWBREAKER','A Stunning',2006,1,NULL,5,'0.99',118,'15.99','PG','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(478,'JAWS HARRY','A Thrillin',2006,1,NULL,4,'2.99',112,'10.99','G','Deleted Scenes','2008-03-01 21:06:45'),(479,'JEDI BENEA','A Astoundi',2006,1,NULL,7,'0.99',128,'12.99','PG','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(480,'JEEPERS WE','A Astoundi',2006,1,NULL,3,'2.99',84,'29.99','R','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(481,'JEKYLL FRO','A Fanciful',2006,1,NULL,4,'2.99',58,'22.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(482,'JEOPARDY E','A Boring P',2006,1,NULL,3,'0.99',102,'12.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(483,'JERICHO MU','A Amazing ',2006,1,NULL,3,'2.99',171,'29.99','NC-17','Commentaries','2008-03-01 21:06:45'),(484,'JERK PAYCH','A Touching',2006,1,NULL,3,'2.99',172,'13.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(485,'JERSEY SAS','A Lacklust',2006,1,NULL,6,'4.99',60,'16.99','PG','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(486,'JET NEIGHB','A Amazing ',2006,1,NULL,7,'4.99',59,'14.99','R','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(487,'JINGLE SAG','A Epic Cha',2006,1,NULL,6,'4.99',124,'29.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(488,'JOON NORTH','A Thrillin',2006,1,NULL,3,'0.99',105,'23.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(489,'JUGGLER HA','A Epic Sto',2006,1,NULL,4,'0.99',54,'14.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(490,'JUMANJI BL','A Intrepid',2006,1,NULL,4,'2.99',121,'13.99','G','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(491,'JUMPING WR','A Touching',2006,1,NULL,4,'0.99',74,'18.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(492,'JUNGLE CLO','A Boring C',2006,1,NULL,6,'0.99',134,'11.99','NC-17','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(493,'KANE EXORC','A Epic Doc',2006,1,NULL,5,'0.99',92,'18.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(494,'KARATE MOO','A Astoundi',2006,1,NULL,4,'0.99',120,'21.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(495,'KENTUCKIAN','A Stunning',2006,1,NULL,5,'2.99',169,'10.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(496,'KICK SAVAN','A Emotiona',2006,1,NULL,3,'0.99',179,'10.99','PG-13','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(497,'KILL BROTH','A Touching',2006,1,NULL,4,'0.99',54,'15.99','G','Trailers,Commentaries','2008-03-01 21:06:45'),(498,'KILLER INN','A Fanciful',2006,1,NULL,7,'2.99',161,'11.99','R','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(499,'KING EVOLU','A Action-P',2006,1,NULL,3,'4.99',184,'24.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(500,'KISS GLORY','A Lacklust',2006,1,NULL,5,'4.99',163,'11.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(501,'KISSING DO','A Insightf',2006,1,NULL,3,'4.99',141,'9.99','R','Trailers','2008-03-01 21:06:45'),(502,'KNOCK WARL','A Unbeliev',2006,1,NULL,4,'2.99',71,'21.99','PG-13','Trailers','2008-03-01 21:06:45'),(503,'KRAMER CHO','A Amazing ',2006,1,NULL,3,'2.99',171,'24.99','R','Trailers','2008-03-01 21:06:45'),(504,'KWAI HOMEW','A Amazing ',2006,1,NULL,5,'0.99',46,'25.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(505,'LABYRINTH ','A Awe-Insp',2006,1,NULL,6,'2.99',46,'24.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(506,'LADY STAGE','A Beautifu',2006,1,NULL,4,'4.99',67,'14.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(507,'LADYBUGS A','A Fateful ',2006,1,NULL,4,'0.99',113,'13.99','NC-17','Deleted Scenes','2008-03-01 21:06:45'),(508,'LAMBS CINC','A Insightf',2006,1,NULL,6,'4.99',144,'18.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(509,'LANGUAGE C','A Epic Yar',2006,1,NULL,5,'0.99',78,'26.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(510,'LAWLESS VI','A Insightf',2006,1,NULL,6,'4.99',181,'29.99','G','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(511,'LAWRENCE L','A Fanciful',2006,1,NULL,7,'0.99',175,'23.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(512,'LEAGUE HEL','A Thoughtf',2006,1,NULL,5,'4.99',110,'25.99','PG-13','Trailers','2008-03-01 21:06:45'),(513,'LEATHERNEC','A Fateful ',2006,1,NULL,6,'2.99',153,'21.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(514,'LEBOWSKI S','A Beautifu',2006,1,NULL,6,'2.99',69,'17.99','PG-13','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(515,'LEGALLY SE','A Astoundi',2006,1,NULL,7,'4.99',113,'14.99','PG','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(516,'LEGEND JED','A Awe-Insp',2006,1,NULL,7,'0.99',59,'18.99','PG','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(517,'LESSON CLE','A Emotiona',2006,1,NULL,3,'0.99',167,'28.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(518,'LIAISONS S','A Boring D',2006,1,NULL,5,'4.99',140,'15.99','PG','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(519,'LIBERTY MA','A Boring D',2006,1,NULL,3,'2.99',138,'27.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(520,'LICENSE WE','A Insightf',2006,1,NULL,7,'2.99',91,'28.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(521,'LIES TREAT','A Fast-Pac',2006,1,NULL,7,'4.99',147,'28.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(522,'LIFE TWIST','A Thrillin',2006,1,NULL,4,'2.99',137,'9.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(523,'LIGHTS DEE','A Unbeliev',2006,1,NULL,7,'0.99',174,'21.99','R','Commentaries','2008-03-01 21:06:45'),(524,'LION UNCUT','A Intrepid',2006,1,NULL,6,'0.99',50,'13.99','PG','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(525,'LOATHING L','A Boring E',2006,1,NULL,4,'0.99',140,'29.99','R','Deleted Scenes','2008-03-01 21:06:45'),(526,'LOCK REAR','A Thoughtf',2006,1,NULL,7,'2.99',120,'10.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(527,'LOLA AGENT','A Astoundi',2006,1,NULL,4,'4.99',85,'24.99','PG','Trailers,Commentaries','2008-03-01 21:06:45'),(528,'LOLITA WOR','A Thrillin',2006,1,NULL,4,'2.99',155,'25.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(529,'LONELY ELE','A Intrepid',2006,1,NULL,3,'2.99',67,'12.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(530,'LORD ARIZO','A Action-P',2006,1,NULL,5,'2.99',108,'27.99','PG-13','Trailers','2008-03-01 21:06:45'),(531,'LOSE INCH','A Stunning',2006,1,NULL,3,'0.99',137,'18.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(532,'LOSER HUST','A Stunning',2006,1,NULL,5,'4.99',80,'28.99','PG','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(533,'LOST BIRD','A Emotiona',2006,1,NULL,4,'2.99',98,'21.99','PG-13','Deleted Scenes','2008-03-01 21:06:45'),(534,'LOUISIANA ','A Lacklust',2006,1,NULL,5,'0.99',70,'18.99','PG-13','Trailers','2008-03-01 21:06:45'),(535,'LOVE SUICI','A Brillian',2006,1,NULL,6,'0.99',181,'21.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(536,'LOVELY JIN','A Fanciful',2006,1,NULL,3,'2.99',65,'18.99','PG','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(537,'LOVER TRUM','A Emotiona',2006,1,NULL,3,'2.99',75,'29.99','G','Trailers','2008-03-01 21:06:45'),(538,'LOVERBOY A','A Boring S',2006,1,NULL,7,'0.99',162,'19.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(539,'LUCK OPUS','A Boring D',2006,1,NULL,7,'2.99',152,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(540,'LUCKY FLYI','A Lacklust',2006,1,NULL,7,'2.99',97,'10.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(541,'LUKE MUMMY','A Taut Cha',2006,1,NULL,5,'2.99',74,'21.99','NC-17','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(542,'LUST LOCK','A Fanciful',2006,1,NULL,3,'2.99',52,'28.99','G','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(543,'MADIGAN DO','A Astoundi',2006,1,NULL,5,'4.99',116,'20.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(544,'MADISON TR','A Awe-Insp',2006,1,NULL,4,'2.99',147,'11.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(545,'MADNESS AT','A Fanciful',2006,1,NULL,4,'0.99',178,'14.99','PG-13','Trailers','2008-03-01 21:06:45'),(546,'MADRE GABL','A Intrepid',2006,1,NULL,7,'2.99',98,'27.99','PG-13','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(547,'MAGIC MALL','A Touching',2006,1,NULL,3,'0.99',117,'19.99','PG','Trailers,Commentaries','2008-03-01 21:06:45'),(548,'MAGNIFICEN','A Insightf',2006,1,NULL,3,'2.99',53,'27.99','R','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(549,'MAGNOLIA F','A Thoughtf',2006,1,NULL,4,'0.99',171,'28.99','PG-13','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(550,'MAGUIRE AP','A Fast-Pac',2006,1,NULL,6,'2.99',74,'22.99','NC-17','Trailers,Commentaries','2008-03-01 21:06:45'),(551,'MAIDEN HOM','A Lacklust',2006,1,NULL,3,'4.99',138,'9.99','PG','Behind the Scenes','2008-03-01 21:06:45'),(552,'MAJESTIC F','A Thrillin',2006,1,NULL,5,'0.99',130,'15.99','PG','Trailers','2008-03-01 21:06:45'),(553,'MAKER GABL','A Stunning',2006,1,NULL,4,'0.99',136,'12.99','PG-13','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(554,'MALKOVICH ','A Intrepid',2006,1,NULL,6,'2.99',159,'22.99','G','Behind the Scenes','2008-03-01 21:06:45'),(555,'MALLRATS U','A Thrillin',2006,1,NULL,4,'0.99',133,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(556,'MALTESE HO','A Fast-Pac',2006,1,NULL,6,'4.99',127,'26.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(557,'MANCHURIAN','A Stunning',2006,1,NULL,5,'2.99',177,'27.99','PG','Trailers,Commentaries','2008-03-01 21:06:45'),(558,'MANNEQUIN ','A Astoundi',2006,1,NULL,3,'2.99',71,'18.99','PG-13','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(559,'MARRIED GO','A Fanciful',2006,1,NULL,7,'2.99',114,'22.99','G','Behind the Scenes','2008-03-01 21:06:45'),(560,'MARS ROMAN','A Boring D',2006,1,NULL,6,'0.99',62,'21.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(561,'MASK PEACH','A Boring C',2006,1,NULL,6,'2.99',123,'26.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(562,'MASKED BUB','A Fanciful',2006,1,NULL,6,'0.99',151,'12.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(563,'MASSACRE U','A Fateful ',2006,1,NULL,6,'4.99',165,'16.99','R','Commentaries','2008-03-01 21:06:45'),(564,'MASSAGE IM','A Fateful ',2006,1,NULL,4,'2.99',161,'11.99','PG','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(565,'MATRIX SNO','A Action-P',2006,1,NULL,6,'4.99',56,'9.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(566,'MAUDE MOD','A Beautifu',2006,1,NULL,6,'0.99',72,'20.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(567,'MEET CHOCO','A Boring D',2006,1,NULL,3,'2.99',80,'26.99','G','Trailers','2008-03-01 21:06:45'),(568,'MEMENTO ZO','A Touching',2006,1,NULL,4,'4.99',77,'11.99','NC-17','Behind the Scenes','2008-03-01 21:06:45'),(569,'MENAGERIE ','A Unbeliev',2006,1,NULL,7,'2.99',147,'18.99','G','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(570,'MERMAID IN','A Lacklust',2006,1,NULL,5,'4.99',104,'20.99','NC-17','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(571,'METAL ARMA','A Thrillin',2006,1,NULL,6,'2.99',161,'26.99','PG-13','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(572,'METROPOLIS','A Emotiona',2006,1,NULL,4,'2.99',64,'9.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(573,'MICROCOSMO','A Touching',2006,1,NULL,6,'2.99',105,'22.99','PG-13','Commentaries','2008-03-01 21:06:45'),(574,'MIDNIGHT W','A Taut Ref',2006,1,NULL,3,'0.99',86,'19.99','G','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(575,'MIDSUMMER ','A Fateful ',2006,1,NULL,3,'4.99',48,'27.99','G','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(576,'MIGHTY LUC','A Astoundi',2006,1,NULL,7,'2.99',122,'13.99','PG','Behind the Scenes','2008-03-01 21:06:45'),(577,'MILE MULAN','A Lacklust',2006,1,NULL,4,'0.99',64,'10.99','PG','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(578,'MILLION AC','A Brillian',2006,1,NULL,4,'4.99',142,'16.99','PG-13','Deleted Scenes','2008-03-01 21:06:45'),(579,'MINDS TRUM','A Taut Yar',2006,1,NULL,3,'4.99',149,'22.99','PG-13','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(580,'MINE TITAN','A Amazing ',2006,1,NULL,3,'4.99',166,'12.99','PG-13','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(581,'MINORITY K','A Insightf',2006,1,NULL,4,'0.99',59,'16.99','G','Trailers','2008-03-01 21:06:45'),(582,'MIRACLE VI','A Touching',2006,1,NULL,3,'2.99',162,'19.99','PG-13','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(583,'MISSION ZO','A Intrepid',2006,1,NULL,3,'4.99',164,'26.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(584,'MIXED DOOR','A Taut Dra',2006,1,NULL,6,'2.99',180,'26.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(585,'MOB DUFFEL','A Unbeliev',2006,1,NULL,4,'0.99',105,'25.99','G','Trailers','2008-03-01 21:06:45'),(586,'MOCKINGBIR','A Thoughtf',2006,1,NULL,4,'0.99',60,'27.99','PG','Behind the Scenes','2008-03-01 21:06:45'),(587,'MOD SECRET','A Boring D',2006,1,NULL,6,'4.99',77,'20.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(588,'MODEL FISH','A Beautifu',2006,1,NULL,4,'4.99',175,'11.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(589,'MODERN DOR','A Awe-Insp',2006,1,NULL,3,'0.99',74,'20.99','PG','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(590,'MONEY HARO','A Touching',2006,1,NULL,3,'2.99',135,'17.99','PG','Trailers,Commentaries','2008-03-01 21:06:45'),(591,'MONSOON CA','A Astoundi',2006,1,NULL,6,'4.99',182,'20.99','PG','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(592,'MONSTER SP','A Fast-Pac',2006,1,NULL,6,'2.99',107,'28.99','PG','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(593,'MONTEREY L','A Awe-Insp',2006,1,NULL,6,'0.99',158,'13.99','G','Trailers,Commentaries','2008-03-01 21:06:45'),(594,'MONTEZUMA ','A Thrillin',2006,1,NULL,6,'0.99',126,'22.99','NC-17','Trailers','2008-03-01 21:06:45'),(595,'MOON BUNCH','A Beautifu',2006,1,NULL,7,'0.99',83,'20.99','PG','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(596,'MOONSHINE ','A Thoughtf',2006,1,NULL,4,'4.99',171,'25.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(597,'MOONWALKER','A Epic Dra',2006,1,NULL,5,'4.99',184,'12.99','G','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(598,'MOSQUITO A','A Thoughtf',2006,1,NULL,6,'0.99',57,'22.99','G','Trailers','2008-03-01 21:06:45'),(599,'MOTHER OLE','A Boring T',2006,1,NULL,3,'0.99',103,'20.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(600,'MOTIONS DE','A Awe-Insp',2006,1,NULL,5,'0.99',166,'16.99','PG','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(601,'MOULIN WAK','A Astoundi',2006,1,NULL,4,'0.99',79,'20.99','PG-13','Trailers','2008-03-01 21:06:45'),(602,'MOURNING P','A Lacklust',2006,1,NULL,5,'0.99',146,'14.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(603,'MOVIE SHAK','A Insightf',2006,1,NULL,6,'4.99',53,'27.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(604,'MULAN MOON','A Emotiona',2006,1,NULL,4,'0.99',160,'10.99','G','Behind the Scenes','2008-03-01 21:06:45'),(605,'MULHOLLAND','A Awe-Insp',2006,1,NULL,7,'2.99',157,'13.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(606,'MUMMY CREA','A Fateful ',2006,1,NULL,3,'0.99',160,'15.99','NC-17','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(607,'MUPPET MIL','A Lacklust',2006,1,NULL,5,'4.99',50,'18.99','PG','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(608,'MURDER ANT','A Brillian',2006,1,NULL,6,'2.99',166,'11.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(609,'MUSCLE BRI','A Stunning',2006,1,NULL,7,'2.99',185,'23.99','G','Deleted Scenes','2008-03-01 21:06:45'),(610,'MUSIC BOON','A Thrillin',2006,1,NULL,7,'0.99',129,'17.99','R','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(611,'MUSKETEERS','A Touching',2006,1,NULL,7,'4.99',73,'17.99','PG','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(612,'MUSSOLINI ','A Thrillin',2006,1,NULL,6,'2.99',180,'10.99','G','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(613,'MYSTIC TRU','A Epic Yar',2006,1,NULL,5,'0.99',92,'19.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(614,'NAME DETEC','A Touching',2006,1,NULL,5,'4.99',178,'11.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(615,'NASH CHOCO','A Epic Ref',2006,1,NULL,6,'2.99',180,'21.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(616,'NATIONAL S','A Taut Epi',2006,1,NULL,4,'2.99',92,'19.99','NC-17','Trailers','2008-03-01 21:06:45'),(617,'NATURAL ST','A Fast-Pac',2006,1,NULL,4,'0.99',50,'24.99','PG-13','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(618,'NECKLACE O','A Astoundi',2006,1,NULL,3,'0.99',132,'21.99','PG','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(619,'NEIGHBORS ','A Fanciful',2006,1,NULL,3,'0.99',161,'20.99','R','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(620,'NEMO CAMPU','A Lacklust',2006,1,NULL,5,'2.99',131,'23.99','NC-17','Trailers','2008-03-01 21:06:45'),(621,'NETWORK PE','A Unbeliev',2006,1,NULL,5,'2.99',75,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(622,'NEWSIES ST','A Action-P',2006,1,NULL,4,'0.99',159,'25.99','G','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(623,'NEWTON LAB','A Intrepid',2006,1,NULL,4,'0.99',75,'9.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(624,'NIGHTMARE ','A Brillian',2006,1,NULL,3,'4.99',149,'25.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(625,'NONE SPIKI','A Boring R',2006,1,NULL,3,'0.99',83,'18.99','NC-17','Trailers,Commentaries','2008-03-01 21:06:45'),(626,'NOON PAPI','A Unbeliev',2006,1,NULL,5,'2.99',57,'12.99','G','Behind the Scenes','2008-03-01 21:06:45'),(627,'NORTH TEQU','A Beautifu',2006,1,NULL,4,'4.99',67,'9.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(628,'NORTHWEST ','A Boring C',2006,1,NULL,5,'2.99',172,'24.99','PG','Trailers','2008-03-01 21:06:45'),(629,'NOTORIOUS ','A Amazing ',2006,1,NULL,7,'0.99',128,'9.99','NC-17','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(630,'NOTTING SP','A Thoughtf',2006,1,NULL,7,'0.99',48,'19.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(631,'NOVOCAINE ','A Fanciful',2006,1,NULL,4,'0.99',64,'11.99','G','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(632,'NUTS TIES','A Thoughtf',2006,1,NULL,5,'4.99',145,'10.99','NC-17','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(633,'OCTOBER SU','A Taut Epi',2006,1,NULL,6,'4.99',54,'10.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(634,'ODDS BOOGI','A Thrillin',2006,1,NULL,6,'0.99',48,'14.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(635,'OKLAHOMA J','A Thoughtf',2006,1,NULL,7,'0.99',58,'15.99','PG','Behind the Scenes','2008-03-01 21:06:45'),(636,'OLEANDER C','A Boring S',2006,1,NULL,5,'0.99',161,'12.99','PG','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(637,'OPEN AFRIC','A Lacklust',2006,1,NULL,7,'4.99',131,'16.99','PG','Trailers,Commentaries','2008-03-01 21:06:45'),(638,'OPERATION ','A Intrepid',2006,1,NULL,7,'2.99',156,'23.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(639,'OPPOSITE N','A Fateful ',2006,1,NULL,7,'4.99',92,'9.99','PG','Deleted Scenes','2008-03-01 21:06:45'),(640,'OPUS ICE','A Fast-Pac',2006,1,NULL,5,'4.99',102,'21.99','R','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(641,'ORANGE GRA','A Astoundi',2006,1,NULL,4,'0.99',76,'21.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(642,'ORDER BETR','A Amazing ',2006,1,NULL,7,'2.99',120,'13.99','PG-13','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(643,'ORIENT CLO','A Astoundi',2006,1,NULL,3,'2.99',118,'22.99','R','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(644,'OSCAR GOLD','A Insightf',2006,1,NULL,7,'2.99',115,'29.99','PG','Behind the Scenes','2008-03-01 21:06:45'),(645,'OTHERS SOU','A Lacklust',2006,1,NULL,7,'2.99',118,'18.99','PG','Deleted Scenes','2008-03-01 21:06:45'),(646,'OUTBREAK D','A Unbeliev',2006,1,NULL,6,'0.99',169,'12.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(647,'OUTFIELD M','A Thoughtf',2006,1,NULL,4,'0.99',129,'18.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(648,'OUTLAW HAN','A Thoughtf',2006,1,NULL,7,'4.99',148,'17.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(649,'OZ LIAISON','A Epic Yar',2006,1,NULL,4,'2.99',85,'14.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(650,'PACIFIC AM','A Thrillin',2006,1,NULL,3,'0.99',144,'27.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(651,'PACKER MAD','A Epic Dis',2006,1,NULL,3,'0.99',84,'20.99','PG-13','Trailers','2008-03-01 21:06:45'),(652,'PAJAMA JAW','A Emotiona',2006,1,NULL,3,'0.99',126,'14.99','R','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(653,'PANIC CLUB','A Fanciful',2006,1,NULL,3,'4.99',102,'15.99','G','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(654,'PANKY SUBM','A Touching',2006,1,NULL,4,'4.99',93,'19.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(655,'PANTHER RE','A Brillian',2006,1,NULL,5,'4.99',109,'22.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(656,'PAPI NECKL','A Fanciful',2006,1,NULL,3,'0.99',128,'9.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(657,'PARADISE S','A Intrepid',2006,1,NULL,5,'2.99',48,'12.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(658,'PARIS WEEK','A Intrepid',2006,1,NULL,7,'2.99',121,'19.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(659,'PARK CITIZ','A Taut Epi',2006,1,NULL,3,'4.99',109,'14.99','PG-13','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(660,'PARTY KNOC','A Fateful ',2006,1,NULL,7,'2.99',107,'11.99','PG','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(661,'PAST SUICI','A Intrepid',2006,1,NULL,5,'4.99',157,'17.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(662,'PATHS CONT','A Astoundi',2006,1,NULL,3,'4.99',118,'9.99','PG','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(663,'PATIENT SI','A Emotiona',2006,1,NULL,7,'0.99',99,'29.99','NC-17','Trailers,Commentaries','2008-03-01 21:06:45'),(664,'PATRIOT RO','A Taut Sag',2006,1,NULL,6,'2.99',65,'12.99','PG','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(665,'PATTON INT','A Thrillin',2006,1,NULL,4,'2.99',175,'22.99','PG','Commentaries','2008-03-01 21:06:45'),(666,'PAYCHECK W','A Awe-Insp',2006,1,NULL,4,'4.99',145,'27.99','PG-13','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(667,'PEACH INNO','A Action-P',2006,1,NULL,3,'2.99',160,'20.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(668,'PEAK FOREV','A Insightf',2006,1,NULL,7,'4.99',80,'25.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(669,'PEARL DEST','A Lacklust',2006,1,NULL,3,'2.99',74,'10.99','NC-17','Trailers','2008-03-01 21:06:45'),(670,'PELICAN CO','A Epic Doc',2006,1,NULL,4,'4.99',48,'17.99','PG','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(671,'PERDITION ','A Fast-Pac',2006,1,NULL,7,'4.99',99,'27.99','NC-17','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(672,'PERFECT GR','A Thrillin',2006,1,NULL,7,'2.99',82,'17.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(673,'PERSONAL L','A Epic Sag',2006,1,NULL,3,'0.99',118,'19.99','PG-13','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(674,'PET HAUNTI','A Unbeliev',2006,1,NULL,3,'0.99',99,'11.99','PG','Trailers,Commentaries','2008-03-01 21:06:45'),(675,'PHANTOM GL','A Beautifu',2006,1,NULL,6,'2.99',60,'17.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(676,'PHILADELPH','A Taut Yar',2006,1,NULL,7,'4.99',137,'16.99','PG-13','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(677,'PIANIST OU','A Intrepid',2006,1,NULL,6,'0.99',136,'25.99','NC-17','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(678,'PICKUP DRI','A Touching',2006,1,NULL,3,'2.99',77,'23.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(679,'PILOT HOOS','A Awe-Insp',2006,1,NULL,6,'2.99',50,'17.99','PG','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(680,'PINOCCHIO ','A Action-P',2006,1,NULL,4,'4.99',103,'21.99','PG','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(681,'PIRATES RO','A Stunning',2006,1,NULL,4,'0.99',100,'20.99','PG','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(682,'PITTSBURGH','A Thrillin',2006,1,NULL,4,'4.99',134,'17.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(683,'PITY BOUND','A Boring P',2006,1,NULL,5,'4.99',60,'19.99','NC-17','Commentaries','2008-03-01 21:06:45'),(684,'PIZZA JUMA','A Epic Sag',2006,1,NULL,4,'2.99',173,'11.99','NC-17','Commentaries','2008-03-01 21:06:45'),(685,'PLATOON IN','A Thrillin',2006,1,NULL,6,'4.99',132,'10.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(686,'PLUTO OLEA','A Action-P',2006,1,NULL,5,'4.99',84,'9.99','R','Behind the Scenes','2008-03-01 21:06:45'),(687,'POCUS PULP','A Intrepid',2006,1,NULL,6,'0.99',138,'15.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(688,'POLISH BRO','A Boring C',2006,1,NULL,6,'0.99',61,'12.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(689,'POLLOCK DE','A Intrepid',2006,1,NULL,5,'2.99',137,'14.99','PG','Commentaries','2008-03-01 21:06:45'),(690,'POND SEATT','A Stunning',2006,1,NULL,7,'2.99',185,'25.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(691,'POSEIDON F','A Thoughtf',2006,1,NULL,6,'4.99',159,'29.99','PG-13','Commentaries','2008-03-01 21:06:45'),(692,'POTLUCK MI','A Beautifu',2006,1,NULL,3,'2.99',179,'10.99','G','Behind the Scenes','2008-03-01 21:06:45'),(693,'POTTER CON','A Thrillin',2006,1,NULL,5,'2.99',115,'16.99','PG','Trailers,Commentaries','2008-03-01 21:06:45'),(694,'PREJUDICE ','A Epic Sag',2006,1,NULL,6,'4.99',98,'15.99','PG-13','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(695,'PRESIDENT ','A Fateful ',2006,1,NULL,6,'4.99',144,'12.99','PG','Behind the Scenes','2008-03-01 21:06:45'),(696,'PRIDE ALAM','A Thoughtf',2006,1,NULL,6,'0.99',114,'20.99','NC-17','Deleted Scenes','2008-03-01 21:06:45'),(697,'PRIMARY GL','A Fateful ',2006,1,NULL,7,'0.99',53,'16.99','G','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(698,'PRINCESS G','A Thrillin',2006,1,NULL,3,'2.99',71,'29.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(699,'PRIVATE DR','A Stunning',2006,1,NULL,7,'4.99',106,'26.99','PG','Trailers','2008-03-01 21:06:45'),(700,'PRIX UNDEF','A Stunning',2006,1,NULL,4,'2.99',115,'13.99','R','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(701,'PSYCHO SHR','A Amazing ',2006,1,NULL,5,'2.99',155,'11.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(702,'PULP BEVER','A Unbeliev',2006,1,NULL,4,'2.99',89,'12.99','G','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(703,'PUNK DIVOR','A Fast-Pac',2006,1,NULL,6,'4.99',100,'18.99','PG','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(704,'PURE RUNNE','A Thoughtf',2006,1,NULL,3,'2.99',121,'25.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(705,'PURPLE MOV','A Boring D',2006,1,NULL,4,'2.99',88,'9.99','R','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(706,'QUEEN LUKE','A Astoundi',2006,1,NULL,5,'4.99',163,'22.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(707,'QUEST MUSS','A Fateful ',2006,1,NULL,5,'2.99',177,'29.99','R','Behind the Scenes','2008-03-01 21:06:45'),(708,'QUILLS BUL','A Thoughtf',2006,1,NULL,4,'4.99',112,'19.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(709,'RACER EGG','A Emotiona',2006,1,NULL,7,'2.99',147,'19.99','NC-17','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(710,'RAGE GAMES','A Fast-Pac',2006,1,NULL,4,'4.99',120,'18.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(711,'RAGING AIR','A Astoundi',2006,1,NULL,4,'4.99',154,'18.99','R','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(712,'RAIDERS AN','A Amazing ',2006,1,NULL,4,'0.99',82,'11.99','PG-13','Deleted Scenes','2008-03-01 21:06:45'),(713,'RAINBOW SH','A Action-P',2006,1,NULL,3,'4.99',74,'14.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(714,'RANDOM GO','A Fateful ',2006,1,NULL,6,'2.99',73,'29.99','NC-17','Trailers','2008-03-01 21:06:45'),(715,'RANGE MOON','A Insightf',2006,1,NULL,3,'4.99',147,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(716,'REAP UNFAI','A Thrillin',2006,1,NULL,6,'2.99',136,'26.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(717,'REAR TRADI','A Awe-Insp',2006,1,NULL,6,'0.99',97,'23.99','NC-17','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(718,'REBEL AIRP','A Intrepid',2006,1,NULL,7,'0.99',73,'24.99','G','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(719,'RECORDS ZO','A Amazing ',2006,1,NULL,7,'4.99',182,'11.99','PG','Behind the Scenes','2008-03-01 21:06:45'),(720,'REDEMPTION','A Emotiona',2006,1,NULL,3,'2.99',179,'20.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(721,'REDS POCUS','A Lacklust',2006,1,NULL,7,'4.99',182,'23.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(722,'REEF SALUT','A Action-P',2006,1,NULL,5,'0.99',123,'26.99','NC-17','Behind the Scenes','2008-03-01 21:06:45'),(723,'REIGN GENT','A Emotiona',2006,1,NULL,3,'2.99',82,'29.99','PG-13','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(724,'REMEMBER D','A Insightf',2006,1,NULL,5,'2.99',110,'15.99','R','Trailers,Commentaries','2008-03-01 21:06:45'),(725,'REQUIEM TY','A Unbeliev',2006,1,NULL,6,'4.99',167,'25.99','R','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(726,'RESERVOIR ','A Intrepid',2006,1,NULL,7,'2.99',61,'29.99','PG-13','Commentaries','2008-03-01 21:06:45'),(727,'RESURRECTI','A Epic Yar',2006,1,NULL,6,'0.99',117,'12.99','PG','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(728,'REUNION WI','A Unbeliev',2006,1,NULL,3,'0.99',63,'26.99','R','Commentaries','2008-03-01 21:06:45'),(729,'RIDER CADD','A Taut Ref',2006,1,NULL,5,'2.99',177,'28.99','PG','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(730,'RIDGEMONT ','A Unbeliev',2006,1,NULL,3,'0.99',46,'28.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(731,'RIGHT CRAN','A Fateful ',2006,1,NULL,7,'4.99',153,'29.99','PG-13','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(732,'RINGS HEAR','A Amazing ',2006,1,NULL,5,'0.99',58,'17.99','G','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(733,'RIVER OUTL','A Thrillin',2006,1,NULL,4,'0.99',149,'29.99','PG-13','Commentaries','2008-03-01 21:06:45'),(734,'ROAD ROXAN','A Boring C',2006,1,NULL,4,'4.99',158,'12.99','R','Behind the Scenes','2008-03-01 21:06:45'),(735,'ROBBERS JO','A Thoughtf',2006,1,NULL,7,'2.99',102,'26.99','PG-13','Commentaries','2008-03-01 21:06:45'),(736,'ROBBERY BR','A Taut Ref',2006,1,NULL,4,'0.99',134,'21.99','R','Trailers','2008-03-01 21:06:45'),(737,'ROCK INSTI','A Astoundi',2006,1,NULL,4,'0.99',102,'28.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(738,'ROCKETEER ','A Awe-Insp',2006,1,NULL,3,'0.99',178,'27.99','PG-13','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(739,'ROCKY WAR','A Fast-Pac',2006,1,NULL,4,'4.99',145,'17.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(740,'ROLLERCOAS','A Beautifu',2006,1,NULL,5,'2.99',153,'13.99','PG-13','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(741,'ROMAN PUNK','A Thoughtf',2006,1,NULL,7,'0.99',81,'28.99','NC-17','Trailers','2008-03-01 21:06:45'),(742,'ROOF CHAMP','A Lacklust',2006,1,NULL,7,'0.99',101,'25.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(743,'ROOM ROMAN','A Awe-Insp',2006,1,NULL,7,'0.99',60,'27.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(744,'ROOTS REME','A Brillian',2006,1,NULL,4,'0.99',89,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(745,'ROSES TREA','A Astoundi',2006,1,NULL,5,'4.99',162,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(746,'ROUGE SQUA','A Awe-Insp',2006,1,NULL,3,'0.99',118,'10.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(747,'ROXANNE RE','A Astoundi',2006,1,NULL,5,'0.99',171,'9.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(748,'RUGRATS SH','A Touching',2006,1,NULL,4,'0.99',109,'16.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(749,'RULES HUMA','A Beautifu',2006,1,NULL,6,'4.99',153,'19.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(750,'RUN PACIFI','A Touching',2006,1,NULL,3,'0.99',145,'25.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(751,'RUNAWAY TE','A Thoughtf',2006,1,NULL,6,'0.99',181,'17.99','NC-17','Commentaries','2008-03-01 21:06:45'),(752,'RUNNER MAD','A Thoughtf',2006,1,NULL,6,'0.99',101,'27.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(753,'RUSH GOODF','A Emotiona',2006,1,NULL,3,'0.99',48,'20.99','PG','Deleted Scenes','2008-03-01 21:06:45'),(754,'RUSHMORE M','A Boring S',2006,1,NULL,6,'2.99',150,'17.99','PG-13','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(755,'SABRINA MI','A Emotiona',2006,1,NULL,5,'4.99',99,'11.99','PG','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(756,'SADDLE ANT','A Stunning',2006,1,NULL,7,'2.99',80,'10.99','PG-13','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(757,'SAGEBRUSH ','A Insightf',2006,1,NULL,4,'2.99',106,'28.99','G','Trailers','2008-03-01 21:06:45'),(758,'SAINTS BRI','A Fateful ',2006,1,NULL,5,'2.99',125,'11.99','G','Deleted Scenes','2008-03-01 21:06:45'),(759,'SALUTE APO','A Awe-Insp',2006,1,NULL,4,'2.99',73,'29.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(760,'SAMURAI LI','A Fast-Pac',2006,1,NULL,5,'2.99',110,'21.99','G','Commentaries','2008-03-01 21:06:45'),(761,'SANTA PARI','A Emotiona',2006,1,NULL,7,'2.99',154,'23.99','PG','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(762,'SASSY PACK','A Fast-Pac',2006,1,NULL,6,'0.99',154,'29.99','G','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(763,'SATISFACTI','A Lacklust',2006,1,NULL,3,'4.99',75,'26.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(764,'SATURDAY L','A Thoughtf',2006,1,NULL,3,'4.99',150,'28.99','G','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(765,'SATURN NAM','A Fateful ',2006,1,NULL,7,'4.99',182,'18.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(766,'SAVANNAH T','A Awe-Insp',2006,1,NULL,5,'0.99',84,'25.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(767,'SCALAWAG D','A Fateful ',2006,1,NULL,6,'4.99',183,'13.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(768,'SCARFACE B','A Emotiona',2006,1,NULL,3,'4.99',102,'11.99','PG-13','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(769,'SCHOOL JAC','A Intrepid',2006,1,NULL,5,'4.99',151,'21.99','PG-13','Trailers','2008-03-01 21:06:45'),(770,'SCISSORHAN','A Awe-Insp',2006,1,NULL,5,'2.99',147,'13.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(771,'SCORPION A','A Awe-Insp',2006,1,NULL,3,'4.99',137,'23.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(772,'SEA VIRGIN','A Fast-Pac',2006,1,NULL,4,'2.99',80,'24.99','PG','Deleted Scenes','2008-03-01 21:06:45'),(773,'SEABISCUIT','A Insightf',2006,1,NULL,6,'2.99',112,'28.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(774,'SEARCHERS ','A Fast-Pac',2006,1,NULL,3,'2.99',182,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(775,'SEATTLE EX','A Insightf',2006,1,NULL,4,'4.99',110,'18.99','PG-13','Trailers','2008-03-01 21:06:45'),(776,'SECRET GRO','A Astoundi',2006,1,NULL,6,'4.99',90,'11.99','PG','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(777,'SECRETARY ','A Action-P',2006,1,NULL,5,'4.99',158,'10.99','PG','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(778,'SECRETS PA','A Fateful ',2006,1,NULL,3,'4.99',109,'24.99','G','Trailers,Commentaries','2008-03-01 21:06:45'),(779,'SENSE GREE','A Taut Sag',2006,1,NULL,4,'4.99',54,'23.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(780,'SENSIBILIT','A Emotiona',2006,1,NULL,7,'4.99',98,'15.99','PG','Behind the Scenes','2008-03-01 21:06:45'),(781,'SEVEN SWAR','A Unbeliev',2006,1,NULL,4,'4.99',127,'15.99','R','Deleted Scenes','2008-03-01 21:06:45'),(782,'SHAKESPEAR','A Fast-Pac',2006,1,NULL,6,'2.99',60,'26.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(783,'SHANE DARK','A Action-P',2006,1,NULL,5,'2.99',93,'22.99','PG','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(784,'SHANGHAI T','A Fast-Pac',2006,1,NULL,7,'2.99',47,'20.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(785,'SHAWSHANK ','A Lacklust',2006,1,NULL,6,'4.99',80,'20.99','PG','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(786,'SHEPHERD M','A Thoughtf',2006,1,NULL,7,'0.99',113,'14.99','R','Deleted Scenes','2008-03-01 21:06:45'),(787,'SHINING RO','A Awe-Insp',2006,1,NULL,4,'0.99',125,'12.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(788,'SHIP WONDE','A Thrillin',2006,1,NULL,5,'2.99',104,'15.99','R','Commentaries','2008-03-01 21:06:45'),(789,'SHOCK CABI','A Fateful ',2006,1,NULL,7,'2.99',79,'15.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(790,'SHOOTIST S','A Fast-Pac',2006,1,NULL,6,'0.99',67,'22.99','PG-13','Trailers','2008-03-01 21:06:45'),(791,'SHOW LORD','A Fanciful',2006,1,NULL,3,'4.99',167,'24.99','PG-13','Deleted Scenes','2008-03-01 21:06:45'),(792,'SHREK LICE','A Fateful ',2006,1,NULL,7,'2.99',154,'15.99','PG-13','Commentaries','2008-03-01 21:06:45'),(793,'SHRUNK DIV','A Fateful ',2006,1,NULL,6,'2.99',139,'14.99','R','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(794,'SIDE ARK','A Stunning',2006,1,NULL,5,'0.99',52,'28.99','G','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(795,'SIEGE MADR','A Boring T',2006,1,NULL,7,'0.99',111,'23.99','R','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(796,'SIERRA DIV','A Emotiona',2006,1,NULL,3,'0.99',135,'12.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(797,'SILENCE KA','A Emotiona',2006,1,NULL,7,'0.99',67,'23.99','R','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(798,'SILVERADO ','A Stunning',2006,1,NULL,4,'4.99',74,'11.99','PG','Trailers,Commentaries','2008-03-01 21:06:45'),(799,'SIMON NORT','A Thrillin',2006,1,NULL,3,'0.99',51,'26.99','NC-17','Trailers,Commentaries','2008-03-01 21:06:45'),(800,'SINNERS AT','A Epic Dis',2006,1,NULL,7,'2.99',126,'19.99','PG-13','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(801,'SISTER FRE','A Stunning',2006,1,NULL,5,'4.99',152,'19.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(802,'SKY MIRACL','A Epic Dra',2006,1,NULL,7,'2.99',132,'15.99','PG','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(803,'SLACKER LI','A Fast-Pac',2006,1,NULL,7,'4.99',179,'29.99','R','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(804,'SLEEPING S','A Stunning',2006,1,NULL,7,'4.99',129,'13.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(805,'SLEEPLESS ','A Amazing ',2006,1,NULL,5,'4.99',64,'12.99','G','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(806,'SLEEPY JAP','A Emotiona',2006,1,NULL,4,'2.99',137,'25.99','PG','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(807,'SLEUTH ORI','A Fateful ',2006,1,NULL,4,'0.99',87,'25.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(808,'SLING LUKE','A Intrepid',2006,1,NULL,5,'0.99',84,'10.99','R','Behind the Scenes','2008-03-01 21:06:45'),(809,'SLIPPER FI','A Taut Ref',2006,1,NULL,5,'0.99',156,'14.99','PG-13','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(810,'SLUMS DUCK','A Amazing ',2006,1,NULL,5,'0.99',147,'21.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(811,'SMILE EARR','A Intrepid',2006,1,NULL,4,'2.99',60,'29.99','G','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(812,'SMOKING BA','A Lacklust',2006,1,NULL,7,'0.99',50,'13.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(813,'SMOOCHY CO','A Thrillin',2006,1,NULL,7,'0.99',184,'18.99','R','Behind the Scenes','2008-03-01 21:06:45'),(814,'SNATCH SLI','A Insightf',2006,1,NULL,6,'4.99',110,'15.99','PG','Commentaries','2008-03-01 21:06:45'),(815,'SNATCHERS ','A Boring E',2006,1,NULL,4,'2.99',74,'14.99','PG-13','Commentaries','2008-03-01 21:06:45'),(816,'SNOWMAN RO','A Fateful ',2006,1,NULL,3,'0.99',62,'27.99','G','Trailers','2008-03-01 21:06:45'),(817,'SOLDIERS E','A Lacklust',2006,1,NULL,7,'4.99',185,'27.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(818,'SOMETHING ','A Boring C',2006,1,NULL,4,'4.99',180,'17.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(819,'SONG HEDWI','A Amazing ',2006,1,NULL,3,'0.99',165,'29.99','PG-13','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(820,'SONS INTER','A Taut Cha',2006,1,NULL,3,'2.99',184,'11.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(821,'SORORITY Q','A Fast-Pac',2006,1,NULL,6,'0.99',184,'17.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(822,'SOUP WISDO','A Fast-Pac',2006,1,NULL,6,'0.99',169,'12.99','R','Behind the Scenes','2008-03-01 21:06:45'),(823,'SOUTH WAIT','A Amazing ',2006,1,NULL,4,'2.99',143,'21.99','R','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(824,'SPARTACUS ','A Thrillin',2006,1,NULL,4,'4.99',52,'19.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(825,'SPEAKEASY ','A Lacklust',2006,1,NULL,6,'2.99',165,'22.99','PG-13','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(826,'SPEED SUIT','A Brillian',2006,1,NULL,7,'4.99',124,'19.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(827,'SPICE SORO','A Fateful ',2006,1,NULL,5,'4.99',141,'22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(828,'SPIKING EL','A Lacklust',2006,1,NULL,7,'2.99',79,'12.99','G','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(829,'SPINAL ROC','A Lacklust',2006,1,NULL,7,'2.99',138,'12.99','PG-13','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(830,'SPIRIT FLI','A Brillian',2006,1,NULL,7,'0.99',149,'23.99','R','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(831,'SPIRITED C','A Taut Sto',2006,1,NULL,5,'0.99',138,'20.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(832,'SPLASH GUM','A Taut Sag',2006,1,NULL,5,'0.99',175,'16.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(833,'SPLENDOR P','A Taut Sto',2006,1,NULL,5,'0.99',134,'20.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(834,'SPOILERS H','A Fanciful',2006,1,NULL,4,'0.99',151,'26.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(835,'SPY MILE','A Thrillin',2006,1,NULL,6,'2.99',112,'13.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(836,'SQUAD FISH','A Fast-Pac',2006,1,NULL,3,'2.99',136,'14.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(837,'STAGE WORL','A Lacklust',2006,1,NULL,4,'2.99',85,'19.99','PG','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(838,'STAGECOACH','A Touching',2006,1,NULL,5,'4.99',112,'25.99','R','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(839,'STALLION S','A Fast-Pac',2006,1,NULL,5,'0.99',130,'23.99','PG-13','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(840,'STAMPEDE D','A Unbeliev',2006,1,NULL,5,'0.99',75,'26.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(841,'STAR OPERA','A Insightf',2006,1,NULL,5,'2.99',181,'9.99','PG','Commentaries','2008-03-01 21:06:45'),(842,'STATE WAST','A Beautifu',2006,1,NULL,4,'2.99',113,'13.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(843,'STEEL SANT','A Fast-Pac',2006,1,NULL,4,'4.99',143,'15.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(844,'STEERS ARM','A Stunning',2006,1,NULL,6,'4.99',140,'16.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(845,'STEPMOM DR','A Touching',2006,1,NULL,7,'4.99',48,'9.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(846,'STING PERS','A Fanciful',2006,1,NULL,3,'4.99',93,'9.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(847,'STOCK GLAS','A Boring E',2006,1,NULL,7,'2.99',160,'10.99','PG','Commentaries','2008-03-01 21:06:45'),(848,'STONE FIRE','A Intrepid',2006,1,NULL,3,'0.99',94,'19.99','G','Trailers','2008-03-01 21:06:45'),(849,'STORM HAPP','A Insightf',2006,1,NULL,6,'0.99',57,'28.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(850,'STORY SIDE','A Lacklust',2006,1,NULL,7,'0.99',163,'27.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(851,'STRAIGHT H','A Boring P',2006,1,NULL,3,'0.99',151,'19.99','R','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(852,'STRANGELOV','A Awe-Insp',2006,1,NULL,4,'0.99',103,'27.99','NC-17','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(853,'STRANGER S','A Awe-Insp',2006,1,NULL,3,'4.99',139,'12.99','G','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(854,'STRANGERS ','A Brillian',2006,1,NULL,4,'4.99',119,'22.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(855,'STREAK RID','A Astoundi',2006,1,NULL,7,'0.99',132,'28.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(856,'STREETCAR ','A Insightf',2006,1,NULL,5,'4.99',73,'11.99','R','Commentaries','2008-03-01 21:06:45'),(857,'STRICTLY S','A Touching',2006,1,NULL,3,'2.99',144,'24.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(858,'SUBMARINE ','A Amazing ',2006,1,NULL,5,'4.99',127,'21.99','R','Trailers','2008-03-01 21:06:45'),(859,'SUGAR WONK','A Touching',2006,1,NULL,3,'4.99',114,'20.99','PG','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(860,'SUICIDES S','A Emotiona',2006,1,NULL,4,'4.99',93,'13.99','G','Deleted Scenes','2008-03-01 21:06:45'),(861,'SUIT WALLS','A Touching',2006,1,NULL,3,'4.99',111,'12.99','R','Commentaries','2008-03-01 21:06:45'),(862,'SUMMER SCA','A Emotiona',2006,1,NULL,5,'0.99',53,'25.99','G','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(863,'SUN CONFES','A Beautifu',2006,1,NULL,5,'0.99',141,'9.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(864,'SUNDANCE I','A Epic Dra',2006,1,NULL,5,'0.99',92,'21.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(865,'SUNRISE LE','A Beautifu',2006,1,NULL,3,'4.99',135,'19.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(866,'SUNSET RAC','A Awe-Insp',2006,1,NULL,6,'0.99',48,'28.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(867,'SUPER WYOM','A Action-P',2006,1,NULL,5,'4.99',58,'10.99','PG','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(868,'SUPERFLY T','A Beautifu',2006,1,NULL,5,'0.99',114,'27.99','PG','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(869,'SUSPECTS Q','A Emotiona',2006,1,NULL,4,'2.99',47,'22.99','PG','Trailers','2008-03-01 21:06:45'),(870,'SWARM GOLD','A Insightf',2006,1,NULL,4,'0.99',123,'12.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(871,'SWEDEN SHI','A Taut Doc',2006,1,NULL,6,'4.99',176,'19.99','PG','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(872,'SWEET BROT','A Unbeliev',2006,1,NULL,3,'2.99',185,'27.99','R','Deleted Scenes','2008-03-01 21:06:45'),(873,'SWEETHEART','A Brillian',2006,1,NULL,3,'0.99',108,'13.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(874,'TADPOLE PA','A Beautifu',2006,1,NULL,6,'2.99',155,'13.99','PG','Trailers,Commentaries','2008-03-01 21:06:45'),(875,'TALENTED H','A Lacklust',2006,1,NULL,6,'0.99',173,'9.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(876,'TARZAN VID','A Fast-Pac',2006,1,NULL,3,'2.99',91,'11.99','PG-13','Trailers','2008-03-01 21:06:45'),(877,'TAXI KICK','A Amazing ',2006,1,NULL,4,'0.99',64,'23.99','PG-13','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(878,'TEEN APOLL','A Awe-Insp',2006,1,NULL,3,'4.99',74,'25.99','G','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(879,'TELEGRAPH ','A Fateful ',2006,1,NULL,3,'4.99',148,'20.99','PG','Commentaries','2008-03-01 21:06:45'),(880,'TELEMARK H','A Action-P',2006,1,NULL,6,'2.99',152,'9.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(881,'TEMPLE ATT','A Action-P',2006,1,NULL,5,'4.99',71,'13.99','PG','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(882,'TENENBAUMS','A Taut Dis',2006,1,NULL,4,'0.99',99,'24.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(883,'TEQUILA PA','A Action-P',2006,1,NULL,6,'4.99',53,'17.99','PG','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(884,'TERMINATOR','A Touching',2006,1,NULL,5,'4.99',88,'11.99','R','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(885,'TEXAS WATC','A Awe-Insp',2006,1,NULL,7,'0.99',179,'22.99','NC-17','Trailers','2008-03-01 21:06:45'),(886,'THEORY MER','A Fateful ',2006,1,NULL,5,'0.99',184,'9.99','PG-13','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(887,'THIEF PELI','A Touching',2006,1,NULL,5,'4.99',135,'28.99','PG-13','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(888,'THIN SAGEB','A Emotiona',2006,1,NULL,5,'4.99',53,'9.99','PG-13','Behind the Scenes','2008-03-01 21:06:45'),(889,'TIES HUNGE','A Insightf',2006,1,NULL,3,'4.99',111,'28.99','R','Deleted Scenes','2008-03-01 21:06:45'),(890,'TIGHTS DAW','A Thrillin',2006,1,NULL,5,'0.99',172,'14.99','R','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(891,'TIMBERLAND','A Boring D',2006,1,NULL,3,'0.99',69,'13.99','G','Commentaries','2008-03-01 21:06:45'),(892,'TITANIC BO','A Brillian',2006,1,NULL,3,'4.99',104,'18.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(893,'TITANS JER','A Unbeliev',2006,1,NULL,4,'4.99',91,'11.99','PG','Behind the Scenes','2008-03-01 21:06:45'),(894,'TOMATOES H','A Thoughtf',2006,1,NULL,6,'0.99',68,'23.99','PG','Behind the Scenes','2008-03-01 21:06:45'),(895,'TOMORROW H','A Thoughtf',2006,1,NULL,3,'2.99',142,'21.99','R','Commentaries','2008-03-01 21:06:45'),(896,'TOOTSIE PI','A Awe-Insp',2006,1,NULL,3,'0.99',157,'10.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(897,'TORQUE BOU','A Emotiona',2006,1,NULL,3,'4.99',179,'27.99','G','Trailers,Commentaries','2008-03-01 21:06:45'),(898,'TOURIST PE','A Boring S',2006,1,NULL,4,'4.99',152,'18.99','PG-13','Deleted Scenes','2008-03-01 21:06:45'),(899,'TOWERS HUR','A Fateful ',2006,1,NULL,7,'0.99',144,'14.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(900,'TOWN ARK','A Awe-Insp',2006,1,NULL,6,'2.99',136,'17.99','R','Behind the Scenes','2008-03-01 21:06:45'),(901,'TRACY CIDE','A Touching',2006,1,NULL,3,'0.99',142,'29.99','G','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(902,'TRADING PI','A Emotiona',2006,1,NULL,6,'4.99',170,'22.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(903,'TRAFFIC HO','A Amazing ',2006,1,NULL,5,'4.99',139,'13.99','G','Trailers,Commentaries','2008-03-01 21:06:45'),(904,'TRAIN BUNC','A Thrillin',2006,1,NULL,3,'4.99',71,'26.99','R','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(905,'TRAINSPOTT','A Fast-Pac',2006,1,NULL,7,'4.99',132,'10.99','PG-13','Trailers','2008-03-01 21:06:45'),(906,'TRAMP OTHE','A Brillian',2006,1,NULL,4,'0.99',171,'27.99','PG','Deleted Scenes','2008-03-01 21:06:45'),(907,'TRANSLATIO','A Touching',2006,1,NULL,4,'0.99',168,'10.99','PG-13','Trailers','2008-03-01 21:06:45'),(908,'TRAP GUYS','A Unbeliev',2006,1,NULL,3,'4.99',110,'11.99','G','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(909,'TREASURE C','A Emotiona',2006,1,NULL,3,'0.99',102,'28.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(910,'TREATMENT ','A Boring S',2006,1,NULL,3,'0.99',87,'19.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(911,'TRIP NEWTO','A Fanciful',2006,1,NULL,7,'4.99',64,'14.99','PG-13','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(912,'TROJAN TOM','A Astoundi',2006,1,NULL,3,'2.99',52,'9.99','PG','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(913,'TROOPERS M','A Fanciful',2006,1,NULL,3,'0.99',115,'20.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(914,'TROUBLE DA','A Lacklust',2006,1,NULL,6,'2.99',61,'13.99','PG','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(915,'TRUMAN CRA','A Thrillin',2006,1,NULL,7,'4.99',92,'9.99','G','Trailers,Commentaries','2008-03-01 21:06:45'),(916,'TURN STAR','A Stunning',2006,1,NULL,3,'2.99',80,'10.99','G','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(917,'TUXEDO MIL','A Boring D',2006,1,NULL,3,'2.99',152,'24.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(918,'TWISTED PI','A Touching',2006,1,NULL,4,'4.99',152,'23.99','PG','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(919,'TYCOON GAT','A Emotiona',2006,1,NULL,3,'4.99',82,'17.99','G','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(920,'UNBREAKABL','A Amazing ',2006,1,NULL,3,'0.99',62,'16.99','G','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(921,'UNCUT SUIC','A Intrepid',2006,1,NULL,7,'2.99',172,'29.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(922,'UNDEFEATED','A Unbeliev',2006,1,NULL,7,'4.99',107,'22.99','PG-13','Commentaries','2008-03-01 21:06:45'),(923,'UNFAITHFUL','A Taut Doc',2006,1,NULL,7,'2.99',78,'12.99','R','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(924,'UNFORGIVEN','A Taut Epi',2006,1,NULL,7,'0.99',129,'15.99','PG','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(925,'UNITED PIL','A Fast-Pac',2006,1,NULL,3,'0.99',164,'27.99','R','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(926,'UNTOUCHABL','A Amazing ',2006,1,NULL,5,'2.99',120,'11.99','NC-17','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(927,'UPRISING U','A Fanciful',2006,1,NULL,6,'2.99',174,'16.99','NC-17','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(928,'UPTOWN YOU','A Fateful ',2006,1,NULL,5,'2.99',84,'16.99','PG','Commentaries','2008-03-01 21:06:45'),(929,'USUAL UNTO','A Touching',2006,1,NULL,5,'4.99',128,'21.99','PG-13','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(930,'VACATION B','A Fanciful',2006,1,NULL,4,'2.99',145,'23.99','R','Commentaries','2008-03-01 21:06:45'),(931,'VALENTINE ','A Thrillin',2006,1,NULL,7,'0.99',48,'9.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(932,'VALLEY PAC','A Astoundi',2006,1,NULL,3,'0.99',73,'21.99','G','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(933,'VAMPIRE WH','A Epic Sto',2006,1,NULL,4,'4.99',126,'11.99','NC-17','Trailers,Commentaries','2008-03-01 21:06:45'),(934,'VANILLA DA','A Fast-Pac',2006,1,NULL,7,'4.99',122,'20.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(935,'VANISHED G','A Intrepid',2006,1,NULL,5,'0.99',142,'17.99','R','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(936,'VANISHING ','A Brillian',2006,1,NULL,3,'2.99',123,'21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(937,'VARSITY TR','A Action-P',2006,1,NULL,7,'2.99',85,'14.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(938,'VELVET TER','A Lacklust',2006,1,NULL,3,'4.99',173,'14.99','R','Behind the Scenes','2008-03-01 21:06:45'),(939,'VERTIGO NO','A Unbeliev',2006,1,NULL,4,'2.99',90,'17.99','R','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(940,'VICTORY AC','A Insightf',2006,1,NULL,6,'0.99',64,'19.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(941,'VIDEOTAPE ','A Lacklust',2006,1,NULL,4,'4.99',145,'10.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(942,'VIETNAM SM','A Lacklust',2006,1,NULL,7,'0.99',174,'27.99','PG-13','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(943,'VILLAIN DE','A Boring Y',2006,1,NULL,4,'4.99',76,'27.99','PG-13','Trailers,Commentaries','2008-03-01 21:06:45'),(944,'VIRGIN DAI','A Awe-Insp',2006,1,NULL,6,'4.99',179,'29.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(945,'VIRGINIAN ','A Emotiona',2006,1,NULL,5,'0.99',164,'22.99','R','Deleted Scenes','2008-03-01 21:06:45'),(946,'VIRTUAL SP','A Fateful ',2006,1,NULL,3,'4.99',144,'14.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(947,'VISION TOR','A Thoughtf',2006,1,NULL,5,'0.99',59,'16.99','PG-13','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(948,'VOICE PEAC','A Amazing ',2006,1,NULL,6,'0.99',139,'22.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(949,'VOLCANO TE','A Awe-Insp',2006,1,NULL,6,'0.99',157,'27.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(950,'VOLUME HOU','A Boring T',2006,1,NULL,7,'4.99',132,'12.99','PG','Commentaries','2008-03-01 21:06:45'),(951,'VOYAGE LEG','A Epic Tal',2006,1,NULL,6,'0.99',78,'28.99','PG-13','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(952,'WAGON JAWS','A Intrepid',2006,1,NULL,7,'2.99',152,'17.99','PG','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(953,'WAIT CIDER','A Intrepid',2006,1,NULL,3,'0.99',112,'9.99','PG-13','Trailers','2008-03-01 21:06:45'),(954,'WAKE JAWS','A Beautifu',2006,1,NULL,7,'4.99',73,'18.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(955,'WALLS ARTI','A Insightf',2006,1,NULL,7,'4.99',135,'19.99','PG','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(956,'WANDA CHAM','A Insightf',2006,1,NULL,7,'4.99',107,'23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(957,'WAR NOTTIN','A Boring D',2006,1,NULL,7,'4.99',80,'26.99','G','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(958,'WARDROBE P','A Action-P',2006,1,NULL,6,'2.99',178,'19.99','G','Trailers,Commentaries','2008-03-01 21:06:45'),(959,'WARLOCK WE','A Astoundi',2006,1,NULL,6,'2.99',83,'10.99','G','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(960,'WARS PLUTO','A Taut Ref',2006,1,NULL,5,'2.99',128,'15.99','G','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(961,'WASH HEAVE','A Awe-Insp',2006,1,NULL,7,'4.99',161,'22.99','R','Commentaries','2008-03-01 21:06:45'),(962,'WASTELAND ','A Fanciful',2006,1,NULL,7,'2.99',85,'18.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(963,'WATCH TRAC','A Fast-Pac',2006,1,NULL,5,'0.99',78,'12.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(964,'WATERFRONT','A Unbeliev',2006,1,NULL,4,'4.99',61,'17.99','G','Behind the Scenes','2008-03-01 21:06:45'),(965,'WATERSHIP ','A Emotiona',2006,1,NULL,6,'0.99',112,'28.99','G','Commentaries','2008-03-01 21:06:45'),(966,'WEDDING AP','A Action-P',2006,1,NULL,3,'0.99',70,'14.99','PG','Trailers','2008-03-01 21:06:45'),(967,'WEEKEND PE','A Fast-Pac',2006,1,NULL,5,'2.99',134,'26.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(968,'WEREWOLF L','A Fanciful',2006,1,NULL,6,'4.99',79,'19.99','G','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(969,'WEST LION','A Intrepid',2006,1,NULL,4,'4.99',159,'29.99','G','Trailers','2008-03-01 21:06:45'),(970,'WESTWARD S','A Lacklust',2006,1,NULL,7,'0.99',52,'11.99','NC-17','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(971,'WHALE BIKI','A Intrepid',2006,1,NULL,4,'4.99',109,'11.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(972,'WHISPERER ','A Intrepid',2006,1,NULL,4,'4.99',59,'24.99','PG-13','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(973,'WIFE TURN','A Awe-Insp',2006,1,NULL,3,'4.99',183,'27.99','NC-17','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(974,'WILD APOLL','A Beautifu',2006,1,NULL,4,'0.99',181,'24.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(975,'WILLOW TRA','A Brillian',2006,1,NULL,6,'2.99',137,'22.99','R','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(976,'WIND PHANT','A Touching',2006,1,NULL,6,'0.99',111,'12.99','R','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(977,'WINDOW SID','A Astoundi',2006,1,NULL,3,'2.99',85,'25.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(978,'WISDOM WOR','A Unbeliev',2006,1,NULL,3,'0.99',98,'12.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(979,'WITCHES PA','A Awe-Insp',2006,1,NULL,6,'4.99',100,'10.99','NC-17','Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(980,'WIZARD COL','A Lacklust',2006,1,NULL,4,'4.99',75,'12.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(981,'WOLVES DES','A Fast-Pac',2006,1,NULL,7,'0.99',55,'13.99','NC-17','Behind the Scenes','2008-03-01 21:06:45'),(982,'WOMEN DORA','A Insightf',2006,1,NULL,4,'0.99',126,'23.99','R','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(983,'WON DARES','A Unbeliev',2006,1,NULL,7,'2.99',105,'18.99','PG','Behind the Scenes','2008-03-01 21:06:45'),(984,'WONDERFUL ','A Boring P',2006,1,NULL,3,'2.99',126,'20.99','NC-17','Commentaries','2008-03-01 21:06:45'),(985,'WONDERLAND','A Awe-Insp',2006,1,NULL,4,'4.99',111,'19.99','PG','Commentaries','2008-03-01 21:06:45'),(986,'WONKA SEA','A Brillian',2006,1,NULL,6,'2.99',85,'24.99','NC-17','Trailers,Commentaries','2008-03-01 21:06:45'),(987,'WORDS HUNT','A Action-P',2006,1,NULL,3,'2.99',116,'13.99','PG','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(988,'WORKER TAR','A Action-P',2006,1,NULL,7,'2.99',139,'26.99','R','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45'),(989,'WORKING MI','A Stunning',2006,1,NULL,4,'4.99',74,'22.99','R','Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(990,'WORLD LEAT','A Unbeliev',2006,1,NULL,3,'0.99',171,'13.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(991,'WORST BANG','A Thrillin',2006,1,NULL,4,'2.99',185,'26.99','PG','Deleted Scenes,Behind the Scenes','2008-03-01 21:06:45'),(992,'WRATH MILE','A Intrepid',2006,1,NULL,5,'0.99',176,'17.99','NC-17','Trailers,Commentaries','2008-03-01 21:06:45'),(993,'WRONG BEHA','A Emotiona',2006,1,NULL,6,'2.99',178,'10.99','PG-13','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(994,'WYOMING ST','A Awe-Insp',2006,1,NULL,6,'4.99',100,'29.99','PG-13','Deleted Scenes','2008-03-01 21:06:45'),(995,'YENTL IDAH','A Amazing ',2006,1,NULL,5,'4.99',86,'11.99','R','Trailers,Commentaries,Deleted Scenes','2008-03-01 21:06:45'),(996,'YOUNG LANG','A Unbeliev',2006,1,NULL,6,'0.99',183,'9.99','G','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(997,'YOUTH KICK','A Touching',2006,1,NULL,4,'0.99',179,'14.99','NC-17','Trailers,Behind the Scenes','2008-03-01 21:06:45'),(998,'ZHIVAGO CO','A Fateful ',2006,1,NULL,6,'0.99',105,'10.99','NC-17','Deleted Scenes','2008-03-01 21:06:45'),(999,'ZOOLANDER ','A Fateful ',2006,1,NULL,5,'2.99',101,'28.99','R','Trailers,Deleted Scenes','2008-03-01 21:06:45'),(1000,'ZORRO ARK','A Intrepid',2006,1,NULL,3,'4.99',50,'18.99','NC-17','Trailers,Commentaries,Behind the Scenes','2008-03-01 21:06:45');